2024年最全Android 天气APP(五)天气预报、生活指数的数据请求与渲染,2024年最新百度技术面试

最后

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

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

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

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

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

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

android:orientation=“horizontal”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:id=“@+id/tv_date”

android:text=“1234”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“center”

android:id=“@+id/tv_info”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

<TextView

android:gravity=“right”

android:id=“@+id/tv_low_and_height”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“0dp”

android:layout_weight=“1”

android:layout_height=“wrap_content”/>

接下来创建一个适配器

com.llw.goodweather下新建一个WeatherForecastAdapter适配器

在这里插入图片描述

代码如下:

package com.llw.goodweather.adapter;

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

import java.util.List;

/**

  • 天气预报列表展示适配器

*/

public class WeatherForecastAdapter extends BaseQuickAdapter<WeatherForecastResponse.HeWeather6Bean.DailyForecastBean, BaseViewHolder> {

public WeatherForecastAdapter(int layoutResId, @Nullable List<WeatherForecastResponse.HeWeather6Bean.DailyForecastBean> data) {

super(layoutResId, data);

}

@Override

protected void convert(BaseViewHolder helper, WeatherForecastResponse.HeWeather6Bean.DailyForecastBean item) {

helper.setText(R.id.tv_date, item.getDate())//日期

.setText(R.id.tv_info, item.getCond_txt_d())//天气

.setText(R.id.tv_low_and_height, item.getTmp_min() + “/” + item.getTmp_max() + “℃”);//最低温和最高温

}

}

④ 使用适配器进行数据展示

在MainActivity.java中增加

List<WeatherForecastResponse.HeWeather6Bean.DailyForecastBean> mList;//初始化数据源

WeatherForecastAdapter mAdapter;//初始化适配器

/**

  • 初始化天气预报数据列表

*/

private void initList() {

mList = new ArrayList<>();//声明为ArrayList

mAdapter = new WeatherForecastAdapter(R.layout.item_weather_forecast_list, mList);//为适配器设置布局和数据源

LinearLayoutManager manager = new LinearLayoutManager(context);//布局管理,默认是纵向

rv.setLayoutManager(manager);//为列表配置管理器

rv.setAdapter(mAdapter);//为列表配置适配器

}

然后在**initData()**方法中调用

在这里插入图片描述

在这里插入图片描述

返回值做处理

//查询天气预报,请求成功后的数据返回

@Override

public void getWeatherForecastResult(Response response) {

if ((“ok”).equals(response.body().getHeWeather6().get(0).getStatus())) {

//最低温和最高温

tvLowHeight.setText(response.body().getHeWeather6().get(0).getDaily_forecast().get(0).getTmp_min() + " / " +

response.body().getHeWeather6().get(0).getDaily_forecast().get(0).getTmp_max() + “℃”);

if (response.body().getHeWeather6().get(0).getDaily_forecast() != null) {

List<WeatherForecastResponse.HeWeather6Bean.DailyForecastBean> data

= response.body().getHeWeather6().get(0).getDaily_forecast();

mList.clear();//添加数据之前先清除

mList.addAll(data);//添加数据

mAdapter.notifyDataSetChanged();//刷新列表

} else {

ToastUtils.showShortToast(context, “天气预报数据为空”);

}

} else {

ToastUtils.showShortToast(context, response.body().getHeWeather6().get(0).getStatus());

}

}

运行

在这里插入图片描述

这样天气预报这个功能就完成了。

接下来是生活指数。

7. 生活指数


生活指数就是一些生活建议,实现的不走其实和天气预报差不太多,但是比天气预报要简单一些,因为不需要列表显示,文本即可。

① 新增API接口

根据和风天气中的文档,得知生活指数接口为:

https://free-api.heweather.net/s6/weather/lifestyle?key=3086e91d66c04ce588a7f538f917c7f4&location=福田区

在网页上访问得到返回值,生成一个实体

在这里插入图片描述

代码如下:

package com.llw.goodweather.bean;

import java.util.List;

