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

Android自定義帶圓點的半圓形進(jìn)度條

 更新時間:2018年12月31日 11:03:04   作者:songyan_love  
這篇文章主要為大家詳細(xì)介紹了Android自定義帶圓點的半圓形進(jìn)度條,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了Android自定義帶圓點的半圓形進(jìn)度條,供大家參考,具體內(nèi)容如下

僅限用于半圓形,如須要帶圓點的圓形進(jìn)度條,圓點會出現(xiàn)錯位現(xiàn)象,此代碼僅供,帶圓點的圓形進(jìn)度條有空研究一下!圖片效果在下方,

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;

/**
 * 自定義帶圓點的進(jìn)度條
 */
public class HalfProgressBar extends View{
 private int maxProgress = 100;
 //設(shè)置進(jìn)度條背景寬度
 private float progressStrokeWidth = 3;
 //設(shè)置進(jìn)度條進(jìn)度寬度
 private float marxArcStorkeWidth = 6;
 //設(shè)置進(jìn)度條圓點的寬度
 private float circularDotWidth=15;


 /**
  * 畫筆對象的引用
  */
 private Paint paint;

 public synchronized int getProgress() {
  return progress;
 }

 /**
  * Android提供了Invalidate方法實現(xiàn)界面刷新,但是Invalidate不能直接在線程中調(diào)用,因為他是違背了單線程模型:Android UI操作并不是線程安全的,并且這些操作必須在UI線程中調(diào)用。
  * 而postInvalidate()在工作者線程中被調(diào)用 使用postInvalidate則比較簡單,不需要handler,直接在線程中調(diào)用postInvalidate即可。 
  * @param progress 傳過來的進(jìn)度
  */
 public void setProgress(int progress) {
  if (progress < 0) {
   progress = 0;
  }
  if (progress > maxProgress) {
   progress = maxProgress;
  }
  if (progress <= maxProgress) {
   this.progress = progress;
   postInvalidate();
  }
 }
 /**
  * 當(dāng)前進(jìn)度
  */
 private int progress = 99;

 private RectF oval;
 private int roundProgressColor;
 private int roundColor;
 private int circularDotColor;
 public HalfProgressBar(Context context) {
  super(context);
 }

 public HalfProgressBar(Context context, AttributeSet attrs) {
  super(context, attrs);
  paint = new Paint();
  oval = new RectF();
  //這是自定義view 必須要寫的
  TypedArray mTypedArray = context.obtainStyledAttributes(attrs, R.styleable.HalfProgressBar);
  roundProgressColor = mTypedArray.getColor(R.styleable.HalfProgressBar_roundProgressColor1, Color.YELLOW);
  roundColor=mTypedArray.getColor(R.styleable.HalfProgressBar_roundColor1, Color.YELLOW);
  circularDotColor=mTypedArray.getColor(R.styleable.HalfProgressBar_circularDotColor1, Color.YELLOW);

 }

 public HalfProgressBar(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  paint = new Paint();
  oval = new RectF();
  TypedArray mTypedArray = context.obtainStyledAttributes(attrs, R.styleable.HalfProgressBar);
  roundProgressColor = mTypedArray.getColor(R.styleable.HalfProgressBar_roundProgressColor1, Color.YELLOW);
  roundColor=mTypedArray.getColor(R.styleable.HalfProgressBar_roundColor1, Color.YELLOW);

 }

 @Override
 protected void onDraw(Canvas canvas) {
  // TODO 自動生成的方法存根
  super.onDraw(canvas);
  float width = getWidth();
  float height = getHeight();
  paint.setAntiAlias(false); // 設(shè)置畫筆為抗鋸齒
  paint.setColor(roundColor); // 設(shè)置畫筆顏色

  paint.setStrokeWidth(progressStrokeWidth); // 線寬
  paint.setStyle(Paint.Style.STROKE);

  oval.left = marxArcStorkeWidth / 2; // 左上角x
  oval.top = circularDotWidth; // 左上角y
  oval.right = width - circularDotWidth / 2; // 左下角x
  oval.bottom = width - circularDotWidth / 2; // 右下角y
  float bangjing = ((width - circularDotWidth/2) / 2);//半徑


  //調(diào)整圓背景的大小
  canvas.drawArc(oval, 180, 180, false, paint); // 繪制紅絲圓圈,即進(jìn)度條背景
  //進(jìn)度條顏色
  paint.setColor(roundProgressColor);
  paint.setStrokeWidth(marxArcStorkeWidth);
  canvas.drawArc(oval, 180, 180 * ((float) progress / (float) maxProgress), false, paint); // 繪制進(jìn)度圓弧,這里是藍(lán)色


  //畫圓點
  paint.setColor(circularDotColor);
  paint.setAntiAlias(true); // 設(shè)置畫筆為抗鋸齒
  paint.setStyle(Paint.Style.FILL);
  paint.setStrokeWidth(circularDotWidth);
  //當(dāng)畫筆樣式為STROKE或FILL_OR_STROKE時,設(shè)置筆刷的圖形樣式,如圓形樣式Cap.ROUND,或方形樣式Cap.SQUARE
  paint.setStrokeCap(Paint.Cap.ROUND);
  float jindu = ((float) progress * 1.8f);
  canvas.drawPoint(bangjing - ((float) (Math.sin((Math.PI / (double) 180) * (jindu <= 90 ? 90 - (jindu) : -jindu + 90))) * bangjing),
   bangjing+circularDotWidth - ((float) (Math.cos((Math.PI / (double) 180) * (double) (jindu <= 90 ? 90 - jindu : -jindu + 90))) * bangjing), paint);

 }

}

attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <!--自定義半圓形加載進(jìn)度條-->
 <declare-styleable name="HalfProgressBar">
  <attr name="roundColor1" format="color"/>
  <attr name="roundProgressColor1" format="color"/>
  <attr name="circularDotColor1" format="color"/>
 </declare-styleable>
</resources>

xml中

<com.jyc99.demo.HalfProgressBar
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:id="@+id/view"
  android:layout_centerHorizontal="true"
  android:layout_marginTop="42dp"
  android_custom:roundColor1="#fc422b"
  android_custom:roundProgressColor1="#fa432e"
  android_custom:circularDotColor1="#246223"/>

由于截圖的原因可能看不到圓點 , 大家自己試試調(diào)調(diào)顏色 調(diào)整一下高度寬度

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

相關(guān)文章

  • Android常用正則表達(dá)式驗證工具類(實例代碼)

    Android常用正則表達(dá)式驗證工具類(實例代碼)

    正則表達(dá)式,相信接觸過編程的人都知道,但是大部分人應(yīng)該是每次用的時候現(xiàn)找,但對其語法應(yīng)該只是一知半解 。下面小編給大家分享Android常用正則表達(dá)式驗證工具類,感興趣的朋友一起看看吧
    2017-10-10
  • Android開發(fā)實現(xiàn)SubMenu選項菜單和子菜單示例

    Android開發(fā)實現(xiàn)SubMenu選項菜單和子菜單示例

    這篇文章主要介紹了Android開發(fā)實現(xiàn)SubMenu選項菜單和子菜單,結(jié)合實例形式分析了Android開發(fā)中SubMenu選項菜單和子菜單的功能、配置、布局等相關(guān)操作技巧,需要的朋友可以參考下
    2019-03-03
  • Kotlin利用Regex如何構(gòu)建正則表達(dá)式詳解

    Kotlin利用Regex如何構(gòu)建正則表達(dá)式詳解

    正則表達(dá)式,又稱規(guī)則表達(dá)式。下面這篇文章主要給大家介紹了關(guān)于Kotlin利用Regex構(gòu)建正則表達(dá)式的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起看看吧。
    2017-12-12
  • Android如何實現(xiàn)時間線效果(下)

    Android如何實現(xiàn)時間線效果(下)

    上一篇文章我們講了Android如何實現(xiàn)時間線效果,今天計息上一回的文章圍繞Android實現(xiàn)時間線效果內(nèi)容展開更多,需要的朋友可以參考一下
    2021-11-11
  • Android自定義SeekBar實現(xiàn)視頻播放進(jìn)度條

    Android自定義SeekBar實現(xiàn)視頻播放進(jìn)度條

    這篇文章主要為大家詳細(xì)介紹了Android自定義SeekBar實現(xiàn)視頻播放進(jìn)度條的相關(guān)資料,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-03-03
  • Android實現(xiàn)帶頁面切換的鎖屏功能

    Android實現(xiàn)帶頁面切換的鎖屏功能

    這篇文章主要為大家詳細(xì)介紹了Android實現(xiàn)帶頁面切換的鎖屏功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-06-06
  • Android快速實現(xiàn)無預(yù)覽拍照功能

    Android快速實現(xiàn)無預(yù)覽拍照功能

    這篇文章主要為大家詳細(xì)介紹了Android快速實現(xiàn)無預(yù)覽拍照功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-06-06
  • Android開發(fā)中的Surface庫及用其制作播放器UI的例子

    Android開發(fā)中的Surface庫及用其制作播放器UI的例子

    這篇文章主要介紹了Android開發(fā)中的Surface庫及用其制作播放器界面的例子,利用SurfaceView和SurfaceHolder可以高效地繪制和控制圖形界面,需要的朋友可以參考下
    2016-04-04
  • Android編程之ActionBar Tabs用法實例分析

    Android編程之ActionBar Tabs用法實例分析

    這篇文章主要介紹了Android編程之ActionBar Tabs用法,結(jié)合實例形式分析了ActionBar Tabs的功能及Tab切換不同的Fragment的相關(guān)實現(xiàn)技巧,需要的朋友可以參考下
    2017-03-03
  • Android?OpenCV基礎(chǔ)API清晰度亮度識別檢測

    Android?OpenCV基礎(chǔ)API清晰度亮度識別檢測

    這篇文章主要為大家介紹了Android?OpenCV基礎(chǔ)API清晰度亮度識別檢測,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-01-01

最新評論

巴彦淖尔市| 霍邱县| 灵宝市| 雷州市| 芮城县| 寿光市| 上虞市| 平乡县| 同江市| 铜陵市| 星子县| 余姚市| 闵行区| 景泰县| 宜兰县| 无棣县| 延吉市| 合阳县| 龙州县| 资阳市| 堆龙德庆县| 页游| 贡嘎县| 保康县| 颍上县| 普陀区| 吉林省| 海林市| 金阳县| 邳州市| 泰和县| 鄄城县| 武冈市| 故城县| 乐清市| 宜城市| 自治县| 江城| 厦门市| 沛县| 磐安县|