最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android自定義View圓形進度條控件(三)

 更新時間:2020年05月16日 10:52:25   作者:猴菇先生  
這篇文章主要為大家詳細介紹了Android自定義View圓形進度條控件的相關(guān)資料,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

繼續(xù)練習自定義View,這次帶來的圓形進度條控件與之前的圓形百分比控件大同小異,這次涉及到了漸變渲染以及畫布旋轉(zhuǎn)等知識點,效果如下:

雖然步驟類似,但是我還是要寫,畢竟基礎(chǔ)的東西就是要多練

1、在res/values文件夾下新建attrs.xml文件,編寫自定義屬性:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <declare-styleable name="CircleProgressView">
 <!-- 弧線寬度 -->
 <attr name="arcWidth" format="dimension" />
 <!-- 刻度個數(shù) -->
 <attr name="scaleCount" format="integer" />
 <!-- 漸變起始顏色 -->
 <attr name="startColor" format="color" />
 <!-- 漸變終止顏色 -->
 <attr name="endColor" format="color" />
 <!-- 標簽說明文本 -->
 <attr name="labelText" format="string" />
 <!-- 文本顏色 -->
 <attr name="textColor" format="color" />
 <!-- 百分比文本字體大小 -->
 <attr name="progressTextSize" format="dimension" />
 <!-- 標簽說明字體大小 -->
 <attr name="labelTextSize" format="dimension" />
 </declare-styleable>
</resources>

2、新建CircleProgressView繼承View,重寫構(gòu)造方法:

 public CircleProgressView(Context context) {
 this(context, null);
 }

 public CircleProgressView(Context context, AttributeSet attrs) {
 this(context, attrs, 0);
 }

 public CircleProgressView(Context context, AttributeSet attrs, int defStyleAttr) {
 super(context, attrs, defStyleAttr);
 }

3、在第三個構(gòu)造方法中獲取自定義屬性的值:

 TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.CircleProgressView, defStyleAttr, 0);
 mArcWidth = ta.getDimension(R.styleable.CircleProgressView_arcWidth, DensityUtils.dp2px(context, 8));
 mScaleCount = ta.getInteger(R.styleable.CircleProgressView_scaleCount, 24);
 mStartColor = ta.getColor(R.styleable.CircleProgressView_startColor, Color.parseColor("#3FC199"));
 mEndColor = ta.getColor(R.styleable.CircleProgressView_endColor, Color.parseColor("#3294C1"));
 mColorArray = new int[]{mStartColor, mEndColor};
 mLabelText = ta.getString(R.styleable.CircleProgressView_labelText);
 mTextColor = ta.getColor(R.styleable.CircleProgressView_textColor, Color.parseColor("#4F5F6F"));
 mProgressTextSize = ta.getDimension(R.styleable.CircleProgressView_progressTextSize, 160);
 mLabelTextSize = ta.getDimension(R.styleable.CircleProgressView_labelTextSize, 64);
 ta.recycle();

4、創(chuàng)建畫圖所使用的對象,如Paint、Rect、RectF:

 mArcBackPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
 mArcBackPaint.setStyle(Paint.Style.STROKE);
 mArcBackPaint.setStrokeWidth(mArcWidth);
 mArcBackPaint.setColor(Color.LTGRAY);

 mArcForePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
 mArcForePaint.setStyle(Paint.Style.STROKE);
 mArcForePaint.setStrokeWidth(mArcWidth);

 mArcRectF = new RectF();

 mLinePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
 mLinePaint.setStyle(Paint.Style.STROKE);
 mLinePaint.setColor(Color.WHITE);
 mLinePaint.setStrokeWidth(DensityUtils.dp2px(context, 2));

 mProgressTextPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
 mProgressTextPaint.setStyle(Paint.Style.FILL);
 mProgressTextPaint.setColor(mTextColor);
 mProgressTextPaint.setTextSize(mProgressTextSize);

 mLabelTextPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
 mLabelTextPaint.setStyle(Paint.Style.FILL);
 mLabelTextPaint.setColor(mTextColor);
 mLabelTextPaint.setTextSize(mLabelTextSize);

 mTextRect = new Rect();

