Android 天气APP(十二)空气质量、UI优化调整

样式代码如下

然后创建这个View

在这里插入图片描述

代码如下:

package com.llw.mvplibrary.view;

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.Rect;

import android.graphics.RectF;

import android.util.AttributeSet;

import android.view.View;

import androidx.annotation.Nullable;

import com.llw.mvplibrary.R;

public class RoundProgressBar extends View {

private int mStrokeWidth = dp2px(8);//圆弧的宽度

private float mStartAngle = 135;//圆弧开始的角度

private float mAngleSize = 270;//起点角度和终点角度对应的夹角大小

private int mArcBgColor;//圆弧背景颜色

private float mMaxProgress;//最大的进度,用于计算进度与夹角的比例

private float mCurrentAngleSize;//当前进度对应的起点角度到当前进度角度夹角的大小

private float mCurrentProgress = 0;//当前进度

private long mDuration = 2000;//动画的执行时长

private int mProgressColor;//进度圆弧的颜色

private String mFirstText = “0”;//第一行文本

private int mFirstTextColor = Color.WHITE;//第一行文本的颜色

private float mFirstTextSize = 56f;//第一行文本的字体大小

private String mSecondText = " ";//第二行文本

private int mSecondTextColor = Color.WHITE;//第二行文本的颜色

private float mSecondTextSize = 56f;//第二行文本的字体大小

private String mMinText = “0”;//进度最小值

private int mMinTextColor = Color.WHITE;//最小值文本的颜色

private float mMinTextSize = 32f;//最小值字体大小

private String mMaxText = “0”;//进度最大值

private int mMaxTextColor = Color.WHITE;//最大值文本的颜色

private float mMaxTextSize = 32f;//最大值字体大小

public RoundProgressBar(Context context) {

super(context, null);

}

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

super(context, attrs, 0);

}

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

super(context, attrs, defStyleAttr);

initAttr(context, attrs);

}

/**

  • 设置初始化的参数

  • @param context

  • @param attrs

*/

private void initAttr(Context context, AttributeSet attrs) {

TypedArray array = context.obtainStyledAttributes(attrs, R.styleable.RoundProgressBar);

mMaxProgress = array.getFloat(R.styleable.RoundProgressBar_round_max_progress, 500f);

mArcBgColor = array.getColor(R.styleable.RoundProgressBar_round_bg_color, Color.YELLOW);

mStrokeWidth = dp2px(array.getDimension(R.styleable.RoundProgressBar_round_stroke_width, 12f));

mCurrentProgress = array.getFloat(R.styleable.RoundProgressBar_round_progress, 300f);

mProgressColor = array.getColor(R.styleable.RoundProgressBar_round_progress_color, Color.RED);

mFirstText = array.getString(R.styleable.RoundProgressBar_round_first_text);

mFirstTextSize = dp2px(array.getDimension(R.styleable.RoundProgressBar_round_first_text_size, 20f));

mFirstTextColor = array.getColor(R.styleable.RoundProgressBar_round_first_text_color, Color.RED);

mSecondText = array.getString(R.styleable.RoundProgressBar_round_second_text);

mSecondTextSize = dp2px(array.getDimension(R.styleable.RoundProgressBar_round_second_text_size, 20f));

mSecondTextColor = array.getColor(R.styleable.RoundProgressBar_round_second_text_color, Color.RED);

mMinText = array.getString(R.styleable.RoundProgressBar_round_min_text);

mMinTextSize = dp2px(array.getDimension(R.styleable.RoundProgressBar_round_min_text_size, 20f));

mMinTextColor = array.getColor(R.styleable.RoundProgressBar_round_min_text_color, Color.RED);

mMaxText = array.getString(R.styleable.RoundProgressBar_round_max_text);

mMaxTextSize = dp2px(array.getDimension(R.styleable.RoundProgressBar_round_max_text_size, 20f));

mMaxTextColor = array.getColor(R.styleable.RoundProgressBar_round_max_text_color, Color.RED);

mAngleSize = array.getFloat(R.styleable.RoundProgressBar_round_angle_size, 270f);

mStartAngle = array.getFloat(R.styleable.RoundProgressBar_round_start_angle, 135f);

array.recycle();

}

@Override

