仿字节颜色自定义Android进度条

====

代码实现

====

第一步:编写自定义属性

res/values/attrs.xml

<?xml version="1.0" encoding="utf-8"?>

第二步:编写自定义java类

package com.wust.jingdutiao;

import android.animation.ValueAnimator;

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.graphics.drawable.ColorDrawable;

import android.graphics.drawable.Drawable;

import android.util.AttributeSet;

import android.util.TypedValue;

import android.view.View;

import android.view.animation.Animation;

import androidx.annotation.Nullable;

/**

  • ClassName: MyLodingView

  • Description:

  • date: 2021/7/21 15:59

  • @author yiqi

  • @QQ 1820762465

  • @微信 yiqiideallife

  • @技术交流QQ群 928023749

*/

public class MyLoadingView extends View {

private int rect_color_one;

private int rect_color_two;

private int rect_color_three;

private int rect_color_four;

private int rect_color_five;

private Paint rect_one_paint;

private Paint rect_two_paint;

private Paint rect_three_paint;

private Paint rect_four_paint;

private Paint rect_five_paint;

private int mWidth;

private int mHeight;

private float[] mHeightRate = {1/16.0f,1/10.0f,1/8.0f};

private int HORIZONTAL_OFFSET = 5;

private int bg_default_color;

private ValueAnimator va;

public MyLoadingView(Context context) {

super(context);

}

public MyLoadingView(Context context, @Nullable AttributeSet attrs) {

super(context, attrs);

initAttrs(context, attrs);

initPaint();

initAnima();

}

public MyLoadingView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

initAttrs(context, attrs);

initPaint();

initAnima();

}

//设置 属性动画

private void initAnima() {

va = ValueAnimator.ofInt(0, 4);

va.setDuration(3000);

va.setRepeatCount(ValueAnimator.INFINITE);

va.setRepeatMode(ValueAnimator.RESTART);

va.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {

@Override

public void onAnimationUpdate(ValueAnimator animation) {

int value = (int) animation.getAnimatedValue();

setRectColorByNum(value);

}

});

postDelayed(new Runnable() {

@Override

public void run() {

va.start();

}

},500);

}

private void initAttrs(Context context, AttributeSet attrs) {

//获取用户传来的五种颜色

TypedArray ty = context.obtainStyledAttributes(attrs, R.styleable.MyLoadingView);

rect_color_one = ty.getColor(R.styleable.MyLoadingView_loading_color_one, Color.parseColor(“#325AB4”));

rect_color_two = ty.getColor(R.styleable.MyLoadingView_loading_color_two, Color.parseColor(“#3C8CFF”));

rect_color_three = ty.getColor(R.styleable.MyLoadingView_loading_color_three, Color.parseColor(“#888888”));

rect_color_four = ty.getColor(R.styleable.MyLoadingView_loading_color_four, Color.parseColor(“#00C8D2”));

rect_color_five = ty.getColor(R.styleable.MyLoadingView_loading_color_five, Color.parseColor(“#78E6DC”));

//获取背景色

try {

ColorDrawable bg = (ColorDrawable) getBackground();

bg_default_color = bg.getColor();

}catch (Exception e){

bg_default_color = Color.WHITE;

}

ty.recycle();

}

//初始化画笔

private void initPaint() {

rect_one_paint = getPaintByColor(rect_color_one);

rect_two_paint = getPaintByColor(rect_color_two);

rect_three_paint = getPaintByColor(rect_color_three);

rect_four_paint = getPaintByColor(rect_color_four);

rect_five_paint = getPaintByColor(rect_color_five);

}

private Paint getPaintByColor(int Color) {

Paint paint = new Paint();

paint.setAntiAlias(true);

paint.setDither(true);

paint.setColor(Color);

return paint;

}

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

mWidth = MeasureSpec.getSize(widthMeasureSpec);

mHeight = MeasureSpec.getSize(heightMeasureSpec);

//让其为正方形,并且宽高不能小于40

mWidth = mHeight = Math.max(Math.min(mWidth, mHeight),dp2px(100));

setMeasuredDimension(mWidth, mHeight);

}

private int dp2px(int value) {

return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,value,getResources().getDisplayMetrics());

}

@Override

protected void onDraw(Canvas canvas) {

super.onDraw(canvas);

//绘制矩形

drawRect(canvas);

}

private void drawRect(Canvas canvas) {

int centerX = mWidth/2;

int centerY = mHeight/2;

RectF rectOne = new RectF(centerX-HORIZONTAL_OFFSET,

centerY-mWidth*mHeightRate[0],

centerX+HORIZONTAL_OFFSET,

centerY+mWidth*mHeightRate[0]);

题外话

我们见过很多技术leader在面试的时候,遇到处于迷茫期的大龄程序员,比面试官年龄都大。这些人有一些共同特征:可能工作了7、8年,还是每天重复给业务部门写代码,工作内容的重复性比较高,没有什么技术含量的工作。问到这些人的职业规划时,他们也没有太多想法。

其实30岁到40岁是一个人职业发展的黄金阶段,一定要在业务范围内的扩张,技术广度和深度提升上有自己的计划,才有助于在职业发展上有持续的发展路径,而不至于停滞不前。

不断奔跑,你就知道学习的意义所在!

注意:我们之前因为秋招收集的二十套一二线互联网公司Android面试真题(含BAT、小米、华为、美团、滴滴)和我自己整理Android复习笔记(包含Android基础知识点、Android扩展知识点、Android源码解析、设计模式汇总、Gradle知识点、常见算法题汇总。)

《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!
,一定要在业务范围内的扩张,技术广度和深度提升上有自己的计划,才有助于在职业发展上有持续的发展路径,而不至于停滞不前。

不断奔跑,你就知道学习的意义所在!

注意:我们之前因为秋招收集的二十套一二线互联网公司Android面试真题(含BAT、小米、华为、美团、滴滴)和我自己整理Android复习笔记(包含Android基础知识点、Android扩展知识点、Android源码解析、设计模式汇总、Gradle知识点、常见算法题汇总。)

[外链图片转存中…(img-eV6b2yf8-1715182618674)]

《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!

  • 20
    点赞
  • 23
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值