android实现一个简单的能使用API来获取天气预报数据的天气预报代码和布局文件
时间: 2024-05-17 20:17:09 浏览: 184
好的,以下是一个简单的 Android 天气预报应用的代码和布局文件示例。
首先,在布局文件中,我们需要一个 TextView 显示天气预报信息,以及一个 Button 来触发获取天气预报数据的操作。在这个例子中,我们将使用和风天气提供的 API 来获取天气预报数据。
activity_main.xml 布局文件代码:
```xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:id="@+id/tv_weather_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="天气预报信息"
android:textSize="16sp" />
<Button
android:id="@+id/btn_get_weather"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="获取天气预报"
android:layout_marginTop="16dp" />
</LinearLayout>
```
接下来,我们需要在 MainActivity.java 中处理按钮点击事件,并使用和风天气提供的 API 获取天气预报数据,并更新 TextView 中显示的天气预报信息。
MainActivity.java 代码:
```java
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class MainActivity extends AppCompatActivity {
private static final String API_KEY = "YOUR_API_KEY";
private static final String API_URL = "https://free-api.heweather.net/s6/weather/forecast?location=YOUR_LOCATION&key=" + API_KEY;
private TextView tvWeatherInfo;
private Button btnGetWeather;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tvWeatherInfo = findViewById(R.id.tv_weather_info);
btnGetWeather = findViewById(R.id.btn_get_weather);
btnGetWeather.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
new GetWeatherTask().execute(API_URL);
}
});
}
private class GetWeatherTask extends AsyncTask<String, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
tvWeatherInfo.setText("正在获取天气预报数据...");
}
@Override
protected String doInBackground(String... urls) {
try {
URL url = new URL(urls[0]);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setConnectTimeout(5000);
conn.setReadTimeout(5000);
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
StringBuilder sb = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
sb.append(line);
}
reader.close();
conn.disconnect();
return sb.toString();
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
if (result == null) {
tvWeatherInfo.setText("获取天气预报数据失败");
} else {
try {
JSONObject jsonObj = new JSONObject(result);
JSONArray jsonArray = jsonObj.getJSONArray("HeWeather6");
JSONObject jsonWeather = jsonArray.getJSONObject(0);
JSONArray jsonForecast = jsonWeather.getJSONArray("daily_forecast");
StringBuilder sb = new StringBuilder();
for (int i = 0; i < jsonForecast.length(); i++) {
JSONObject jsonDaily = jsonForecast.getJSONObject(i);
String date = jsonDaily.getString("date");
String cond = jsonDaily.getJSONObject("cond_txt_d").getString("txt");
String tempMin = jsonDaily.getString("tmp_min");
String tempMax = jsonDaily.getString("tmp_max");
sb.append(date).append(":").append(cond).append(",").append(tempMin).append("℃ - ").append(tempMax).append("℃\n");
}
tvWeatherInfo.setText(sb.toString());
} catch (JSONException e) {
e.printStackTrace();
tvWeatherInfo.setText("解析天气预报数据失败");
}
}
}
}
}
```
注意:在使用此代码时,需要将 YOUR_API_KEY 和 YOUR_LOCATION 替换为和风天气提供的 API KEY 和想要查询天气预报的城市名称,才能正常获取天气预报数据。
希望这个简单的例子能够帮助你实现一个能使用 API 获取天气预报数据的 Android 应用。
阅读全文