android天气预报界面实现,Android天气预报源代码 自动定位 仿360天气界面

【实例简介】

Android天气预报源代码,支持自动定位、手动输入城市,使用百度天气API、百度定位API,仿360天气界面,天气壁纸,简约美观。

【实例截图】

【核心代码】

Android天气预报源代码自动定位仿360天气界面

└── Android天气预报源代码 自动定位 仿360天气界面

├── iWeather

│   ├── AndroidManifest.xml

│   ├── assets

│   │   └── fonts

│   │   ├── fangzhenglantingxianhe_GBK.ttf

│   │   └── HelveticaNeueLTPro-Lt.ttf

│   ├── gen

│   │   └── edu

│   │   └── swust

│   │   └── iweather

│   │   ├── BuildConfig.java

│   │   └── R.java

│   ├── ic_launcher-web.png

│   ├── libs

│   │   ├── armeabi

│   │   │   └── liblocSDK4.so

│   │   ├── locSDK_4.0.jar

│   │   └── wae-for-debug.jar

│   ├── proguard-project.txt

│   ├── project.properties

│   ├── res

│   │   ├── drawable

│   │   │   ├── city_pressed_effect.xml

│   │   │   └── title_bar_image_pressed_effect.xml

│   │   ├── drawable-hdpi

│   │   │   ├── bg_cloudy_day.jpg

│   │   │   ├── bg_cloudy_night.jpg

│   │   │   ├── bg_fine_day.jpg

│   │   │   ├── bg_fine_night.jpg

│   │   │   ├── bg_fog.jpg

│   │   │   ├── bg_haze.jpg

│   │   │   ├── bg_na.jpg

│   │   │   ├── bg_overcast.jpg

│   │   │   ├── bg_rain.jpg

│   │   │   ├── bg_sand_storm.jpg

│   │   │   ├── bg_snow.jpg

│   │   │   ├── bg_thunder_storm.jpg

│   │   │   ├── city_bg_pressed.9.png

│   │   │   ├── drag_view_handle.png

│   │   │   ├── ic_launcher.png

│   │   │   ├── icon.png

│   │   │   ├── icon_search.png

│   │   │   ├── locate_indicator.png

│   │   │   ├── search_input_bg.9.png

│   │   │   ├── select_city_bg_cover.9.png

│   │   │   ├── select_city_bg_default.jpg

│   │   │   ├── temperature_small_img.png

│   │   │   ├── title_bar_about.png

│   │   │   ├── title_bar_back.png

│   │   │   ├── title_bar_bg.9.png

│   │   │   ├── title_bar_refresh.png

│   │   │   ├── title_bar_shared.png

│   │   │   ├── today_weather_extra_arrow.png

│   │   │   ├── trend_bg_line.png

│   │   │   ├── weather_forcast_bg.9.png

│   │   │   ├── weather_forecast_icon.png

│   │   │   ├── weather_icon_cloudy.png

│   │   │   ├── weather_icon_fine.png

│   │   │   ├── weather_icon_fog.png

│   │   │   ├── weather_icon_hail.png

│   │   │   ├── weather_icon_overcast.png

│   │   │   ├── weather_icon_rain_big.png

│   │   │   ├── weather_icon_rain_middle.png

│   │   │   ├── weather_icon_rain_small.png

│   │   │   ├── weather_icon_rain_snow.png

│   │   │   ├── weather_icon_rain_storm.png

│   │   │   ├── weather_icon_sand_storm.png

│   │   │   ├── weather_icon_sleet.png

│   │   │   ├── weather_icon_snow_big.png

│   │   │   ├── weather_icon_snow_middle.png

│   │   │   ├── weather_icon_snow_small.png

│   │   │   ├── weather_icon_snow_storm.png

│   │   │   ├── weather_icon_thunder_storm.png

│   │   │   ├── weather_img_cloudy_day.png

│   │   │   ├── weather_img_cloudy_night.png

│   │   │   ├── weather_img_fine_day.png

│   │   │   ├── weather_img_fine_night.png

│   │   │   ├── weather_img_fog.png

│   │   │   ├── weather_img_hail.png

│   │   │   ├── weather_img_overcast.png

│   │   │   ├── weather_img_rain_big.png

│   │   │   ├── weather_img_rain_middle.png

│   │   │   ├── weather_img_rain_small.png

│   │   │   ├── weather_img_rain_snow.png

│   │   │   ├── weather_img_rain_storm.png

│   │   │   ├── weather_img_sand_storm.png

│   │   │   ├── weather_img_sleet.png

│   │   │   ├── weather_img_snow_big.png

│   │   │   ├── weather_img_snow_middle.png

│   │   │   ├── weather_img_snow_small.png

│   │   │   ├── weather_img_snow_storm.png

│   │   │   ├── weather_img_thunder_storm.png

│   │   │   ├── welcome_bg.jpg

│   │   │   ├── welcome_icon.png

│   │   │   └── wind_samll_img.png

│   │   ├── drawable-ldpi

│   │   │   └── icon.png

│   │   ├── drawable-mdpi

│   │   │   ├── ic_launcher.png

│   │   │   └── icon.png

│   │   ├── drawable-xhdpi

│   │   │   ├── ic_launcher.png

│   │   │   └── icon.png

│   │   ├── drawable-xxhdpi

│   │   │   └── icon.png

│   │   ├── layout

│   │   │   ├── city_item.xml

│   │   │   ├── select_city.xml

│   │   │   ├── weather_dialog.xml

│   │   │   ├── weather_forecast_item.xml

│   │   │   ├── weather.xml

│   │   │   └── welcome.xml

│   │   └── values

│   │   ├── colors.xml

│   │   ├── dimens.xml

│   │   ├── strings.xml

│   │   └── styles.xml

│   └── src

│   └── edu

│   └── swust

│   └── iweather

│   ├── SelectCity.java

│   ├── util

│   │   └── Utils.java

│   ├── Weather.java

│   ├── web

│   │   ├── SinaWeather.java

│   │   └── UpdateWeather.java

│   └── Welcome.java

├── iWeather.apk

└── Readme.txt

25 directories, 107 files

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值