5、重寫onMeasure()方法,計算自定義View的寬高:

 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
 setMeasuredDimension(measuredDimension(widthMeasureSpec), measuredDimension(heightMeasureSpec));
 }

 private int measuredDimension(int measureSpec) {
 int result;
 int mode = MeasureSpec.getMode(measureSpec);
 int size = MeasureSpec.getSize(measureSpec);
 if (mode == MeasureSpec.EXACTLY) {
 result = size;
 } else {
 result = 800;
 if (mode == MeasureSpec.AT_MOST) {
 result = Math.min(result, size);
 }
 }
 return result;
 }

6、重寫onDraw()方法,繪制圓弧、刻度線和百分比文本、標簽說明文本,注意坐標的計算:

 @Override
 protected void onDraw(Canvas canvas) {
 super.onDraw(canvas);
 mArcRectF.set(mArcWidth / 2, mArcWidth / 2, getWidth() - mArcWidth / 2, getHeight() - mArcWidth / 2);
 //畫背景弧線
 canvas.drawArc(mArcRectF, -90, 360, false, mArcBackPaint);
 //設置漸變渲染
 LinearGradient linearGradient = new LinearGradient(getWidth() / 2, 0, getWidth() / 2, getHeight(), mColorArray, null, Shader.TileMode.CLAMP);
 mArcForePaint.setShader(linearGradient);
 //畫百分比值弧線
 canvas.drawArc(mArcRectF, -90, mSweepAngle, false, mArcForePaint);
 //畫刻度線
 for (int i = 0; i < mScaleCount; i++) {
 canvas.drawLine(getWidth() / 2, 0, getWidth() / 2, mArcWidth, mLinePaint);
 //旋轉(zhuǎn)畫布
 canvas.rotate(360 / mScaleCount, getWidth() / 2, getHeight() / 2);
 }
 //畫百分比文本
 String progressText = mProgress + "%";
 mProgressTextPaint.getTextBounds(progressText, 0, progressText.length(), mTextRect);
 float progressTextWidth = mTextRect.width();
 float progressTextHeight = mTextRect.height();
 canvas.drawText(progressText, getWidth() / 2 - progressTextWidth / 2,
 getHeight() / 2 + progressTextHeight / 2, mProgressTextPaint);
 //畫標簽說明文本
 mLabelTextPaint.getTextBounds(mLabelText, 0, mLabelText.length(), mTextRect);
 canvas.drawText(mLabelText, getWidth() / 2 - mTextRect.width() / 2,
 getHeight() / 2 - progressTextHeight / 2 - mTextRect.height(), mLabelTextPaint);
 }

7、暴露一個動態(tài)設置百分比的方法:

 public void setProgress(float progress) {
 Log.e("--> ", progress + "");
 ValueAnimator anim = ValueAnimator.ofFloat(mProgress, progress);
 anim.setDuration((long) (Math.abs(mProgress - progress) * 20));
 anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
 @Override
 public void onAnimationUpdate(ValueAnimator animation) {
 mProgress = (float) animation.getAnimatedValue();
 mSweepAngle = mProgress * 360 / 100;
 mProgress = (float) (Math.round(mProgress * 10)) / 10;//四舍五入保留到小數(shù)點后兩位
 invalidate();
 }
 });
 anim.start();
 }

8、在activity_main.xml布局文件中使用該View:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:cpv="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 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.monkey.circleprogressview.CircleProgressView
 android:id="@+id/circle_progress_view"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_centerInParent="true"
 cpv:arcWidth="8dp"
 cpv:endColor="#126b94"
 cpv:labelText="學習進度"
 cpv:labelTextSize="20sp"
 cpv:progressTextSize="55sp"
 cpv:scaleCount="24"
 cpv:startColor="#12d699"
 cpv:textColor="#4F5F6F" />
</RelativeLayout>

