欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android自定義View仿QQ運動步數(shù)效果

 更新時間:2019年11月03日 10:30:43   作者:AD鈣奶-lalala  
這篇文章主要為大家詳細介紹了Android自定義View仿QQ運動步數(shù)效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實例為大家分享了Android QQ運動步數(shù)的具體代碼,供大家參考,具體內容如下

今天我們實現(xiàn)下面這樣的效果:

首先自定義屬性:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="MyQQStep">
    <attr name="out_color" format="color"/>
    <attr name="inner_color" format="color"/>
    <attr name="border_width" format="dimension"/>
    <attr name="text_size" format="dimension"/>
    <attr name="text_color" format="color"/>
  </declare-styleable>
</resources>

自定義View代碼如下:

/**
 * Created by Michael on 2019/11/1.
 */
 
public class MyQQStep extends View {
 
  private int out_color;
  private int inner_color;
  private float width;
  private float textSize;
  private int color;
  private int width01;
  private int height01;
  private Paint outPaint;
  private Paint innerPaint;
  private Paint textPaint;
 
  private float percent;
  private int step;
 
  public MyQQStep(Context context) {
    this(context,null);
  }
 
  public MyQQStep(Context context, @Nullable AttributeSet attrs) {
    this(context, attrs,0);
  }
 
  public MyQQStep(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    TypedArray array = context.obtainStyledAttributes(attrs,R.styleable.MyQQStep);
    out_color = array.getColor(R.styleable.MyQQStep_out_color, Color.BLACK);
    inner_color = array.getColor(R.styleable.MyQQStep_inner_color, Color.RED);
    width = array.getDimension(R.styleable.MyQQStep_border_width,10);
    textSize = array.getDimensionPixelSize(R.styleable.MyQQStep_text_size,20);
    color = array.getColor(R.styleable.MyQQStep_text_color, Color.GREEN);
    array.recycle();
    initPaint();
    percent = 0;
    step = 5000;
  }
 
  private void initPaint() {
    outPaint = new Paint();
    outPaint.setAntiAlias(true);
    outPaint.setStyle(Paint.Style.STROKE);
    outPaint.setStrokeWidth(width);
    outPaint.setColor(out_color);
    outPaint.setStrokeCap(Paint.Cap.ROUND);
 
    innerPaint = new Paint();
    innerPaint.setAntiAlias(true);
    innerPaint.setStrokeWidth(width);
    innerPaint.setStyle(Paint.Style.STROKE);
    innerPaint.setColor(inner_color);
    innerPaint.setStrokeCap(Paint.Cap.ROUND);
 
    textPaint = new Paint();
    textPaint.setAntiAlias(true);
    textPaint.setColor(color);
    textPaint.setStyle(Paint.Style.STROKE);
    textPaint.setTextSize(textSize);
 
  }
 
  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    //super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    int widthMode = MeasureSpec.getMode(widthMeasureSpec);
    int heightMode = MeasureSpec.getMode(heightMeasureSpec);
    if (widthMode == MeasureSpec.AT_MOST){
 
    }else{
      width01 = MeasureSpec.getSize(widthMeasureSpec);
    }
    if (heightMode == MeasureSpec.AT_MOST){
 
    }else{
      height01 = MeasureSpec.getSize(heightMeasureSpec);
    }
    setMeasuredDimension((width01>height01?height01:width01)
        ,(width01>height01?height01:width01));
  }
 
  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    int realWidth = getWidth()>getHeight()?getHeight():getWidth();
    int realHeight = getWidth()>getHeight()?getHeight():getWidth();
    RectF r1 = new RectF(width/2,width/2,realWidth-width/2
        ,realHeight-width/2);
    canvas.drawArc(r1,135,270,false,outPaint);
    canvas.drawArc(r1,135,270*percent,false,innerPaint);
 
    Rect r = new Rect();
    String s = step+"";
    textPaint.getTextBounds(s,0,s.length(),r);
    int textWidth = r.width();
    int textHeight = r.height();
    Paint.FontMetricsInt fontMetricsInt = new Paint.FontMetricsInt();
    int dy = (fontMetricsInt.bottom-fontMetricsInt.top)/2-fontMetricsInt.bottom;
    int baseLine = textHeight/2+dy+realHeight/2-textHeight/2;
    int x0 = realWidth/2-textWidth/2;
    canvas.drawText(s,x0,baseLine,textPaint);
 
  }
 
  public void setPercent(float percent,float value){
    this.percent = percent;
    this.step = (int) value;
    invalidate();
  }
 
 
}

