我正在参加「启航方案」
运转作用图
前语
说实话也蛮久没有更新这个气候APP了,原因主要是没有什么好的更新的要素和新的功能。当这两者都具备时才有了这一篇文章。首先是和风气候更新的新的分钟级降水API,这个是能够提供给开发者免费调用的。话不多说了,进入正文。
正文
平时作业之余有空我就会去看看博客和GitHub上有没有问题,也会去看看和风气候API的数据拜访量,由于我知道有许多开发者也会直接运转我的代码或者是安装APK去运用。
这个是会依据API Key来记载恳求次数的。然后我就看到了和风偷偷地更新了一个分钟级降水API,应该便是近段时刻更新的,这个说实话做的不可地道,你已然更新了新的API那么应该告知平台的开发者,让他们去运用,趁便给你们找出问题。两全其美,好了,我的废话现已许多了。下面进入正文。
一、新增分钟级降水API
这个分钟级降水的API测验地址如下:
https://devapi.qweather.com/v7/minutely/5m?location=113.92942,22.53122&key=d4a619bfe3244190bfa84bb468c14316
随意用一个浏览器翻开你就会看到这样的回来数据,如下图所示。 这个API和其他的API略有不同,需求运用经纬度作为恳求参数,而且经度和纬度的值用英文逗号分隔开,经度在前,纬度在后,假如你不依照这个办法来的话,就会呈现报错400、403之类的。key就没有什么好说的了,就用自己的就能够了。
下面先经过这个回来值生成一个数据实体Bean再说。
在bean包下新建一个MinutePrecResponse类,里面的代码如下
package com.llw.goodweather.bean;
import java.util.List;
/**
* 分钟级降水 V7
* @author llw
*/
public class MinutePrecResponse {
/**
* code : 200
* updateTime : 2020-12-02T10:00+08:00
* fxLink : http://hfx.link/1
* summary : 未来两小时无降水
* minutely : [{"fxTime":"2020-12-02T10:00+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:05+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:10+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:15+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:20+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:25+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:30+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:35+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:40+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:45+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:50+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T10:55+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:00+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:05+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:10+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:15+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:20+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:25+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:30+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:35+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:40+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:45+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:50+08:00","precip":"0.0","type":"rain"},{"fxTime":"2020-12-02T11:55+08:00","precip":"0.0","type":"rain"}]
* refer : {"sources":["Weather China"],"license":["no commercial use"]}
*/
private String code;
private String updateTime;
private String fxLink;
private String summary;
private ReferBean refer;
private List<MinutelyBean> minutely;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getUpdateTime() {
return updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getFxLink() {
return fxLink;
}
public void setFxLink(String fxLink) {
this.fxLink = fxLink;
}
public String getSummary() {
return summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public ReferBean getRefer() {
return refer;
}
public void setRefer(ReferBean refer) {
this.refer = refer;
}
public List<MinutelyBean> getMinutely() {
return minutely;
}
public void setMinutely(List<MinutelyBean> minutely) {
this.minutely = minutely;
}
public static class ReferBean {
private List<String> sources;
private List<String> license;
public List<String> getSources() {
return sources;
}
public void setSources(List<String> sources) {
this.sources = sources;
}
public List<String> getLicense() {
return license;
}
public void setLicense(List<String> license) {
this.license = license;
}
}
public static class MinutelyBean {
/**
* fxTime : 2020-12-02T10:00+08:00
* precip : 0.0
* type : rain
*/
private String fxTime;
private String precip;
private String type;
public String getFxTime() {
return fxTime;
}
public void setFxTime(String fxTime) {
this.fxTime = fxTime;
}
public String getPrecip() {
return precip;
}
public void setPrecip(String precip) {
this.precip = precip;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
}
然后进入到ApiService中,准备添加API接口,这时我发现了一个问题,那便是和风的恳求地址都变了 我记得这儿之前是heweather。为什么现在改成了qweather。吓得我赶忙去运转一手,看我本来的地址还能不能拜访,好在虚惊一场,本来的地址还能够拜访,那么和风为什么要改恳求地址呢。难道本来的地址会转到这个新的地址吗?我的猜测目前是这样的。
翻开ServiceGenerator,而我要改动的也就只有这两处罢了。 改成qweather即可。改完之后我运转了一下和之前也没有什么区别,看来这次的更新是很有必要的。不然到时分之前地址拜访不了,必定许多问题会呈现的,估计要被叼。
下面在ApiService中添加新的接口。
/**
* 分钟级降水 最近两小时内
*
* @param location 经纬度拼接字符串,运用英文逗号分隔,经度在前纬度在后
* @return
*/
@GET("/v7/minutely/5m?key=" + API_KEY)
Call<MinutePrecResponse> getMinutePrec(@Query("location") String location);
二、修正布局
从上面的API得知想要获取数据,就必须拿到经纬度。而获取经纬度有两种办法:① 经过百度定位获取。② 经过和风气候的城市查找获取。
这儿我们运用第二种办法来获取经纬度,那么便是在查找城市的回来值中拿到经纬度之后去恳求分钟级降水的的接口,获取数据之后显现出来。因此我这儿先改动一下activity_main.xml。
添加的布局代码如下:
<!--分钟级降水-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:paddingLeft="20dp"
android:paddingRight="20dp">
<TextView
android:id="@+id/tv_precipitation"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:drawableLeft="@mipmap/icon_weather_prec"
android:drawablePadding="4dp"
android:text="降水预告"
android:textColor="@color/white"
android:textSize="@dimen/sp_12" />
<!--检查更多降水信息-->
<TextView
android:gravity="center_vertical"
android:id="@+id/tv_prec_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="检查概况"
android:drawableRight="@mipmap/icon_more_blue_small"
android:textColor="@color/blue_more"
android:textSize="@dimen/sp_12" />
</LinearLayout>
<!--降水概况列表-->
<androidx.recyclerview.widget.RecyclerView
android:visibility="gone"
android:paddingTop="@dimen/dp_8"
android:id="@+id/rv_prec_detail"
android:paddingLeft="@dimen/dp_12"
android:paddingRight="@dimen/dp_12"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<!--分隔线 添加UI作用-->
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="8dp"
android:layout_marginRight="20dp"
android:alpha="0.1"
android:background="@color/white" />
添加方位如下图所示 那么已然有列表自然也要有item了。所以在layout新建一个item_prec_detail_list.xml布局,里面的代码如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:paddingLeft="@dimen/dp_8"
android:paddingRight="@dimen/dp_8"
android:orientation="vertical">
<!--时刻-->
<TextView
android:id="@+id/tv_time"
android:layout_marginTop="@dimen/dp_8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上午10:00"
android:textColor="#FFF"
android:textSize="@dimen/sp_12" />
<TextView
android:id="@+id/tv_precip_info"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/dp_8"
android:layout_marginBottom="@dimen/dp_8"
android:gravity="center"
android:text="0.1 雨"
android:textColor="#FFF"
android:textSize="@dimen/sp_12" />
</LinearLayout>
显现的地方有了下面便是要去MainActivity中完结详细的事务逻辑了。不过在此之前还需求添加一个办法。内容很简单,由于我之后要运用GridLayoutManager,一起也要让RecyclerView横向翻滚,因此我设置高度为占满父布局高度。
三、添加适配器
有布局了,然后便是写列表的适配器了,不然数据怎么填充进去呢?在adapter包下新建一个MinutePrecAdapter,里面的代码如下:
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.MinutePrecResponse;
import com.llw.goodweather.utils.DateUtils;
import com.llw.goodweather.utils.WeatherUtil;
import java.util.List;
/**
* 分钟级降水列表适配器
* @author llw
*/
public class MinutePrecAdapter extends BaseQuickAdapter<MinutePrecResponse.MinutelyBean, BaseViewHolder> {
public MinutePrecAdapter(int layoutResId, @Nullable List<MinutePrecResponse.MinutelyBean> data) {
super(layoutResId, data);
}
@Override
protected void convert(BaseViewHolder helper, MinutePrecResponse.MinutelyBean item) {
String time = DateUtils.updateTime(item.getFxTime());
//时刻
helper.setText(R.id.tv_time, WeatherUtil.showTimeInfo(time) + time);
String type = null;
if("rain".equals(item.getType())){
type = "雨";
}else if("snow".equals(item.getType())){
type = "雪";
}
helper.setText(R.id.tv_precip_info,item.getPrecip()+" "+type);
}
}
四、添加网络恳求与回调
现在布局和准备作业都做好了,然后进入WeatherContract,写一个恳求接口的办法和回调,在里面添加如下代码
/**
* 分钟级降水
*
* @param location 经纬度拼接字符串,运用英文逗号分隔,经度在前纬度在后
*/
public void getMinutePrec(String location) {
ApiService service = ServiceGenerator.createService(ApiService.class, 3);
service.getMinutePrec(location).enqueue(new NetCallBack<MinutePrecResponse>() {
@Override
public void onSuccess(Call<MinutePrecResponse> call, Response<MinutePrecResponse> response) {
if (getView() != null) {
getView().getMinutePrecResult(response);
}
}
@Override
public void onFailed() {
if (getView() != null) {
getView().getWeatherDataFailed();
}
}
});
}
回来的办法
//分钟级降水
void getMinutePrecResult(Response<MinutePrecResponse> response);
添加的方位如下图所示
五、控件初始化、数据恳求和回来
然后回到MainActivty,你会发现有报错,先不必管它,先初始化一些数据和类。
@BindView(R.id.tv_precipitation)
TextView tvPrecipitation;//降水预告
@BindView(R.id.tv_prec_more)
TextView tvPrecMore;//降水概况
@BindView(R.id.rv_prec_detail)
RecyclerView rvPrecDetail;//分钟级降水列表
经过butterknife绑定控件,然后
private List<MinutePrecResponse.MinutelyBean> minutelyList = new ArrayList<>();//分钟级降水数据列表
private MinutePrecAdapter mAdapterMinutePrec;//分钟级降水适配器
private boolean state = false;//分钟级降水数据 缩短状态 false 缩短 true 打开
然后在initList办法中,对方才界说的变量进行实例化。
//分钟级降水
mAdapterMinutePrec = new MinutePrecAdapter(R.layout.item_prec_detail_list,minutelyList);
GridLayoutManager managerMinutePrec = new GridLayoutManager(context,2);
managerMinutePrec.setOrientation(RecyclerView.HORIZONTAL);
rvPrecDetail.setLayoutManager(managerMinutePrec);
rvPrecDetail.setAdapter(mAdapterMinutePrec);
添加方位如下图所示 最后便是在接口回来中进行数据赋值了。
重写getMinutePrecResult办法。
/**
* 分钟级降水回来
* @param response
*/
@Override
public void getMinutePrecResult(Response<MinutePrecResponse> response) {
dismissLoadingDialog();//关闭加载弹窗
checkAppVersion();//检查版本信息
if(response.body().getCode().equals(Constant.SUCCESS_CODE)) {
tvPrecipitation.setText(response.body().getSummary());
if(response.body().getMinutely()!=null && response.body().getMinutely().size()>0){
minutelyList.clear();
minutelyList.addAll(response.body().getMinutely());
mAdapterMinutePrec.notifyDataSetChanged();
}else {
ToastUtils.showShortToast(context, "分钟级降水数据为空");
}
}else {
ToastUtils.showShortToast(context, CodeToStringUtils.WeatherCode(response.body().getCode()));
}
}
现在你的这个MainActivity页面就不会报错了。
不过这个时分你运转你会发现你看不到这个列表,那是由于我躲藏了。已然是躲藏的,那么就需求一个开关了控制它的显现才行,于是能够在onViewClick办法中添加一个id. 这儿经过点击的办法来控制这个列表的显现和躲藏了,而很明显这个显现和躲藏我还加了动画作用,否则就会显得很突兀。这儿留意这个state的全局变量,它的初始值是false,也便是不显现,当我第一次点击时,它会进行判断,会进入else中。这时分经过动画打开这个布局,打开之后设置为true,而此刻你再点击时就会进入if中,然后就会缩短布局,之后又把值设置为false。
OK,这个逻辑就讲清楚了,下面来看看那这个动画的办法吧。
六、动画打开缩短作用
之前在mvplibrary中的utils包下建了一个AnimationUtil动画东西类。那么现在新添加两个办法
/**
* 打开动画
* @param view 需求打开的View
* @param textView 修正文本
*/
public static void expand(final View view, final TextView textView) {
//视图丈量 传入容器的宽高丈量形式
view.measure(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
//获取视图的丈量高度
final int viewHeight = view.getMeasuredHeight();
//设置布局参数高度
view.getLayoutParams().height = 0;
//视图显现
view.setVisibility(View.VISIBLE);
textView.setText("收起概况");
Animation animation = new Animation() {
/**
* 重写动画更新函数
* @param interpolatedTime 补插时刻 计算动画进展
* @param t
*/
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
if (interpolatedTime == 1) {
//动画已完结
view.getLayoutParams().height = ViewGroup.LayoutParams.WRAP_CONTENT;
} else {
//正在进行中
view.getLayoutParams().height = (int) (viewHeight * interpolatedTime);
}
view.requestLayout();
}
};
animation.setDuration(600);
//设置插值器,即动画改动速度
animation.setInterpolator(new LinearOutSlowInInterpolator());
view.startAnimation(animation);
}
/**
* 缩短动画
* @param view 需求缩短的View
* @param textView 修正文本
*/
public static void collapse(final View view,final TextView textView) {
view.measure(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
final int viewHeight = view.getMeasuredHeight();
Animation animation = new Animation() {
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
if (interpolatedTime == 1) {
view.setVisibility(View.GONE);
textView.setText("检查概况");
} else {
view.getLayoutParams().height = viewHeight - (int) (viewHeight * interpolatedTime);
view.requestLayout();
}
}
};
animation.setDuration(600);
animation.setInterpolator(new LinearOutSlowInInterpolator());
view.startAnimation(animation);
}
这儿的打开和缩短用的是补间动画,经过动画的运转时刻和改变轨迹来操作,interpolatedTime == 1则表明动画运转完结了,else中表明动画进行中,进行时需求不断的变更视图的高度,然后之后重新制作,以此达到动画的作用。
animation.setInterpolator(new LinearOutSlowInInterpolator());
这个设置表明动画的运转形式。它还有其他的的一些形式,不过我进过测验之后,最喜欢这个形式,感兴趣的自行去测验。
七、运转GIF作用图
好了,到了现在代码就写完了,那么来看看运转作用吧。
本来我是想放一个高清一点的GIF的,可是超过了5M就不可,所以只能看这个模糊的了。
文末
提到这儿也便是这篇博客的结束了,其实挺慨叹的,这个气候APP从我刚开始写大概是3月份,现在现已到了12月了,时刻过得真快呀。其实代码就像一个朋友一样,你对它花的时刻越多,它就对你越了解,而当你萧瑟它之后,你再回来它还在这儿,只不过你需求重新认识了解一下了。好在代码是讲道理,每一个报错都会有原因,挺慨叹的。重新认识一下,你好!我是初学者,请多指教。天长地久,后会有期~
源码地址:GoodWeather 欢迎 Star 和 Fork