protected void onDraw(Canvas canvas) {

super.onDraw(canvas);

int centerX = getWidth() / 2;

RectF rectF = new RectF();

rectF.left = mStrokeWidth;

rectF.top = mStrokeWidth;

rectF.right = centerX * 2 - mStrokeWidth;

rectF.bottom = centerX * 2 - mStrokeWidth;

//画最外层的圆弧

drawArcBg(canvas, rectF);

//画进度

drawArcProgress(canvas, rectF);

//绘制第一级文本

drawFirstText(canvas, centerX);

//绘制第二级文本

drawSecondText(canvas, centerX);

//绘制最小值文本

drawMinText(canvas, rectF.left, rectF.bottom);

//绘制最大值文本

drawMaxText(canvas, rectF.right, rectF.bottom);

}

/**

  • 画最开始的圆弧

  • @param canvas

  • @param rectF

*/

private void drawArcBg(Canvas canvas, RectF rectF) {

Paint mPaint = new Paint();

//画笔的填充样式,Paint.Style.FILL 填充内部;Paint.Style.FILL_AND_STROKE 填充内部和描边;Paint.Style.STROKE 描边

mPaint.setStyle(Paint.Style.STROKE);

//圆弧的宽度

mPaint.setStrokeWidth(mStrokeWidth);

//抗锯齿

mPaint.setAntiAlias(true);

//画笔的颜色

mPaint.setColor(mArcBgColor);

//画笔的样式 Paint.Cap.Round 圆形,Cap.SQUARE 方形

mPaint.setStrokeCap(Paint.Cap.ROUND);

//开始画圆弧

canvas.drawArc(rectF, mStartAngle, mAngleSize, false, mPaint);

}

/**

  • 画进度的圆弧

  • @param canvas

  • @param rectF

*/

private void drawArcProgress(Canvas canvas, RectF rectF) {

Paint paint = new Paint();

paint.setStyle(Paint.Style.STROKE);

paint.setStrokeWidth(mStrokeWidth);

paint.setColor(mProgressColor);

paint.setAntiAlias(true);

paint.setStrokeCap(Paint.Cap.ROUND);

canvas.drawArc(rectF, mStartAngle, mCurrentAngleSize, false, paint);

}

/**

  • 绘制第一级文字

  • @param canvas 画笔

  • @param centerX 位置

*/

private void drawFirstText(Canvas canvas, float centerX) {

Paint paint = new Paint();

paint.setAntiAlias(true);

paint.setColor(mFirstTextColor);

paint.setTextAlign(Paint.Align.CENTER);

paint.setTextSize(mFirstTextSize);

Rect firstTextBounds = new Rect();

paint.getTextBounds(mFirstText, 0, mFirstText.length(), firstTextBounds);

canvas.drawText(mFirstText, centerX, firstTextBounds.height() / 2 + getHeight() * 2 / 5, paint);

}

/**

  • 绘制第二级文本

  • @param canvas 画笔

  • @param centerX 文本

*/

private void drawSecondText(Canvas canvas, float centerX) {

Paint paint = new Paint();

paint.setAntiAlias(true);

paint.setColor(mSecondTextColor);

paint.setTextAlign(Paint.Align.CENTER);

paint.setTextSize(mSecondTextSize);

Rect bounds = new Rect();

paint.getTextBounds(mSecondText, 0, mSecondText.length(), bounds);

canvas.drawText(mSecondText, centerX, getHeight() / 2 + bounds.height() / 2 +

getFontHeight(mSecondText, mSecondTextSize), paint);

}

/**

  • 绘制最小值文本

  • @param canvas 画笔

  • @param leftX X轴位置

  • @param bottomY Y轴位置

*/

private void drawMinText(Canvas canvas, float leftX, float bottomY) {

Paint paint = new Paint();

paint.setAntiAlias(true);

paint.setColor(mMinTextColor);

paint.setTextAlign(Paint.Align.CENTER);//设置绘制方式 中心对齐

paint.setTextSize(mMinTextSize);

Rect bounds = new Rect();

paint.getTextBounds(mMinText, 0, mMinText.length(), bounds);//TextView的高度和宽度

canvas.drawText(mMinText, leftX + bounds.width() * 4, bottomY+16, paint);

}

/**

  • 绘制最大值文本

  • @param canvas 画笔

  • @param rightX X轴位置

  • @param bottomY Y轴位置

*/

private void drawMaxText(Canvas canvas, float rightX, float bottomY) {

Paint paint = new Paint();

paint.setAntiAlias(true);

paint.setColor(mMaxTextColor);

paint.setTextAlign(Paint.Align.CENTER);//设置绘制方式 中心对齐

paint.setTextSize(mMaxTextSize);

Rect bounds = new Rect();

paint.getTextBounds(mMaxText, 0, mMaxText.length(), bounds);//TextView的高度和宽度

canvas.drawText(mMaxText, rightX - bounds.width(), bottomY+16, paint);

}

