实例介绍
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
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论