簡(jiǎn)易的天氣預(yù)報(bào)APP
項(xiàng)目鏈接(https://github.com/lubeiling/getWeather-Information-based-Android)
效果圖如下瓜饥,需要輸入漢字遣蚀,AVD可修改輸入配置。
1夏醉、系統(tǒng)配置:安裝好Android Studio,配置好SDK和AVD涧衙;
2肤视、開始創(chuàng)建項(xiàng)目
(1)新建Audroid項(xiàng)目
(2)訪問互聯(lián)網(wǎng), 首先需要設(shè)置好相應(yīng)權(quán)限
????????在app文件夾->mainifests文件夾->AndroidManifest.xml文件中添加:
????????????????????????????<uses-permission android:name="android.permission.INTERNET" />
(3)在MainActivity.java中獲取網(wǎng)絡(luò)數(shù)據(jù)用到HttpURLConnection的GET方法枢里,并在子線程中訪問網(wǎng)絡(luò)(因?yàn)樵L問網(wǎng)絡(luò)比較耗時(shí),所以放在子線程中執(zhí)行蹂午;通過消息返回的數(shù)據(jù)傳回頁面(更新UI界面))栏豺,這里用到的是Handler線程機(jī)制:
頁面代碼(activity_main.xml)如下:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstrainLayout????????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:layout_width="match_parent"
??????? android:layout_height="match_parent"
??????? tools:context=".MainActivity">
<EditText
? ? ? ? ? android:id="@+id/cityName"
? ? ? ? ? android:layout_width="match_parent"
? ? ? ? ? android:layout_height="wrap_content"
? ? ? ? ? android:hint="請(qǐng)輸入城市名稱" />
<Button
? ? ? ? android:id="@+id/button2"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:text="查詢天氣"
? ? ? ? android:onClick="button_click_2"
? ? ? ? app:layout_constraintTop_toBottomOf="@+id/cityName"/>
<TextView
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:id="@+id/resultText"
? ? ? ? app:layout_constraintTop_toBottomOf="@+id/button2" />
</android.support.constraint.ConstrainLayout>
MainActivity.java代碼如下:
package com.example.a2017.homenwork_first;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
public class MainActivityextends AppCompatActivity {
????//更新UI
? ? private Handlerhandler =new Handler() {
????@Override
? ? ? ? public void handleMessage(Message msg) {
????????// 處理消息時(shí)需要知道是成功的消息還是失敗的消息
? ? ? ? ? TextView resultText = (TextView) findViewById(R.id.resultText);
????????????switch (msg.what){
????????????case 0:
????????????????resultText.setText(msg.obj.toString());
????????????break;
????????}
????}
};
@Override
?protected void onCreate(Bundle savedInstanceState) {
????super.onCreate(savedInstanceState);
????setContentView(R.layout.activity_main);
????}
//按鈕觸發(fā)事件
? ? public void button_click_2(View view){
?????//子線程
????????Thread t =new Thread(){
????????????@Override
? ? ? ? ? ? public void run() {
????????????????HttpURLConnection connection =null;
????????????????????????try {
????????????????????????????????EditText ed = (EditText)findViewById(R.id.cityName);
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? //在測(cè)試時(shí),編輯框中需要填寫漢字
????????????????????????????????String city = java.net.URLEncoder.encode(ed.getText().toString(),"utf-8");
? ? ? ? ? ? ? ? ? ? ? ? ? ?? //如果AVD模擬器不能輸入漢字時(shí)豆胸,需要用下面這行代碼替換上一行
????????????????????????????????//String city = java.net.URLEncoder.encode("廣州", "utf-8");
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? URL url =new URL("http://wthrcdn.etouch.cn/weather_mini?city="+city);
????????????????????????????????connection = (HttpURLConnection) url.openConnection();
???????????????????????????????connection.setRequestMethod("GET");
???????????????????????????????connection.setConnectTimeout(5000);
???????????????????????????????connection.setReadTimeout(5000);
???????????????????????????????InputStream in = connection.getInputStream();
???????????????????????????????BufferedReader reader =new BufferedReader(new InputStreamReader(in));
???????????????????????????????StringBuilder response =new StringBuilder();
???????????????????????????????String line;
???????????????????????????????while ((line = reader.readLine()) !=null) {
???????????????????????????????response.append(line);
???????????????????????????????}
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? //在日志中輸出網(wǎng)絡(luò)返回的數(shù)據(jù)
???????????????????????????????Log.i("TAG", response.toString());
???????????????????????????????//將獲得到的數(shù)據(jù)進(jìn)行處理奥洼,得到我們需要的格式
???????????????????????????????String res =new String(response);
? ? ? ? ? ? ? ? ? ? ? ?? try {
???????????????????????????????JSONObject jsonObject =new JSONObject(res);
???????????????????????????????JSONObject root = jsonObject.getJSONObject("data");
???????????????????????????????String log ="";
???????????????????????????????log = log+"城市:"+root.getString("city")+"\n"+"PM2.5:"+root.getString("aqi")+"\n"+"\n";
???????????????????????????????JSONObject yes = (JSONObject)root.getJSONObject("yesterday");
???????????????????????????????log = log + yes.getString("date") +"\t"+yes.getString("high")+"~"+
???????????????????????????????yes.getString("low")+"\t"+
???????????????????????????????yes.getString("type")+"\t"+
???????????????????????????????yes.getString("fx")+"\n"+"\n"+"\n";
???????????????????????????????for (int i =0;i<4;i++){
???????????????????????????????JSONObject arr = (JSONObject) root.getJSONArray("forecast").get(i);
???????????????????????????????log = log +
???????????????????????????????arr.getString("date")+"\t"+
???????????????????????????????arr.getString("high")+"~"+
???????????????????????????????arr.getString("low")+"\t"+
???????????????????????????????arr.getString("type")+"\t"+
???????????????????????????????arr.getString("fengxiang")+"\n"+"\n"+"\n";
???????????????????????????????}
? ? ? ? ? ? ? ? ? ? ? ? ? ? ?? //將消息傳回主線程
???????????????????????????????Message message =new Message();
???????????????????????????????message.what =0;
???????????????????????????????message.obj = log;
???????????????????????????????handler.sendMessage(message);
???????????????????????????????}
???????????????????????????????catch (JSONException e) {
???????????????????????????????e.printStackTrace();
???????????????????????????????}
? ? ? ? ? ? ? ? ? ? ?? }catch (MalformedURLException e) {
???????????????????????????????e.printStackTrace();
? ? ? ? ? ? ? ? ? ? ? ? }catch (IOException e) {
???????????????????????????????e.printStackTrace();
? ? ? ? ? ? ? ? ? ? ? }
????????????????}
????????};
????????t.start();//開始線程
}
}