91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中自定義View實現QQ運動步數效果

發布時間:2021-06-08 17:20:44 來源:億速云 閱讀:190 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關怎么在Android中自定義View實現QQ運動步數效果,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

首先自定義屬性:

<?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中自定義View實現QQ運動步數效果,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

舞钢市| 新平| 土默特右旗| 隆回县| 西乌| 青铜峡市| 昂仁县| 九寨沟县| 晋宁县| 太康县| 石城县| 沙河市| 双江| 玉门市| 万源市| 桦南县| 隆安县| 三明市| 宁安市| 温泉县| 眉山市| 焉耆| 田阳县| 宜川县| 卓尼县| 晋中市| 山阴县| 呼图壁县| 闵行区| 岳西县| 资溪县| 清涧县| 商洛市| 富宁县| 上虞市| 乌兰察布市| 重庆市| 子长县| 东兰县| 江西省| 澳门|