安卓实训作孽之Linux命令手册

Posted Huterox

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓实训作孽之Linux命令手册相关的知识,希望对你有一定的参考价值。

文章目录

前言

开局之前先吐槽一句,NC学校,以及NC老师,还要搞两个作品,上午上课下午实训真牛皮(XS)。好了废话不多说我们开始吧,先来看看效果吧:

演示效果

这是注册

登录

主页面

个人中心

背诵页面

具体背诵页面

导入命令

这个的话注意一下需要这个权限。
然后的话,导入的格式是这样的:

之后感谢互联网的广大朋友,没错这些代码,项目是博主疯狂“组装,cv“”后完成的项目,用了不少现成的一些工具代码,也是因为这些工具代码实现起来非常快,有些模块甚至几乎帮我写好了。当然也非常感谢“阿里矢量图标”,木有这个,这个页面也做不出来~ 毫不惭愧的说,这个项目的完成在座的各位都有“参与”,它是一个吃着百家饭长大的孩子(话说各位的项目都是这样来的吧(狗头)))

项目地址

OK,我知道这个最关心的地方是这个项目地址(狗头):https://gitee.com/Huterox/linux-rember.git

实现

咱们的这个实现的话比较简单,基本上就是代码组合,基本上是把好几个收集的项目,代码啥的整合到一起(嫖了哪些我忘了(狗头))那么咱们这里的话就挑选几个随便说说喽。那么这里的话咱们就拿这个文件加载说话吧。

首先我们来看到这里面有啥:

首先是咱们的这个圆形的进度条,之后的话就是咱们的文件的一个加载解析啥的。
我们一个一个来。首先是咱们的这个UI吧

UI

我们先看到我们具体的页面:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Activity.AddCommandActivity"
    android:background="@color/white"
    android:orientation="vertical">


    <!--圆形进度条-->


    <TextView

        android:layout_width="332dp"
        android:layout_height="45dp"
        android:gravity="center"
        android:text="只支持导入CSV文件哟~"
        android:textSize="15sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.493"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/cirt"
        app:layout_constraintVertical_bias="0.066" />

    <com.huterox.linuxrember.utils.CircleProgressView
        android:id="@+id/cirt"
        android:layout_width="304dp"
        android:layout_height="287dp"
        app:backColor="#EC920C"
        app:backWidth="20dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.289"
        app:progColor="#03A9F4"
        app:progWidth="20dp"
        app:progress="0" />

    <TextView
        android:id="@+id/txt"
        android:layout_width="163dp"
        android:layout_height="68dp"
        android:layout_centerInParent="true"
        android:gravity="center"
        android:text="0%"
        android:textSize="30sp"
        android:textStyle="bold"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.501"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.342" />

    <Button
        android:id="@+id/bt_confirm"

        android:layout_width="70dp"
        android:layout_height="70dp"
        android:layout_weight="1"
        android:background="@drawable/bg_load_png"
        android:shadowRadius="10"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.953"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.857" />

    <Button
        android:id="@+id/bt_exit"
        android:layout_width="61dp"
        android:layout_height="66dp"
        android:layout_marginLeft="165dp"
        android:layout_weight="1"
        android:background="@drawable/back3"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.954"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.004" />

</androidx.constraintlayout.widget.ConstraintLayout  >

这个的话是咱们的刚刚看到的页面。

进度条实现

之后的话来看到咱们的一个实现类。首先这个咱们是自定义的,所以的话,咱们需要在这里干这事:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!--    圆形进度条-->
    <declare-styleable name="CircularProgressView">
        <attr name="backWidth" format="dimension" />    <!--背景圆环宽度-->
        <attr name="progWidth" format="dimension" />    <!--进度圆环宽度-->
        <attr name="backColor" format="color" />        <!--背景圆环颜色-->
        <attr name="progColor" format="color" />        <!--进度圆环颜色-->
        <attr name="progStartColor" format="color" />   <!--进度圆环开始颜色-->
        <attr name="progFirstColor" format="color" />   <!--进度圆环结束颜色-->
        <attr name="progress" format="integer" />       <!--圆环进度-->
    </declare-styleable>
</resources>

之后的话,是咱们的这个画圈圈的类。

package com.huterox.linuxrember.utils;

import android.animation.ValueAnimator;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.LinearGradient;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.Shader;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.View;
import android.view.animation.OvershootInterpolator;

import androidx.annotation.ColorRes;
import androidx.annotation.Nullable;
import androidx.core.content.ContextCompat;

import com.huterox.linuxrember.R;


