Android自定义View实现炫酷进度条

作者:AD钙奶-lalala 时间:2023-09-22 00:16:07 

本文实例为大家分享了Android实现炫酷进度条的具体代码,供大家参考,具体内容如下

下面我们来实现如下效果:

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

我们使用onDraw()方法的时候如果使用上面的方法确定宽高,将会绘制成下图所示:

Android自定义View实现炫酷进度条

很奇怪!欢迎大家解决此问题。

来源:https://blog.csdn.net/qq_36428821/article/details/102858337

标签:Android,进度条
0
投稿

猜你喜欢

  • C#静态static的用法实例分析

    2022-06-30 09:37:27
  • Java求1+2!+3!+...+20!的和的代码

    2021-12-16 10:55:23
  • 使用Filter过滤器中访问getSession()要转化

    2022-10-01 16:20:04
  • idea 创建 maven web 工程流程(图文教程)

    2022-06-29 04:51:21
  • java泛型详解

    2023-06-07 23:54:47
  • C#将布尔类型转换成字节数组的方法

    2023-06-21 15:30:16
  • 一篇文章掌握Java Thread的类及其常见方法

    2023-03-11 09:43:03
  • C#简单读写txt文件的方法

    2023-01-17 06:30:27
  • C#实现自定义Dictionary类实例

    2022-12-19 09:23:47
  • MyBatis特殊字符转义拦截器问题针对(_、\\、%)

    2023-09-12 00:46:39
  • 用C#的params关键字实现方法形参个数可变示例

    2022-04-14 01:53:16
  • java Timer测试定时调用及固定时间执行代码示例

    2023-12-09 14:36:44
  • c#发送请求访问外部接口的实例

    2023-05-25 17:43:30
  • 以武侠形式理解Java LinkedList源码

    2021-12-27 20:34:23
  • Java设计模式之观察者模式(Observer模式)介绍

    2022-10-16 04:40:42
  • hibernate4基本配置方式详解

    2023-03-11 11:07:43
  • Android Studio使用小技巧:布局预览时填充数据

    2021-06-04 09:00:03
  • Java BigDecimal案例详解

    2021-09-15 12:03:43
  • Java通过FTP服务器上传下载文件的方法

    2021-08-15 07:26:39
  • Android 代码写控件代替XML简单实例

    2023-04-11 00:10:48
  • asp之家 软件编程 m.aspxhome.com