怎么在Android中通過(guò)自定義View實(shí)現(xiàn)一個(gè)炫酷的進(jìn)度條

怎么在Android中通過(guò)自定義View實(shí)現(xiàn)一個(gè)炫酷的進(jìn)度條?相信很多沒(méi)有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問(wèn)題出現(xiàn)的原因和解決方法,通過(guò)這篇文章希望你能解決這個(gè)問(wèn)題。

站在用戶(hù)的角度思考問(wèn)題,與客戶(hù)深入溝通,找到定遠(yuǎn)網(wǎng)站設(shè)計(jì)與定遠(yuǎn)網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶(hù)體驗(yàn)好的作品,建站類(lèi)型包括:做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名與空間、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋定遠(yuǎn)地區(qū)。

第一步:創(chuàng)建attrs文件夾,自定義屬性:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="MyProgress">
    <attr name="out_color" format="color"/>
    <attr name="inner_color" format="color"/>
    <attr name="border_width" format="dimension"/>
    <attr name="text_color" format="color"/>
    <attr name="text_size" format="dimension"/>
  </declare-styleable>
</resources>

第二步:自定義View:

/**
 * Created by Michael on 2019/11/1.
 */
 
public class MyProgress extends View {
 
  private int outColor;
  private int innerColor;
  private int textColor;
  private float borderWidth;
  private int textSize;
  private Paint mOutPaint;
  private Paint mInnerPaint;
  private Paint mTextPaint;
  private float percent;
  private int p;
 
  public MyProgress(Context context) {
    this(context,null);
  }
 
  public MyProgress(Context context, @Nullable AttributeSet attrs) {
    this(context, attrs,0);
  }
 
  public MyProgress(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    TypedArray array = context.obtainStyledAttributes(attrs,R.styleable.MyProgress);
    outColor = array.getColor(R.styleable.MyProgress_out_color, Color.GREEN);
    innerColor = array.getColor(R.styleable.MyProgress_inner_color, Color.BLUE);
    textColor = array.getColor(R.styleable.MyProgress_text_color, Color.BLACK);
    borderWidth = array.getDimension(R.styleable.MyProgress_border_width,10);
    textSize = array.getDimensionPixelSize(R.styleable.MyProgress_text_size,20);
    array.recycle();
    init();
 
 
  }
 
  private void init() {
    mOutPaint = new Paint();
    mOutPaint.setAntiAlias(true);
    mOutPaint.setDither(true);
    mOutPaint.setStyle(Paint.Style.STROKE);
    mOutPaint.setStrokeWidth(borderWidth);
    mOutPaint.setColor(outColor);
 
    mInnerPaint = new Paint();
    mInnerPaint.setAntiAlias(true);
    mInnerPaint.setDither(true);
    mInnerPaint.setStyle(Paint.Style.STROKE);
    mInnerPaint.setStrokeWidth(borderWidth);
    mInnerPaint.setColor(innerColor);
 
    mTextPaint = new Paint();
    mTextPaint.setAntiAlias(true);
    mTextPaint.setDither(true);
    mTextPaint.setStyle(Paint.Style.FILL);
    mTextPaint.setTextSize(textSize);
    mTextPaint.setColor(textColor);
 
    percent = 0;
    p = 100;
  }
 
  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int widthMode = MeasureSpec.getMode(widthMeasureSpec);
    int heightMode = MeasureSpec.getMode(heightMeasureSpec);
    int width = 0,height =0;
    if (widthMode == MeasureSpec.AT_MOST){
 
    }else{
      width = MeasureSpec.getSize(widthMeasureSpec);
    }
    if (heightMode == MeasureSpec.AT_MOST){
 
    }else{
      height = MeasureSpec.getSize(heightMeasureSpec);
    }
    setMeasuredDimension(width>height?height:width,width>height?height:width);
  }
 
  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    int rWidth = getWidth()>getHeight()?getHeight():getWidth();
    int rHeight = getWidth()>getHeight()?getHeight():getWidth();
    //int rWidth = getWidth();
    //int rHeight = getHeight();
 
    float radius = rWidth/2 - borderWidth/2;
    canvas.drawCircle(rWidth/2,rHeight/2,radius,mOutPaint);
 
    RectF r = new RectF(borderWidth/2,borderWidth/2,
        rWidth-borderWidth/2,rHeight-borderWidth/2);
    canvas.drawArc(r,0,360*percent,false,mInnerPaint);
 
    String s1 = (int)(percent*100) + "%";
    Rect r2 = new Rect();
    mTextPaint.getTextBounds(s1,0,s1.length(),r2);
    int tWidth = r2.width();
    int tHeight = r2.height();
    Paint.FontMetricsInt fontMetricsInt = new Paint.FontMetricsInt();
    int dy = (fontMetricsInt.bottom-fontMetricsInt.top)/2-fontMetricsInt.bottom;
    int baseLine = tHeight/2+dy+rHeight/2-tHeight/2;
    int x0 = rWidth/2-tWidth/2;
    canvas.drawText(s1,x0,baseLine,mTextPaint);
  }
 
  public void setProgress(float percent,int value){
    this.percent = percent;
    invalidate();
  }
 
 
}

然后在布局中使用:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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="com.example.michael.view_02.MainActivity">
 
  <com.example.michael.view_02.MyProgress
    android:id="@+id/progress"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:out_color="@color/colorPrimary"
    app:inner_color="@color/colorAccent"
    app:text_color="@color/colorPrimaryDark"
    app:border_width="10dp"
    app:text_size="20sp"
    />
 
</android.support.constraint.ConstraintLayout>

在activity中使用屬性動(dòng)畫(huà)完成效果:

public class MainActivity extends AppCompatActivity {
 
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final MyProgress progress = findViewById(R.id.progress);
    ValueAnimator animator = ValueAnimator.ofInt(0,5000);
    animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
      @Override
      public void onAnimationUpdate(ValueAnimator animation) {
        float p = animation.getAnimatedFraction();
        int value = (int)animation.getAnimatedValue();
        progress.setProgress(p,value);
      }
    });
    animator.setDuration(10000);
    animator.start();
  }
 
 
}

如果我們改動(dòng)一下代碼:

//int rWidth = getWidth();
//int rHeight = getHeight();

看完上述內(nèi)容,你們掌握怎么在Android中通過(guò)自定義View實(shí)現(xiàn)一個(gè)炫酷的進(jìn)度條的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

網(wǎng)頁(yè)標(biāo)題:怎么在Android中通過(guò)自定義View實(shí)現(xiàn)一個(gè)炫酷的進(jìn)度條
網(wǎng)站URL:http://bm7419.com/article12/pcepgc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、App開(kāi)發(fā)網(wǎng)站維護(hù)、微信公眾號(hào)虛擬主機(jī)、品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司