public class LifeStyleResponse {

private List HeWeather6;

public List getHeWeather6() {

return HeWeather6;

}

public void setHeWeather6(List HeWeather6) {

this.HeWeather6 = HeWeather6;

}

public static class HeWeather6Bean {

/**

  • basic : {“cid”:“CN101280603”,“location”:“福田”,“parent_city”:“深圳”,“admin_area”:“广东”,“cnty”:“中国”,“lat”:“22.5410099”,“lon”:“114.05095673”,“tz”:“+8.00”}

  • update : {“loc”:“2019-11-23 09:55”,“utc”:“2019-11-23 01:55”}

  • status : ok

  • lifestyle : [{“type”:“comf”,“brf”:“舒适”,“txt”:“白天不太热也不太冷,风力不大,相信您在这样的天气条件下,应会感到比较清爽和舒适。”},{“type”:“drsg”,“brf”:“热”,“txt”:“天气热,建议着短裙、短裤、短薄外套、T恤等夏季服装。”},{“type”:“flu”,“brf”:“少发”,“txt”:“各项气象条件适宜,无明显降温过程,发生感冒机率较低。”},{“type”:“sport”,“brf”:“适宜”,“txt”:“天气较好,赶快投身大自然参与户外运动,尽情感受运动的快乐吧。”},{“type”:“trav”,“brf”:“适宜”,“txt”:“天气较好,温度适宜,是个好天气哦。这样的天气适宜旅游,您可以尽情地享受大自然的风光。”},{“type”:“uv”,“brf”:“强”,“txt”:“紫外线辐射强,建议涂擦SPF20左右、PA++的防晒护肤品。避免在10点至14点暴露于日光下。”},{“type”:“cw”,“brf”:“适宜”,“txt”:“适宜洗车,未来持续两天无雨天气较好,适合擦洗汽车,蓝天白云、风和日丽将伴您的车子连日洁净。”},{“type”:“air”,“brf”:“中”,“txt”:“气象条件对空气污染物稀释、扩散和清除无明显影响。”}]

*/

private BasicBean basic;

private UpdateBean update;

private String status;

private List lifestyle;

public BasicBean getBasic() {

return basic;

}

public void setBasic(BasicBean basic) {

this.basic = basic;

}

public UpdateBean getUpdate() {

return update;

}

public void setUpdate(UpdateBean update) {

this.update = update;

}

public String getStatus() {

return status;

}

public void setStatus(String status) {

this.status = status;

}

public List getLifestyle() {

return lifestyle;

}

public void setLifestyle(List lifestyle) {

this.lifestyle = lifestyle;

}

public static class BasicBean {

/**

  • cid : CN101280603

  • location : 福田

  • parent_city : 深圳

  • admin_area : 广东

  • cnty : 中国

  • lat : 22.5410099

  • lon : 114.05095673

  • tz : +8.00

*/

private String cid;

private String location;

private String parent_city;

private String admin_area;

private String cnty;

private String lat;

private String lon;

private String tz;

public String getCid() {

return cid;

}

public void setCid(String cid) {

this.cid = cid;

}

public String getLocation() {

return location;

}

public void setLocation(String location) {

this.location = location;

}

public String getParent_city() {

return parent_city;

}

public void setParent_city(String parent_city) {

this.parent_city = parent_city;

}

public String getAdmin_area() {

return admin_area;

}

public void setAdmin_area(String admin_area) {

this.admin_area = admin_area;

}

public String getCnty() {

return cnty;

}

public void setCnty(String cnty) {

this.cnty = cnty;

}

public String getLat() {

return lat;

}

public void setLat(String lat) {

this.lat = lat;

}

public String getLon() {

return lon;

}

public void setLon(String lon) {

this.lon = lon;

}

public String getTz() {

return tz;

}

public void setTz(String tz) {

this.tz = tz;

}

}

public static class UpdateBean {

/**

  • loc : 2019-11-23 09:55

  • utc : 2019-11-23 01:55

*/

private String loc;

private String utc;

public String getLoc() {

return loc;

}

public void setLoc(String loc) {

this.loc = loc;

}

public String getUtc() {

return utc;

}

public void setUtc(String utc) {

this.utc = utc;

}

}

public static class LifestyleBean {

/**

  • type : comf

  • brf : 舒适

  • txt : 白天不太热也不太冷,风力不大,相信您在这样的天气条件下,应会感到比较清爽和舒适。

*/

private String type;

private String brf;

private String txt;

public String getType() {

return type;

}

public void setType(String type) {

this.type = type;

}

public String getBrf() {

return brf;

}

public void setBrf(String brf) {

this.brf = brf;

}

public String getTxt() {

return txt;

}

public void setTxt(String txt) {

this.txt = txt;

}

}

}

}

在ApiService中增加

