2024年安卓最全Android 天气APP(十七)热门城市 - 国内城市(2),2024年最新Android性能优化面试题集锦

最后

其实Android开发的知识点就那么多,面试问来问去还是那么点东西。所以面试没有其他的诀窍,只看你对这些知识点准备的充分程度。so,出去面试时先看看自己复习到了哪个阶段就好。

下面分享的腾讯、头条、阿里、美团、字节跳动等公司2019-2021年的高频面试题全套解析,博主还把这些技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,下面只是以图片的形式给大家展示一部分。

image

知识不体系?这里还有整理出来的Android进阶学习的思维脑图,给大家参考一个方向。

image

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

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

android:id=“@+id/rv”

android:layout_width=“match_parent”

android:layout_height=“match_parent”/>

修改的布局有什么变化呢?就是里面的布局增加了id,还有就是改了颜色,

之后在HotCityActivity中初始化

在这里插入图片描述

上图中标出来的就是新增的,然后创建一个显示弹窗的方法

/**

  • 显示选择类型弹窗

*/

private void showTypeWindow() {

liWindow = new LiWindow(context);

final View view = LayoutInflater.from(context).inflate(R.layout.window_hot_type, null);

TextView tvInland = view.findViewById(R.id.tv_inland);//国内

TextView tvForeign = view.findViewById(R.id.tv_foreign);//海外

tvInland.setOnClickListener(v -> {

type = 0;

initList(type);

showLoadingDialog();

mPresent.hotCity(context, “cn”);

liWindow.closePopupWindow();

});

tvForeign.setOnClickListener(v -> {

type = 1;

initList(type);

showLoadingDialog();

mPresent.hotCity(context, “overseas”);

liWindow.closePopupWindow();

});

liWindow.showCenterPopupWindow(view, SizeUtils.dp2px(context, 280), SizeUtils.dp2px(context, 120), false);

}

因为是要在页面启动的时候就出现这个弹窗,而popupWindow显示依赖activity,并且要等activity所有的生命周期方法全部执行完成才能显示,所以这里新开一个线程用于显示

在这里插入图片描述

④ 修改列表item布局

弹窗搞定之后就可以改动热门城市的列表item布局了,首先增加一个颜色

在这里插入图片描述

在这里插入图片描述

item_hot_city_list.xml布局完整代码如下:

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

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:app=“http://schemas.android.com/apk/res-auto”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:orientation=“vertical”>

<androidx.cardview.widget.CardView

android:id=“@+id/item_hot_city”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_margin=“@dimen/dp_6”

android:foreground=“@drawable/bg_white”

app:cardBackgroundColor=“@color/white”

app:cardCornerRadius=“@dimen/dp_8”

app:cardElevation=“@dimen/dp_4”>

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:gravity=“center_vertical”

android:orientation=“horizontal”>

<ImageView

android:id=“@+id/iv_mark”

android:layout_width=“@dimen/dp_80”

android:layout_height=“@dimen/dp_80”

android:background=“@drawable/shape_orange_8”

android:gravity=“center”

android:padding=“@dimen/dp_20”

android:src=“@mipmap/icon_hot_city” />

<LinearLayout

android:layout_width=“0dp”

android:layout_height=“match_parent”

android:layout_weight=“1”

android:gravity=“center_vertical”

android:orientation=“vertical”

android:paddingLeft=“@dimen/dp_16”>

<TextView

android:id=“@+id/tv_hot_city_name”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:text=“巴黎”

android:textColor=“@color/black_3”

android:textSize=“@dimen/sp_16”

android:textStyle=“bold” />

<TextView

android:id=“@+id/tv_cnty_and_area”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginTop=“@dimen/dp_8”

android:text=“巴黎”

android:textColor=“@color/gray”

android:textSize=“@dimen/sp_14”

android:textStyle=“bold” />

<ImageView

android:id=“@+id/iv_open”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginRight=“@dimen/dp_12”

android:src=“@mipmap/icon_open_orange” />

</androidx.cardview.widget.CardView>

图标也是要修改的

在这里插入图片描述

因为是白色的你看不见很正常,你把页面的主题改成黑色就可以看到了。

icon_hot_city_china.ping

在这里插入图片描述

icon_open_blue.png

在这里插入图片描述

⑤ 修改列表适配器

修改HotCityAdapter

package com.llw.goodweather.adapter;

import android.widget.ImageView;

import androidx.annotation.Nullable;

import com.chad.library.adapter.base.BaseQuickAdapter;

import com.chad.library.adapter.base.BaseViewHolder;

import com.llw.goodweather.R;

import com.llw.goodweather.bean.HotCityResponse;

import java.util.ArrayList;

import java.util.List;

/**

  • 热门城市列表适配器

*/

public class HotCityAdapter extends BaseQuickAdapter<HotCityResponse.HeWeather6Bean.BasicBean, BaseViewHolder> {

private int mType;

// 增加一个item样式类型,在Activity中传入

public HotCityAdapter(int layoutResId, @Nullable List<HotCityResponse.HeWeather6Bean.BasicBean> data,int type) {

super(layoutResId, data);

this.mType = type;

}

@Override

protected void convert(BaseViewHolder helper, HotCityResponse.HeWeather6Bean.BasicBean item) {

ImageView ivMark = helper.getView(R.id.iv_mark);

ImageView ivOpen = helper.getView(R.id.iv_open);

if (mType == 0) {//国内

ivMark.setBackground(mContext.getResources().getDrawable(R.drawable.shape_blue_8));//背景

ivMark.setImageDrawable(mContext.getDrawable(R.mipmap.icon_hot_city_china));//图标

ivOpen.setImageDrawable(mContext.getDrawable(R.mipmap.icon_open_blue));//图标

} else {//国外

ivMark.setBackground(mContext.getResources().getDrawable(R.drawable.shape_orange_8));//背景

ivMark.setImageDrawable(mContext.getDrawable(R.mipmap.icon_hot_city));//图标

ivOpen.setImageDrawable(mContext.getDrawable(R.mipmap.icon_open_orange));//图标

}

helper.setText(R.id.tv_hot_city_name,item.getLocation())

.setText(R.id.tv_cnty_and_area,item.getCnty()+" —— "+item.getAdmin_area());

helper.addOnClickListener(R.id.item_hot_city);

}

}

⑥ 样式调整

然后回到HotCityActivity中首先是在initList方法中增加一个入参

在这里插入图片描述

这样传入的类型就会影响到适配器中的样式了,最后一步就是在getHotCityResult方法中对返回值中做数据的处理了。

在这里插入图片描述

新增部分的代码如下:

toolbar.setNavigationIcon(getResources().getDrawable(R.mipmap.icon_return_white));//返回箭头颜色

tvTitle.setTextColor(getResources().getColor(R.color.white));//标题颜色

最后

在这里我和身边一些朋友特意整理了一份快速进阶为Android高级工程师的系统且全面的学习资料。涵盖了Android初级——Android高级架构师进阶必备的一些学习技能。

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

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

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

架构师进阶必备的一些学习技能。**

附上:我们之前因为秋招收集的二十套一二线互联网公司Android面试真题(含BAT、小米、华为、美团、滴滴)和我自己整理Android复习笔记(包含Android基础知识点、Android扩展知识点、Android源码解析、设计模式汇总、Gradle知识点、常见算法题汇总。)
[外链图片转存中…(img-FRPevsaz-1714991532181)]

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化学习资料的朋友,可以戳这里获取

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

  • 15
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值