真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android中怎么通過自定義View實(shí)現(xiàn)炫酷進(jìn)度條

本篇文章給大家分享的是有關(guān)Android中怎么通過自定義View實(shí)現(xiàn)炫酷進(jìn)度條,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),贊皇企業(yè)網(wǎng)站建設(shè),贊皇品牌網(wǎng)站建設(shè),網(wǎng)站定制,贊皇網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,贊皇網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

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

                       

第二步:自定義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();  }  }

然后在布局中使用:

 

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

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();

以上就是Android中怎么通過自定義View實(shí)現(xiàn)炫酷進(jìn)度條,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享標(biāo)題:Android中怎么通過自定義View實(shí)現(xiàn)炫酷進(jìn)度條
瀏覽地址:http://weahome.cn/article/psppic.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部