9、在MainActivity中設置監(jiān)聽,傳入百分比:

 final CircleProgressView view = (CircleProgressView) findViewById(R.id.circle_progress_view);
 view.setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View v) {
 float progress = (float) (Math.random() * 100);
 view.setProgress(progress);
 }
 });

代碼下載地址

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android天氣預報app改進版

    Android天氣預報app改進版

    這篇文章主要為大家詳細介紹了改進版的Android天氣預報app,內(nèi)容更加充實,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-07-07
  • Android入門之TextClock的使用教程

    Android入門之TextClock的使用教程

    TextClock是在Android 4.2(API 17)后推出的用來替代DigitalClock的一個控件。本文將為大家詳細說說TextClock的使用,感興趣的小伙伴可以了解一下
    2022-11-11
  • android端使用openCV實現(xiàn)車牌檢測

    android端使用openCV實現(xiàn)車牌檢測

    這篇文章主要為大家詳細介紹了android端使用openCV實現(xiàn)車牌檢測,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-12-12
  • Android實現(xiàn)炫酷播放效果

    Android實現(xiàn)炫酷播放效果

    這篇文章主要為大家詳細介紹了Android實現(xiàn)炫酷播放效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-08-08
  • android開發(fā)設計模式之——單例模式詳解

    android開發(fā)設計模式之——單例模式詳解

    本篇文章主要介紹了android開發(fā)設計模式之——單例模式詳解,具有一定的參考價值,有需要的可以了解一下。
    2016-11-11
  • Android簡單封裝一個MVP基類流程詳解

    Android簡單封裝一個MVP基類流程詳解

    MVP是從經(jīng)典的模式MVC演變而來,它們的基本思想有相通的地方:Controller/Presenter負責邏輯的處理,Model提供數(shù)據(jù),View負責顯示。下面這篇文章主要給大家介紹了關(guān)于Android從實現(xiàn)到封裝MVP的相關(guān)內(nèi)容,分享出來供大家參考學習,下面話不多說了,來一起看看詳細的介紹吧
    2023-03-03
  • Android中EditText實現(xiàn)不可編輯解決辦法

    Android中EditText實現(xiàn)不可編輯解決辦法

    這篇文章主要介紹了Android中EditText實現(xiàn)不可編輯解決辦法,需要的朋友可以參考下
    2014-12-12
  • Android開發(fā)筆記之:消息循環(huán)與Looper的詳解

    Android開發(fā)筆記之:消息循環(huán)與Looper的詳解

    本篇文章是對Android中消息循環(huán)與Looper的應用進行了詳細的分析介紹,需要的朋友參考下
    2013-05-05
  • 深入理解Kotlin的泛型系統(tǒng)

    深入理解Kotlin的泛型系統(tǒng)

    Kotlin 泛型即 “參數(shù)化類型”,將類型參數(shù)化,可以用在類,接口,方法上。下面 這篇文章主要給大家介紹了關(guān)于Kotlin泛型系統(tǒng)的相關(guān)資料,文中通過示例代碼介紹的非常詳細,需要的朋友可以參考下。
    2017-12-12
  • Android使用CountDownTimer類實現(xiàn)倒計時鬧鐘

    Android使用CountDownTimer類實現(xiàn)倒計時鬧鐘

    這篇文章主要為大家詳細介紹了Android使用CountDownTimer類實現(xiàn)倒計時鬧鐘,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-01-01

最新評論

金溪县| 开平市| 梁河县| 湘潭县| 吴忠市| 松原市| 两当县| 交口县| 黄浦区| 玉山县| 丹巴县| 嵩明县| 剑河县| 牟定县| 子长县| 阿克陶县| 左权县| 通化县| 富蕴县| 扎囊县| 黑水县| 南丰县| 衡水市| 哈密市| 华坪县| 资溪县| 宣武区| 阿克苏市| 资兴市| 乌拉特中旗| 陵川县| 甘德县| 海盐县| 乐亭县| 长垣县| 柏乡县| 河南省| 板桥市| 平江县| 昔阳县| 铅山县|