栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

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

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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

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

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

第一步:创建attrs文件夹,自定义属性:



  
    
    
    
    
    
  

第二步:自定义View:


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

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()方法的时候如果使用上面的方法确定宽高,将会绘制成下图所示:

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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/154689.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号