页面绘制
问题1、下拉框需要背景为透明
我懒得写全部省份就写了5个所以不需要往下
图标准备
iconfont-阿里巴巴矢量图标库几坤年没来这了好怀念啊,图标库选择下雨的图标等
准备网络请求
0、API接口准备
api免费七日天气接口API 未来一周天气预报api (tianqiapi.com)
1、 添加网络请求权限
2、网络请求工具类
package com.example.weather.Unil;
import android.util.Log;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class Util {
//ctrl+shift+u全部大写/小写
public static final String URL_WEATHER_WITH="http://v1.yiketianqi.com/free/week?unescape=1&appid=00000000&appsecret=00000";
public static String doGet(String urlStr){
String result="";
InputStreamReader inputStreamReader = null;
//链接网路
HttpURLConnection connection=null;
BufferedReader bufferedReader=null;
try {
URL url = new URL(urlStr);
connection =(HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setConnectTimeout(5000);
//从连接中读取数据
Inp