/**

  • 设置最大的进度

  • @param progress

*/

public void setMaxProgress(int progress) {

if (progress < 0) {

throw new IllegalArgumentException("Progress value can not be less than 0 ");

}

mMaxProgress = progress;

}

/**

  • 设置当前进度

  • @param progress

*/

public void setProgress(float progress) {

if (progress < 0) {

throw new IllegalArgumentException(“Progress value can not be less than 0”);

}

if (progress > mMaxProgress) {

progress = mMaxProgress;

}

mCurrentProgress = progress;

float size = mCurrentProgress / mMaxProgress;

mCurrentAngleSize = (int) (mAngleSize * size);

setAnimator(0, mCurrentAngleSize);

}

/**

  • 设置进度圆弧的颜色

  • @param color

*/

public void setProgressColor(int color) {

if (color == 0) {

throw new IllegalArgumentException(“Color can no be 0”);

}

mProgressColor = color;

}

/**

  • 设置圆弧的颜色

  • @param color

*/

public void setArcBgColor(int color) {

if (color == 0) {

throw new IllegalArgumentException(“Color can no be 0”);

}

mArcBgColor = color;

}

/**

  • 设置圆弧的宽度

  • @param strokeWidth

*/

public void setStrokeWidth(int strokeWidth) {

if (strokeWidth < 0) {

throw new IllegalArgumentException(“strokeWidth value can not be less than 0”);

}

mStrokeWidth = dp2px(strokeWidth);

}

/**

  • 设置动画的执行时长

  • @param duration

*/

public void setAnimatorDuration(long duration) {

if (duration < 0) {

throw new IllegalArgumentException(“Duration value can not be less than 0”);

}

mDuration = duration;

}

/**

  • 设置第一行文本

  • @param text

*/

public void setFirstText(String text) {

mFirstText = text;

}

/**

  • 设置第一行文本的颜色

  • @param color

*/

public void setFirstTextColor(int color) {

if (color <= 0) {

throw new IllegalArgumentException(“Color value can not be less than 0”);

}

mFirstTextColor = color;

}

/**

  • 设置第一行文本的大小

  • @param textSize

*/

public void setFirstTextSize(float textSize) {

if (textSize <= 0) {

throw new IllegalArgumentException(“textSize can not be less than 0”);

}

mFirstTextSize = textSize;

}

/**

  • 设置第二行文本

  • @param text

*/

public void setSecondText(String text) {

mSecondText = text;

}

/**

  • 设置第二行文本的颜色

  • @param color

*/

public void setSecondTextColor(int color) {

if (color == 0) {

throw new IllegalArgumentException(“Color value can not be less than 0”);

}

mSecondTextColor = color;

}

/**

  • 设置第二行文本的大小

  • @param textSize

*/

public void setSecondTextSize(float textSize) {

if (textSize <= 0) {

throw new IllegalArgumentException(“textSize can not be less than 0”);

}

mSecondTextSize = textSize;

}

/**

  • 设置最小值文本

  • @param text

*/

public void setMinText(String text) {

mMinText = text;

}

/**

  • 设置最小值文本的颜色

  • @param color

*/

public void setMinTextColor(int color) {

if (color == 0) {

throw new IllegalArgumentException(“Color value can not be less than 0”);

}

mMinTextColor = color;

}

/**

  • 设置最小值文本的大小

  • @param textSize

*/

public void setMinTextSize(float textSize) {

if (textSize <= 0) {

throw new IllegalArgumentException(“textSize can not be less than 0”);

}

mMinTextSize = textSize;

}

/**

  • 设置最大值文本

  • @param text

*/

public void setMaxText(String text) {

mMaxText = text;

}

/**

  • 设置最大值文本的颜色

  • @param color

*/

public void setMaxTextColor(int color) {

if (color == 0) {

throw new IllegalArgumentException(“Color value can not be less than 0”);

}

mMaxTextColor = color;

}

/**

  • 设置最大值文本的大小

  • @param textSize

*/

public void setMaxTextSize(float textSize) {

if (textSize <= 0) {

throw new IllegalArgumentException(“textSize can not be less than 0”);

}

mMaxTextSize = textSize;

}

/**

  • 设置圆弧开始的角度

  • @param startAngle

*/

public void setStartAngle(int startAngle) {

mStartAngle = startAngle;

}

/**

  • 设置圆弧的起始角度到终点角度的大小

  • @param angleSize

*/