public class CircleProgressView extends View 

    private Paint mBackPaint, mProgPaint;   // 绘制画笔
    private RectF mRectF;       // 绘制区域
    private int[] mColorArray;  // 圆环渐变色
    private int mProgress;      // 圆环进度(0-100)

    public CircleProgressView(Context context) 
        this(context, null);
    

    public CircleProgressView(Context context, @Nullable AttributeSet attrs) 
        this(context, attrs, 0);
    

    public CircleProgressView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) 
        super(context, attrs, defStyleAttr);
        @SuppressLint("Recycle")
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CircularProgressView);

        // 初始化背景圆环画笔
        mBackPaint = new Paint();
        mBackPaint.setStyle(Paint.Style.STROKE);    // 只描边,不填充
        mBackPaint.setStrokeCap(Paint.Cap.ROUND);   // 设置圆角
        mBackPaint.setAntiAlias(true);              // 设置抗锯齿
        mBackPaint.setDither(true);                 // 设置抖动
        mBackPaint.setStrokeWidth(typedArray.getDimension(R.styleable.CircularProgressView_backWidth, 5));
        mBackPaint.setColor(typedArray.getColor(R.styleable.CircularProgressView_backColor, Color.LTGRAY));

        // 初始化进度圆环画笔
        mProgPaint = new Paint();
        mProgPaint.setStyle(Paint.Style.STROKE);    // 只描边,不填充
        mProgPaint.setStrokeCap(Paint.Cap.ROUND);   // 设置圆角
        mProgPaint.setAntiAlias(true);              // 设置抗锯齿
        mProgPaint.setDither(true);                 // 设置抖动
        mProgPaint.setStrokeWidth(typedArray.getDimension(R.styleable.CircularProgressView_progWidth, 10));
        mProgPaint.setColor(typedArray.getColor(R.styleable.CircularProgressView_progColor, Color.BLUE));

        // 初始化进度圆环渐变色
        int startColor = typedArray.getColor(R.styleable.CircularProgressView_progStartColor, -1);
        int firstColor = typedArray.getColor(R.styleable.CircularProgressView_progFirstColor, -1);
        if (startColor != -1 && firstColor != -1) mColorArray = new int[]startColor, firstColor;
        else mColorArray = null;

        // 初始化进度
        mProgress = typedArray.getInteger(R.styleable.CircularProgressView_progress, 0);
        typedArray.recycle();
    

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) 
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int viewWide = getMeasuredWidth() - getPaddingLeft() - getPaddingRight();
        int viewHigh = getMeasuredHeight() - getPaddingTop() - getPaddingBottom();
        int mRectLength = (int) ((viewWide > viewHigh ? viewHigh : viewWide) - (mBackPaint.getStrokeWidth() > mProgPaint.getStrokeWidth() ? mBackPaint.getStrokeWidth() : mProgPaint.getStrokeWidth()));
        int mRectL = getPaddingLeft() + (viewWide - mRectLength) / 2;
        int mRectT = getPaddingTop() + (viewHigh - mRectLength) / 2;
        mRectF = new RectF(mRectL, mRectT, mRectL + mRectLength, mRectT + mRectLength);

        // 设置进度圆环渐变色
        if (mColorArray != null && mColorArray.length > 1)
            mProgPaint.setShader(new LinearGradient(0, 0, 0, getMeasuredWidth(), mColorArray, null, Shader.TileMode.MIRROR));
    

    @Override
    protected void onDraw(Canvas canvas) 
        super.onDraw(canvas);
        canvas.drawArc(mRectF, 0, 360, false, mBackPaint);
        canvas.drawArc(mRectF, 275, 360 * mProgress / 100, false, mProgPaint);
    

    // ---------------------------------------------------------------------------------------------

    /**
     * 获取当前进度
     *
     * @return 当前进度(0-100)
     */
    public int getProgress() 
        return mProgress;
    

    /**
     * 设置当前进度
     *
     * @param progress 当前进度(0-100)
     */
    public void setProgress(int progress) 
        this.mProgress = progress;
        invalidate();
    

    /**
     * 设置当前进度,并展示进度动画。如果动画时间小于等于0,则不展示动画
     *
     * @param progress 当前进度(0-100)
     * @param animTime 动画时间(毫秒)
     */
    public void setProgress(int progress, long animTime) 
        if (animTime <= 0) setProgress(progress);
        else 
            ValueAnimator animator = ValueAnimator.ofInt(mProgress, progress);
            animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() 
                @Override
                public void onAnimationUpdate(ValueAnimator animation) 
                    mProgress = (int) animation.getAnimatedValue();
                    invalidate();
            

以上是关于安卓实训作孽之Linux命令手册的主要内容,如果未能解决你的问题,请参考以下文章

Linux之编辑器强大的vim使用手册

实训第二天内容总结(Linux常用命令及使用)

linux之man命令

linux之man命令

初探MACHINE LEARNING—–决策树好百家乐技巧他们都很愿意分享技

Linux上天之路(十六)之Shell编程一