在这里插入图片描述

代码如下:

/**

  • 生活指数

*/

@GET(“/s6/weather/lifestyle?key=3086e91d66c04ce588a7f538f917c7f4”)

Call getLifestyle(@Query(“location”) String location);

记得将key的值修改为自己的Key

② 修改订阅器

WeatherContract新增生活指数订阅

在这里插入图片描述

在这里插入图片描述

/**

  • 生活指数

  • @param context

  • @param location

*/

public void lifeStyle(final Context context,String location){

ApiService service = ServiceGenerator.createService(ApiService.class);

service.getLifestyle(location).enqueue(new NetCallBack() {

@Override

public void onSuccess(Call call, Response response) {

if(getView() != null){

getView().getLifeStyleResult(response);

}

}

@Override

public void onFailed() {

if(getView() != null){

getView().getDataFailed();

}

}

});

}

//查询生活指数的数据返回

void getLifeStyleResult(Response response);

③ 修改布局

这次要展示的数据会比较多,所以布局的整体要用NestedScrollView包裹起来,变成一个·可以上下滑动的布局,布局修改后的代码如下(PS:为了不出现问题,这里我贴上全部的布局代码):

<?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”

xmlns:tools=“http://schemas.android.com/tools”

android:gravity=“center”

android:fitsSystemWindows=“true”

android:background=“@drawable/pic_bg”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

tools:context=“.MainActivity”>

<RelativeLayout

android:layout_width=“match_parent”

android:layout_height=“match_parent”>

<LinearLayout

android:background=“#000”

android:alpha=“0.3”

android:layout_width=“match_parent”

android:layout_height=“match_parent”/>

<LinearLayout

android:orientation=“vertical”

android:layout_width=“match_parent”

android:layout_height=“match_parent”>

<androidx.appcompat.widget.Toolbar

android:id=“@+id/toolbar”

android:layout_width=“match_parent”

android:layout_height=“?attr/actionBarSize”

app:contentInsetLeft=“16dp”

app:popupTheme=“@style/AppTheme.PopupOverlay”>

<TextView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_gravity=“center”

android:textSize=“16sp”

android:textColor=“#FFF”

android:text=“城市天气” />

</androidx.appcompat.widget.Toolbar>

<androidx.core.widget.NestedScrollView

android:overScrollMode=“never”

android:layout_width=“match_parent”

android:layout_height=“match_parent”>

<LinearLayout

android:gravity=“center_horizontal”

android:orientation=“vertical”

android:layout_width=“match_parent”

android:layout_height=“match_parent”>

<TextView

android:paddingLeft=“16dp”

android:paddingTop=“12dp”

android:id=“@+id/tv_info”

android:textColor=“#FFF”

android:textSize=“18sp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”/>

<LinearLayout

android:gravity=“top|center_horizontal”

android:layout_marginTop=“20dp”

android:orientation=“horizontal”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:id=“@+id/tv_temperature”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:text=“0”

android:textColor=“#FFF”

android:textSize=“60sp” />

<TextView

android:layout_width=“wrap_content”

android:layout_height=“match_parent”

android:text=“℃”

android:textColor=“#FFF”

android:textSize=“24sp” />

<TextView

android:layout_marginTop=“12dp”

android:id=“@+id/tv_low_height”

android:textColor=“#FFF”

android:textSize=“@dimen/sp_14”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“20dp”

android:id=“@+id/tv_city”

android:textColor=“#FFF”

android:text=“城市”

android:textSize=“20sp”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“8dp”

android:id=“@+id/tv_old_time”

android:textColor=“#FFF”

android:text=“上次更新时间:”

android:textSize=“@dimen/sp_12”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<androidx.recyclerview.widget.RecyclerView

android:layout_marginTop=“20dp”

android:id=“@+id/rv”

android:layout_width=“match_parent”

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=“#FFF”

android:text=“生活建议”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“16dp”

android:id=“@+id/tv_comf”

android:text=“舒适度:”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“16dp”

android:id=“@+id/tv_trav”

android:text=“旅游指数:”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“16dp”

android:id=“@+id/tv_sport”

android:text=“运动指数:”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“16dp”

android:id=“@+id/tv_cw”

android:text=“洗车指数:”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“16dp”

android:id=“@+id/tv_air”

android:text=“空气指数:”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“16dp”

android:id=“@+id/tv_drsg”

android:text=“穿衣指数:”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