public void setAngleSize(int angleSize) {

mAngleSize = angleSize;

}

/**

  • dp转成px

  • @param dp

  • @return

*/

private int dp2px(float dp) {

float density = getResources().getDisplayMetrics().density;

return (int) (dp * density + 0.5f * (dp >= 0 ? 1 : -1));

}

/**

  • 设置动画

  • @param start 开始位置

  • @param target 结束位置

*/

private void setAnimator(float start, float target) {

ValueAnimator valueAnimator = ValueAnimator.ofFloat(start, target);

valueAnimator.setDuration(mDuration);

valueAnimator.setTarget(mCurrentAngleSize);

valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {

@Override

public void onAnimationUpdate(ValueAnimator valueAnimator) {

mCurrentAngleSize = (float) valueAnimator.getAnimatedValue();

invalidate();

}

});

valueAnimator.start();

}

/**

  • 测量字体的高度

  • @param textStr

  • @param fontSize

  • @return

*/

private float getFontHeight(String textStr, float fontSize) {

Paint paint = new Paint();

paint.setTextSize(fontSize);

Rect bounds = new Rect();

paint.getTextBounds(textStr, 0, textStr.length(), bounds);

return bounds.height();

}

}

空气污染指数划分为0-50、51-100、101-150、151-200、201-300和大于300六档。

最小值为0,最大值为500。

接下来修改main_activity.xml布局文件

在这里插入图片描述

在这里插入图片描述

然后是这一部分的代码,只要修改原来的代码即可

<View

android:layout_marginTop=“8dp”

android:layout_marginLeft=“20dp”

android:layout_marginRight=“20dp”

android:layout_width=“match_parent”

android:layout_height=“1dp”

android:background=“@color/white”

android:alpha=“0.1”/>

<androidx.recyclerview.widget.RecyclerView

android:padding=“12dp”

android:id=“@+id/rv_hourly”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”/>

<androidx.recyclerview.widget.RecyclerView

android:paddingLeft=“8dp”

android:paddingRight=“8dp”

android:id=“@+id/rv”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”/>

<LinearLayout

android:padding=“20dp”

android:orientation=“vertical”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:textSize=“18sp”

android:textColor=“@color/white”

android:text=“空气质量”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<LinearLayout

android:padding=“8dp”

android:orientation=“horizontal”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<LinearLayout

android:gravity=“center”

android:orientation=“vertical”

android:layout_width=“0dp”

android:layout_height=“match_parent”

android:layout_weight=“1”>

<TextView

android:layout_marginBottom=“8dp”

android:textSize=“14sp”

android:textColor=“#DAEBEE”

android:text=“污染指数”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<com.llw.mvplibrary.view.RoundProgressBar

android:id=“@+id/rpb_aqi”

app:round_bg_color=“#C6D7F4”

app:round_progress_color=“#FBFEF7”

android:layout_gravity=“center”

android:layout_width=“120dp”

android:layout_height=“120dp”/>

<LinearLayout

android:orientation=“vertical”

android:layout_width=“0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”>

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:gravity=“center”

android:textColor=“@color/blue_one”

android:text=“PM10”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“center”

android:id=“@+id/tv_pm10”

android:textColor=“@color/white”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<LinearLayout

android:layout_marginTop=“12dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:gravity=“center”

android:textColor=“@color/blue_one”

android:text=“PM2.5”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“center”

android:id=“@+id/tv_pm25”

android:textColor=“@color/white”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<LinearLayout

android:layout_marginTop=“12dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<LinearLayout

android:gravity=“center”

android:layout_width=“0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”>

<TextView

android:textColor=“@color/blue_one”

android:text=“NO”

android:textSize=“12sp”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:textColor=“@color/blue_one”

android:text=“2”

android:textSize=“8sp”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“center”

android:id=“@+id/tv_no2”

android:textColor=“@color/white”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<LinearLayout

android:layout_marginTop=“12dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<LinearLayout

android:gravity=“center”

android:layout_width=“0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”>

<TextView

android:textColor=“@color/blue_one”

android:text=“SO”

android:textSize=“12sp”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:textColor=“@color/blue_one”

android:text=“2”

android:textSize=“8sp”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“center”

android:id=“@+id/tv_so2”

android:textColor=“@color/white”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<LinearLayout

android:layout_marginTop=“12dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<LinearLayout

android:gravity=“center”

android:layout_width=“0dp”

android:layout_height=“wrap_content”

android:layout_weight=“1”>

