文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android自定义控件系列之应用篇??圆形进度条

2022-06-06 12:52

关注

  一、概述   在上一篇博文中,我们给大家介绍了Android自定义控件系列的基础篇。链接:http://www.cnblogs.com/jerehedu/p/4360066.html   这一篇博文中,我们将在基础篇的基础上,再通过重写ondraw()方法和自定义属性实现圆形进度条,效果如图所示:  

  二、实现步骤   1、编写自定义组件MyCircleProgress扩展View   public class MyCircleProgress extends View{   …   }   2、在MyCircleProgress类中,定制属性   public int progress=0;//进度实际值,当前进度      private int mR;//圆半径,决定圆大小   private int bgColor;//圆或弧的背景颜色   private int fgColor;//圆或弧的前景颜色,即绘制时的颜色   private int drawStyle;//绘制类型FILL画圆形进度条,STROKE绘制弧形进度条   private int strokeWidth;//STROKE绘制弧形的弧线的宽度   private int max;//大值,设置进度的大值      public synchronized void setProgress(int progress){   if(progress<0){   progress=0;   }else if(progress>max){   progress=max;   }else{   this.progress=progress;   }     }   public int getMax(){   return max; }   3、为定制的属性编写attrs.xml资源,该资源文件放在res/values目录下,内容如下:   <?xml version="1.0"encoding="utf-8"?>   <resources>   <declare-styleable name="CircleProgressBar">   <attr name="bgColor"format="color"/>   <attr name="fgColor"format="color"/>   <attr name="r"format="integer"/>   <attr name="strokeWidth"format="integer"/>   <attr name="drawStyle">   <enum name="STROKE"value="0"></enum>   <enum name="FILL"value="1"></enum>   </attr>   <attr name="max"format="integer"/>   </declare-styleable>   </resources>   4、在MyCircleProgress类中定义构造函数,初始化属性   private void initProperty(AttributeSet attrs){   TypedArray tArray=context.obtainStyledAttributes(attrs,R.styleable.CircleProgressBar);   mR=tArray.getInteger(R.styleable.CircleProgressBar_r,10);   bgColor=tArray.getColor(R.styleable.CircleProgressBar_bgColor,Color.GRAY);   fgColor=tArray.getColor(R.styleable.CircleProgressBar_fgColor,Color.RED);   drawStyle=tArray.getInt(R.styleable.CircleProgressBar_drawStyle,0);   strokeWidth=tArray.getInteger(R.styleable.CircleProgressBar_strokeWidth,10);   max=tArray.getInteger(R.styleable.CircleProgressBar_max,100);   }    public MyCircleProgress(Context context,AttributeSet attrs){   super(context,attrs);   this.context=context;   this.paint=new Paint();   this.paint.setAntiAlias(true);//消除锯齿   this.paint.setStyle(Style.STROKE);//绘制空心圆或空心矩形   initProperty(attrs);    }   5、在MainActivity中布局文件中添加MyCircleProgress组件,如下所示   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"   xmlns:tools="http://schemas.android.com/tools"   xmlns:app="http://schemas.android.com/apk/res/com.jereh.mydrawcircleprogress"   android:layout_width="match_parent"   android:layout_height="match_parent"   android:paddingBottom="@dimen/activity_vertical_margin"   android:paddingLeft="@dimen/activity_horizontal_margin"   android:paddingRight="@dimen/activity_horizontal_margin"   android:paddingTop="@dimen/activity_vertical_margin"   tools:context=".MainActivity"   >   <com.jereh.views.MyCircleProgress   android:id="@+id/MyCircleProgress"   android:layout_width="wrap_content"   android:layout_height="wrap_content"   app:r="45"   app:strokeWidth="10"   app:bgColor="#cccccc"   app:fgColor="#ff0000"   app:drawStyle="FILL"   app:max="50"   />   </RelativeLayout>   6、自定义组件MyCircleProgress中重写onDraw方法:   protected void onDraw(Canvas canvas){   super.onDraw(canvas);   int center=getWidth()/2;//圆心位置   this.paint.setColor(bgColor);   this.paint.setStrokeWidth(strokeWidth);   canvas.drawCircle(center,center,mR,this.paint);   //绘制圆环   this.paint.setColor(fgColor);   if(drawStyle==0){   this.paint.setStyle(Style.STROKE);   opt=false;   }else{   this.paint.setStyle(Style.FILL);   opt=true;   }   int top=(center-mR);   int bottom=(center+mR);   RectF oval=new RectF(top,top,bottom,bottom);   canvas.drawArc(oval,270,360*progress/max,opt,paint);   }   7、编写MainActivity   public class MainActivity extends Activity{   private MyCircleProgress progressView;   @Override   protected void onCreate(Bundle savedInstanceState){   super.onCreate(savedInstanceState);   setContentView(R.layout.activity_main);   progressView=(MyCircleProgress)findViewById(R.id.MyCircleProgress);   new ProgressAnimation().execute();   }   class ProgressAnimation extends AsyncTask<Void,Integer,Void>{   @Override   protected Void doInBackground(Void...params){   //进度值不断的变化   for(int i=0;i<progressView.getMax();i++){   try{   publishProgress(i);   Thread.sleep(100);   }catch(InterruptedException e){   e.printStackTrace();   }   }   return null;   }   @Override   protected void onProgressUpdate(Integer...values){   //更新进度值   progressView.setProgress(values[0]);   progressView.invalidate();   super.onProgressUpdate(values);   }   }   }


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