Android实现天气查询

这篇博客介绍了如何在Android平台上实现天气查询功能。通过调用特定的Web服务接口,获取XML数据,然后解析XML并展示省份、城市及对应的天气信息。主要涉及布局设计、权限设置以及XML解析方法。
摘要由CSDN通过智能技术生成

这里实现 省份–城市–天气 的联动。即先选择省份,再选择城市,最后展示天气信息。
思路:通过访问: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"
            
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>