这里实现 省份–城市–天气 的联动。即先选择省份,再选择城市,最后展示天气信息。
思路:通过访问:http://www.webxml.com.cn/webservices/weatherwebservice.asmx,通过给定的方式获得所需要的数据,在方法中解析xml成list,然后展示即可。
1:布局与权限:
<uses-permission android:name="android.permission.INTERNET" />
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.inext.test.webview.WeatherActivity">
<Spinner
android:id="@+id/pro"
android:layout_width="match_parent"
android:layout_height="wrap_content"></Spinner>
<Spinner
android:id="@+id/city"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/pro"
android:layout_alignParentStart="true"></Spinner>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/city"
android:layout_alignParentStart="true">
<TextView
android:id="@+id/show"
android:layout_width="match_parent"
android:layout_height="wrap_content"