<TextView

android:textColor=“@color/blue_one”

android:text=“O”

android:textSize=“12sp”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:textColor=“@color/blue_one”

android:text=“3”

android:textSize=“8sp”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“center”

android:id=“@+id/tv_o3”

android:textColor=“@color/white”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<LinearLayout

android:layout_marginTop=“12dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:gravity=“center”

android:textColor=“@color/blue_one”

android:text=“CO”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“center”

android:id=“@+id/tv_co”

android:textColor=“@color/white”

android:textSize=“12sp”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<LinearLayout

android:orientation=“vertical”

android:padding=“20dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:textSize=“18sp”

android:textColor=“@color/white”

android:text=“风向风力”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<LinearLayout

android:layout_marginTop=“8dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<RelativeLayout

android:id=“@+id/rl_wind”

android:layout_width=“130dp”

android:layout_height=“120dp”>

<com.llw.mvplibrary.view.WhiteWindmills

android:id=“@+id/ww_big”

android:layout_width=“100dp”

android:layout_height=“120dp” />

<com.llw.mvplibrary.view.WhiteWindmills

android:id=“@+id/ww_small”

android:layout_width=“50dp”

android:layout_height=“60dp”

android:layout_alignParentBottom=“true”

android:layout_alignParentRight=“true”

/>

<LinearLayout

android:gravity=“center”

android:orientation=“vertical”

android:layout_weight=“1”

android:layout_width=“0dp”

android:layout_height=“match_parent”>

<TextView

android:id=“@+id/tv_wind_direction”

android:textColor=“@color/white”

android:textSize=“@dimen/sp_14”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“20dp”

android:id=“@+id/tv_wind_power”

android:textColor=“@color/white”

android:textSize=“@dimen/sp_14”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

接下来在mvplibrary中的res文件下新建一个colors.xml

在这里插入图片描述

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

#C6D7F4

#FBFEF7

#ffffff

#000000

#9FC8E9

#00000000

#22000000

然后在MainActivity中

在这里插入图片描述

在这里插入图片描述

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
img
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
img

如果你进阶的路上缺乏方向,可以加入我们的圈子和安卓开发者们一起学习交流!

  • Android进阶学习全套手册

    img

  • Android对标阿里P7学习视频

    img

  • BATJ大厂Android高频面试题

    img

最后,借用我最喜欢的乔布斯语录,作为本文的结尾:

人这一辈子没法做太多的事情,所以每一件都要做得精彩绝伦。
你的时间有限,所以不要为别人而活。不要被教条所限,不要活在别人的观念里。不要让别人的意见左右自己内心的声音。
最重要的是,勇敢的去追随自己的心灵和直觉,只有自己的心灵和直觉才知道你自己的真实想法,其他一切都是次要。

一个人可以走的很快,但一群人才能走的更远。不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎扫码加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
img
s=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3FxXzM4NDM2MjE0,size_16,color_FFFFFF,t_70#pic_center)

在这里插入图片描述

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
[外链图片转存中…(img-uDdNXkWI-1712769326203)]
[外链图片转存中…(img-EPMPEX6W-1712769326203)]
[外链图片转存中…(img-5FvaNeww-1712769326204)]
[外链图片转存中…(img-mYYu2gvl-1712769326204)]
[外链图片转存中…(img-U8tH0Jpc-1712769326204)]
[外链图片转存中…(img-PkID93Is-1712769326205)]
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
[外链图片转存中…(img-U7egh5m5-1712769326205)]

如果你进阶的路上缺乏方向,可以加入我们的圈子和安卓开发者们一起学习交流!

  • Android进阶学习全套手册

    [外链图片转存中…(img-13NhztDW-1712769326206)]

  • Android对标阿里P7学习视频

    [外链图片转存中…(img-SiOKs5m2-1712769326206)]

  • BATJ大厂Android高频面试题

    [外链图片转存中…(img-QegczoMq-1712769326206)]

最后,借用我最喜欢的乔布斯语录,作为本文的结尾:

人这一辈子没法做太多的事情,所以每一件都要做得精彩绝伦。
你的时间有限,所以不要为别人而活。不要被教条所限,不要活在别人的观念里。不要让别人的意见左右自己内心的声音。
最重要的是,勇敢的去追随自己的心灵和直觉,只有自己的心灵和直觉才知道你自己的真实想法,其他一切都是次要。

一个人可以走的很快,但一群人才能走的更远。不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎扫码加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!
[外链图片转存中…(img-VYcGKgIH-1712769326206)]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值