最后在布局以及MainActivity中調用:

<com.example.qq_step.MyQQStep
    android:id="@+id/qq_step"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:out_color="@color/colorAccent"
    app:border_width="10dp"
    app:inner_color="@color/colorPrimary"
    app:text_size="20sp"
    app:text_color="@color/colorPrimaryDark"
    />
 private void initView() {
    final MyQQStep qq_view = findViewById(R.id.qq_step);
    ValueAnimator animator = ValueAnimator.ofFloat(0,5000);
    animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
      @Override
      public void onAnimationUpdate(ValueAnimator animation) {
        float p = animation.getAnimatedFraction();
        qq_view.setPercent(p,5000*p);
      }
    });
    animator.setDuration(10000);
    animator.start();
 
  }

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

相關文章

  • android?studio實現(xiàn)上傳圖片到java服務器

    android?studio實現(xiàn)上傳圖片到java服務器

    這篇文章主要為大家詳細介紹了android?studio實現(xiàn)上傳圖片到java服務器,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-08-08
  • Android Notification通知使用詳解

    Android Notification通知使用詳解

    消息通知(Notification)是Android系統(tǒng)中比較有特色的一個功能,當某個應用程序希望用戶發(fā)出一些提示信息,而該應用又不在前臺運行時,就可以借助通知來實現(xiàn)
    2022-09-09
  • Android Service總結及詳細介紹

    Android Service總結及詳細介紹

    本文主要介紹Android Service的知識,這里整理了詳細資料及簡單實現(xiàn)示例代碼,有需要的小伙伴可以參考下
    2016-09-09
  • Android實現(xiàn)計步器功能

    Android實現(xiàn)計步器功能

    這篇文章主要為大家詳細介紹了Android實現(xiàn)計步器功能,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-03-03
  • Android開發(fā)Intent跳轉傳遞list集合實現(xiàn)示例

    Android開發(fā)Intent跳轉傳遞list集合實現(xiàn)示例

    這篇文章主要為大家介紹了Android開發(fā)Intent跳轉傳遞list集合實現(xiàn)示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-07-07
  • Android獲取SD卡中選中圖片的路徑(URL)示例

    Android獲取SD卡中選中圖片的路徑(URL)示例

    一個圖片上傳功能需要提供上傳圖片在SD卡中的路徑,總結了網上的一些列子,修改了一下,代碼很簡單,感興趣的朋友可以參考下哈,希望對大家有所幫助
    2013-07-07
  • Android 使用Vitamio打造自己的萬能播放器(2)—— 手勢控制亮度、音量、縮放

    Android 使用Vitamio打造自己的萬能播放器(2)—— 手勢控制亮度、音量、縮放

    本文主要介紹Android Vitamio插件的一些功能,這里主要介紹 Android Vitamio插件的手勢控制亮度,音量,縮放的功能,并提供代碼實例,有需要的小伙伴可以參考下
    2016-07-07
  • Android 原始資源文件的使用詳解

    Android 原始資源文件的使用詳解

    本篇文章是對Android中原始資源文件的使用進行了詳細的分析介紹,需要的朋友參考下
    2013-05-05
  • Android控件之ProgressBar用法實例分析

    Android控件之ProgressBar用法實例分析

    這篇文章主要介紹了Android控件之ProgressBar用法,以一個完整實例形式較為詳細的分析了ProgressBar控件操作進度顯示的使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
    2015-09-09
  • Android View實現(xiàn)圓形進度條

    Android View實現(xiàn)圓形進度條

    這篇文章主要為大家詳細介紹了Android View實現(xiàn)圓形進度條,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-08-08

最新評論