<TextView

android:layout_marginTop=“16dp”

android:id=“@+id/tv_flu”

android:text=“感冒指数:”

android:textSize=“@dimen/sp_14”

android:textColor=“#FFF”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”/>

</androidx.core.widget.NestedScrollView>

注释已经在代码中写好了,相信你看了就明白了。接下来就是数据返回的处理,和页面数据渲染显示。

④ 数据渲染显示

在这里插入图片描述

由于返回的数据可能会为空,为了使返回数据为空的时候程序不报错,这里要做判断,在模块的utils包下写一个工具类。

在这里插入图片描述

工具类代码如下:

package com.llw.mvplibrary.utils;

import android.os.Build;

import android.util.SparseArray;

import android.util.SparseBooleanArray;

import android.util.SparseIntArray;

import android.util.SparseLongArray;

import androidx.annotation.RequiresApi;

import androidx.collection.LongSparseArray;

import androidx.collection.SimpleArrayMap;

import java.lang.reflect.Array;

import java.util.Collection;

import java.util.Map;

/**

  • 空判断工具类

*/

public final class ObjectUtils {

private ObjectUtils() {

throw new UnsupportedOperationException(“u can’t instantiate me…”);

}

/**

  • Return whether object is empty.

  • @param obj The object.

  • @return {@code true}: yes
    {@code false}: no

*/

public static boolean isEmpty(final Object obj) {

if (obj == null) {

return true;

}

if (obj.getClass().isArray() && Array.getLength(obj) == 0) {

return true;

}

if (obj instanceof CharSequence && obj.toString().length() == 0) {

return true;

}

if (obj instanceof Collection && ((Collection) obj).isEmpty()) {

return true;

}

if (obj instanceof Map && ((Map) obj).isEmpty()) {

return true;

}

if (obj instanceof SimpleArrayMap && ((SimpleArrayMap) obj).isEmpty()) {

return true;

}

if (obj instanceof SparseArray && ((SparseArray) obj).size() == 0) {

return true;

}

if (obj instanceof SparseBooleanArray && ((SparseBooleanArray) obj).size() == 0) {

return true;

}

if (obj instanceof SparseIntArray && ((SparseIntArray) obj).size() == 0) {

return true;

}

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {

if (obj instanceof SparseLongArray && ((SparseLongArray) obj).size() == 0) {

return true;

}

}

if (obj instanceof LongSparseArray && ((LongSparseArray) obj).size() == 0) {

return true;

}

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {

if (obj instanceof android.util.LongSparseArray

&& ((android.util.LongSparseArray) obj).size() == 0) {

return true;

}

}

return false;

}

public static boolean isEmpty(final CharSequence obj) {

return obj == null || obj.toString().length() == 0;

}

public static boolean isEmpty(final Collection obj) {

return obj == null || obj.isEmpty();

}

public static boolean isEmpty(final Map obj) {

return obj == null || obj.isEmpty();

}

public static boolean isEmpty(final SimpleArrayMap obj) {

return obj == null || obj.isEmpty();

}

public static boolean isEmpty(final SparseArray obj) {

return obj == null || obj.size() == 0;

}

public static boolean isEmpty(final SparseBooleanArray obj) {

return obj == null || obj.size() == 0;

}

public static boolean isEmpty(final SparseIntArray obj) {

return obj == null || obj.size() == 0;

}

public static boolean isEmpty(final LongSparseArray obj) {

return obj == null || obj.size() == 0;

}

@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN_MR2)

public static boolean isEmpty(final SparseLongArray obj) {

return obj == null || obj.size() == 0;

}

@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)

public static boolean isEmpty(final android.util.LongSparseArray obj) {

return obj == null || obj.size() == 0;

}

/**

  • Return whether object is not empty.

  • @param obj The object.

  • @return {@code true}: yes
    {@code false}: no

*/

public static boolean isNotEmpty(final Object obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final CharSequence obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final Collection obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final Map obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final SimpleArrayMap obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final SparseArray obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final SparseBooleanArray obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final SparseIntArray obj) {

return !isEmpty(obj);

}

public static boolean isNotEmpty(final LongSparseArray obj) {

return !isEmpty(obj);

}

@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN_MR2)

public static boolean isNotEmpty(final SparseLongArray obj) {

return !isEmpty(obj);

}

@RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)

