Android中怎么通过自定义View实现炫酷进度条

发布时间:2021-08-07 14:14:14 作者:Leah
来源:亿速云 阅读:124

本篇文章给大家分享的是有关Android中怎么通过自定义View实现炫酷进度条,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

第一步:创建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中使用属性动画完成效果:

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

如果我们改动一下代码:

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

以上就是Android中怎么通过自定义View实现炫酷进度条,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。

推荐阅读:
  1. C#怎么实现炫酷启动图-动态进度条效果
  2. 怎么在Android中通过自定义View实现一个炫酷的进度条

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

android view

上一篇:Java中怎么实现QQ第三方登录

下一篇:如何解决某些HTML字符打不出来的问题

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》