《960全网最全Android开发笔记》
《379页Android开发面试宝典》
《507页Android开发相关源码解析》
因为文件太多,全部展示会影响篇幅,暂时就先列举这些部分截图
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
- @技术交流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]);
canvas.drawRoundRect(rectOne,5,5,rect_one_paint);
RectF rectTwo = new RectF(centerX+HORIZONTAL_OFFSET*3,
centerY-mWidth*mHeightRate[1],
centerX+HORIZONTAL_OFFSET*5,
centerY+mWidth*mHeightRate[1]);
canvas.drawRoundRect(rectTwo,5,5,rect_two_paint);
RectF rectThree = new RectF(centerX-HORIZONTAL_OFFSET*3,
centerY-mWidth*mHeightRate[1],
centerX-HORIZONTAL_OFFSET*5,
centerY+mWidth*mHeightRate[1]);
canvas.drawRoundRect(rectThree,5,5,rect_three_paint);
RectF rectFour = new RectF(centerX+HORIZONTAL_OFFSET*7,
centerY-mWidth*mHeightRate[2],
centerX+HORIZONTAL_OFFSET*9,
centerY+mWidth*mHeightRate[2]);
canvas.drawRoundRect(rectFour,5,5,rect_four_paint);
RectF rectFive = new RectF(centerX-HORIZONTAL_OFFSET*7,
centerY-mWidth*mHeightRate[2],
centerX-HORIZONTAL_OFFSET*9,
centerY+mWidth*mHeightRate[2]);
canvas.drawRoundRect(rectFive,5,5,rect_five_paint);
}
//根据属性动画的 变化的值 给画笔换不同的颜色
private void setRectColorByNum(int num){
if (num == 0){
rect_one_paint.setColor(rect_color_one);
最后
感谢您的阅读,在文末给大家准备一个福利。本人从事Android开发已经有十余年,算是一名资深的移动开发架构师了吧。根据我的观察发现,对于很多初中级Android工程师而言,想要提升技能,往往是自己摸索成长,不成体系的学习效果低效漫长且无助。
所以在此将我十年载,从萌新小白一步步成长为Android移动开发架构师的学习笔记,从Android四大组件到手写实现一个架构设计,我都有一一的对应笔记为你讲解。
当然我也为你们整理好了百度、阿里、腾讯、字节跳动等等互联网超级大厂的历年面试真题集锦。这也是我这些年来养成的习惯,一定要学会把好的东西,归纳整理,然后系统的消化吸收,这样才能极大的提高学习效率和成长进阶。碎片、零散化的东西,我觉得最没有价值的。就好比你给我一张扑克牌,我只会觉得它是一张废纸,但如果你给我一副扑克牌,它便有了它的价值。这和我们收集资料就要收集那些系统化的,是一个道理。
最后,赠与大家一句诗,共勉!
不驰于空想,不骛于虚声。不忘初心,方得始终。
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
和我们收集资料就要收集那些系统化的,是一个道理。
[外链图片转存中…(img-leXIfXGx-1715821609573)]
最后,赠与大家一句诗,共勉!
不驰于空想,不骛于虚声。不忘初心,方得始终。
网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。
一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!