public static boolean isNotEmpty(final android.util.LongSparseArray obj) {

return !isEmpty(obj);

}

/**

  • Return whether object1 is equals to object2.

  • @param o1 The first object.

  • @param o2 The second object.

  • @return {@code true}: yes
    {@code false}: no

*/

public static boolean equals(final Object o1, final Object o2) {

return o1 == o2 || (o1 != null && o1.equals(o2));

}

/**

  • Require the objects are not null.

  • @param objects The object.

  • @throws NullPointerException if any object is null in objects

*/

public static void requireNonNull(final Object… objects) {

if (objects == null) throw new NullPointerException();

for (Object object : objects) {

if (object == null) throw new NullPointerException();

}

}

/**

  • Return the nonnull object or default object.

  • @param object The object.

  • @param defaultObject The default object to use with the object is null.

  • @param The value type.

  • @return the nonnull object or default object

*/

public static T getOrDefault(final T object, final T defaultObject) {

if (object == null) {

return defaultObject;

}

return object;

}

/**

  • Return the hash code of object.

  • @param o The object.

  • @return the hash code of object

*/

public static int hashCode(final Object o) {

return o != null ? o.hashCode() : 0;

}

}

接下来调用方法请求生活指数

在这里插入图片描述

请求返回数据做处理:

//查询生活指数,请求成功后的数据返回

@Override

public void getLifeStyleResult(Response response) {

if((“ok”).equals(response.body().getHeWeather6().get(0).getStatus())){

List<LifeStyleResponse.HeWeather6Bean.LifestyleBean> data = response.body().getHeWeather6().get(0).getLifestyle();

if(!ObjectUtils.isEmpty(data)){

for (int i = 0;i<data.size();i++){

if((“comf”).equals(data.get(i).getType())){

tvComf.setText(“舒适度:”+data.get(i).getTxt());

}else if((“drsg”).equals(data.get(i).getType())){

tvDrsg.setText(“穿衣指数:”+data.get(i).getTxt());

}else if((“flu”).equals(data.get(i).getType())){

tvFlu.setText(“感冒指数:”+data.get(i).getTxt());

}else if((“sport”).equals(data.get(i).getType())){

tvSport.setText(“运动指数:”+data.get(i).getTxt());

}else if((“trav”).equals(data.get(i).getType())){

tvTrav.setText(“旅游指数:”+data.get(i).getTxt());

}else if((“cw”).equals(data.get(i).getType())){

tvCw.setText(“洗车指数:”+data.get(i).getTxt());

最后

给大家分享一份移动架构大纲,包含了移动架构师需要掌握的所有的技术体系,大家可以对比一下自己不足或者欠缺的地方有方向的去学习提升;

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

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

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

object.

  • @param o The object.

  • @return the hash code of object

*/

public static int hashCode(final Object o) {

return o != null ? o.hashCode() : 0;

}

}

接下来调用方法请求生活指数

在这里插入图片描述

请求返回数据做处理:

//查询生活指数,请求成功后的数据返回

@Override

public void getLifeStyleResult(Response response) {

if((“ok”).equals(response.body().getHeWeather6().get(0).getStatus())){

List<LifeStyleResponse.HeWeather6Bean.LifestyleBean> data = response.body().getHeWeather6().get(0).getLifestyle();

if(!ObjectUtils.isEmpty(data)){

for (int i = 0;i<data.size();i++){

if((“comf”).equals(data.get(i).getType())){

tvComf.setText(“舒适度:”+data.get(i).getTxt());

}else if((“drsg”).equals(data.get(i).getType())){

tvDrsg.setText(“穿衣指数:”+data.get(i).getTxt());

}else if((“flu”).equals(data.get(i).getType())){

tvFlu.setText(“感冒指数:”+data.get(i).getTxt());

}else if((“sport”).equals(data.get(i).getType())){

tvSport.setText(“运动指数:”+data.get(i).getTxt());

}else if((“trav”).equals(data.get(i).getType())){

tvTrav.setText(“旅游指数:”+data.get(i).getTxt());

}else if((“cw”).equals(data.get(i).getType())){

tvCw.setText(“洗车指数:”+data.get(i).getTxt());

最后

给大家分享一份移动架构大纲,包含了移动架构师需要掌握的所有的技术体系,大家可以对比一下自己不足或者欠缺的地方有方向的去学习提升;

[外链图片转存中…(img-lDjIAAM2-1715878563544)]

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

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值