美文网首页
Android 天气

Android 天气

作者: 霖风_ | 来源:发表于2018-12-28 14:58 被阅读0次

    具体步骤:

    1. 通过LitePal建立City数据库
    2. 通过OkHttp建立网络连接,获取API内容
    3. 通过GSON解析数据,并存入City表格中
    4. 使用ListView,将数据库内容按照三级筛选显示出来,省级(pid==0);根据选择的省级(id)来筛选市级(既Pid== 省级id),显示出来;通过对ListVIew设置监听事件,获取按钮的位置,通过intent传递id跳转到新的页面中。
    5. 点击该市,获取city_code,向“http://t.weather.sojson.com/api/weather/city/+city_code”请求数据
    6. 通过GSON解析数据

    github 链接-- https://github.com/JEASON36/AndroidWeatherForecast.git

    数据的解析通过https://www.cnblogs.com/jianyungsun/p/6647203.html,来实践。

    相关文章

      网友评论

          本文标题:Android 天气

          本文链接:https://www.haomeiwen.com/subject/uivslqtx.html