├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── CoolWeather_ScreenShot ├── S60718-161720.jpg ├── S60718-161732.jpg ├── S60718-161738.jpg ├── S60718-161802.jpg ├── S60718-161808.jpg ├── S60718-161813.jpg ├── S60718-161819.jpg ├── S60718-161825.jpg ├── S60718-161834.jpg ├── S60718-161839.jpg ├── S60718-161853.jpg └── S60718-161910.jpg ├── LICENSE ├── README.md ├── assets ├── autobkgs │ ├── cloudy.jpg │ ├── fine.jpg │ └── rain.jpg └── bkgs │ ├── 001.jpg │ ├── 002.jpg │ ├── 003.jpg │ ├── 004.jpg │ ├── 005.jpg │ └── zly.jpg ├── libs ├── BaiduLBS_Android.jar ├── android-support-v4.jar ├── armeabi │ └── liblocSDK5.so ├── gson-2.1.jar └── universal-image-loader-1.8.4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── cool_weather_icon.jpg │ ├── ic_launcher.png │ ├── left_layout_bg.jpg │ ├── mine_avatar.JPG │ ├── skin_ico_checked.png │ ├── skin_img_item_background_normal.9.png │ ├── skin_img_item_background_selected.9.png │ ├── weather.jpg │ └── welcome.jpg ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ ├── add_city_bg.png │ ├── bg_dialog_snowman_left_normal.9.png │ ├── bg_dialog_snowman_left_pressed.9.png │ ├── city_checkbox_selected.png │ ├── cityadd_bg.png │ ├── cityadd_bg1.png │ ├── duoyun.png │ ├── duoyun_night.png │ ├── homep_title_refresh.png │ ├── homep_titlemenu_normal.png │ ├── ic_default_status.png │ ├── ic_dl_a.9.png │ ├── ic_dl_b.9.png │ ├── ic_dl_c.9.png │ ├── ic_dl_d.9.png │ ├── ic_dl_e.9.png │ ├── ic_dl_f.9.png │ ├── ic_dl_green_m.9.png │ ├── ic_dl_green_s.9.png │ ├── ic_dl_orange.9.png │ ├── ic_dl_pink.9.png │ ├── ic_dl_red.9.png │ ├── ic_dl_yellow.9.png │ ├── ic_launcher.png │ ├── ic_logo.png │ ├── ic_temperature_unit.png │ ├── ic_todaycan_carwash.png │ ├── ic_todaycan_clickbt.png │ ├── ic_todaycan_coldl.png │ ├── ic_todaycan_date.png │ ├── ic_todaycan_dress.png │ ├── ic_todaycan_jingdian.png │ ├── ic_todaycan_sport.png │ ├── ic_todaycan_tour.png │ ├── ic_todaycan_ultravioletrays.png │ ├── ic_wind.png │ └── img_wind.png ├── drawable-xxhdpi │ ├── bg_cloudy_day.jpg │ ├── bg_cloudy_day_blur.jpg │ ├── bg_cloudy_night.jpg │ ├── bg_cloudy_night_blur.jpg │ ├── bg_fine_day.jpg │ ├── bg_fine_day_blur.jpg │ ├── bg_fine_night.jpg │ ├── bg_fine_night_blur.jpg │ ├── bg_homepager.jpg │ ├── bg_homepager_blur.jpg │ ├── bg_homepager_night.jpg │ ├── bg_launch.jpg │ ├── bg_launch_nigth.jpg │ ├── bg_night_cloudy.jpg │ ├── bg_overcast.jpg │ ├── bg_overcast_blur.jpg │ ├── bg_rain.jpg │ ├── bg_rain_blur.jpg │ ├── bg_sand_storm.jpg │ ├── bg_sand_storm_blur.jpg │ ├── bg_snow.jpg │ ├── bg_snow_blur.jpg │ ├── bg_thunder_storm.jpg │ ├── bg_thunder_storm_blur.jpg │ ├── bg_yin.jpg │ ├── bg_yin_blur.jpg │ ├── guano_icon.png │ ├── homep_titlebt_add_normal.png │ ├── homep_titlebt_add_pressed.png │ ├── ic_default_status.png │ ├── ic_launcher.png │ ├── raindrop_bg.jpg │ └── snow_bg.jpg ├── drawable │ ├── citym_normal_bg.xml │ ├── citym_normal_color.xml │ ├── drawerlayout_bt_bg.xml │ ├── drawerlayout_button_bg.xml │ ├── exitapp_text_bg.xml │ ├── homep_search_bg.xml │ ├── homep_titlebt_bg.xml │ ├── homep_titlemenu_bg.xml │ ├── inputcity_edit.xml │ ├── item_citym_normal_bg.xml │ ├── item_citym_normal_color.xml │ ├── item_todayc_bg.xml │ ├── launch_otext_bg.xml │ ├── search_btn.xml │ └── skin_img_item_background.xml ├── layout │ ├── about_me_fragment.xml │ ├── addcity_activity.xml │ ├── bg_pic_grid_item.xml │ ├── change_background_fragment.xml │ ├── citymanager_activity.xml │ ├── exitapp_dialog.xml │ ├── gridview_activity.xml │ ├── gridview_citymanager.xml │ ├── gridview_todaycan.xml │ ├── homepager_activity.xml │ ├── include_content_activity.xml │ ├── include_title_activity.xml │ ├── item_gridview_addcity.xml │ ├── item_gridview_citymanager.xml │ ├── item_gridview_todaycan.xml │ ├── item_listview_tomorrow.xml │ ├── main_activity.xml │ ├── main_activity_net_error.xml │ ├── tomorrow_weather_activity.xml │ └── welcome_activity.xml ├── values-sw600dp │ └── dimens.xml ├── values-sw720dp-land │ └── dimens.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── attrs.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── htq └── coolweather ├── AboutMeFragment.java ├── AddCityActivity.java ├── ChangeBackgroundFragment.java ├── CityManagerActivity.java ├── CityManagerFragment.java ├── FragmentAndActivity.java ├── HomePageFragment.java ├── LifeIndexFragment.java ├── MainActivity.java ├── WelcomeActivity.java ├── adapter ├── BgPicGridAdapter.java ├── GridAddCityAdapter.java ├── GridCityMAdapter.java ├── GridTodayCAdapter.java └── ListWeatherAdapter.java ├── base ├── Appliction.java ├── AutoLocation.java ├── CHImageView.java ├── MHttpEntity.java ├── SQLiteCityManager.java └── SendDataEntity.java ├── entity ├── BgPicEntity.java ├── CityManagerEntity.java ├── LivingIndexEntity.java ├── MHttpEntity.java ├── ResponseWrapper.java ├── SQLiteCityManager.java ├── SendDataEntity.java ├── WeatherEntity.java └── WeatherSubEntity.java └── utils ├── CircleImageView.java ├── SharePrefrenceUtil.java └── SystemUtils.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161720.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161732.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161732.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161738.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161738.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161802.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161802.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161808.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161808.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161813.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161813.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161819.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161819.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161825.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161825.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161834.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161834.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161839.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161839.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161853.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161853.jpg -------------------------------------------------------------------------------- /CoolWeather_ScreenShot/S60718-161910.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/CoolWeather_ScreenShot/S60718-161910.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/README.md -------------------------------------------------------------------------------- /assets/autobkgs/cloudy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/autobkgs/cloudy.jpg -------------------------------------------------------------------------------- /assets/autobkgs/fine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/autobkgs/fine.jpg -------------------------------------------------------------------------------- /assets/autobkgs/rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/autobkgs/rain.jpg -------------------------------------------------------------------------------- /assets/bkgs/001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/bkgs/001.jpg -------------------------------------------------------------------------------- /assets/bkgs/002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/bkgs/002.jpg -------------------------------------------------------------------------------- /assets/bkgs/003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/bkgs/003.jpg -------------------------------------------------------------------------------- /assets/bkgs/004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/bkgs/004.jpg -------------------------------------------------------------------------------- /assets/bkgs/005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/bkgs/005.jpg -------------------------------------------------------------------------------- /assets/bkgs/zly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/assets/bkgs/zly.jpg -------------------------------------------------------------------------------- /libs/BaiduLBS_Android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/libs/BaiduLBS_Android.jar -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/armeabi/liblocSDK5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/libs/armeabi/liblocSDK5.so -------------------------------------------------------------------------------- /libs/gson-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/libs/gson-2.1.jar -------------------------------------------------------------------------------- /libs/universal-image-loader-1.8.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/libs/universal-image-loader-1.8.4.jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/lint.xml -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/cool_weather_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/cool_weather_icon.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/left_layout_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/left_layout_bg.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/mine_avatar.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/mine_avatar.JPG -------------------------------------------------------------------------------- /res/drawable-hdpi/skin_ico_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/skin_ico_checked.png -------------------------------------------------------------------------------- /res/drawable-hdpi/skin_img_item_background_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/skin_img_item_background_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/skin_img_item_background_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/skin_img_item_background_selected.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/weather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/weather.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-hdpi/welcome.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/add_city_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/add_city_bg.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/bg_dialog_snowman_left_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/bg_dialog_snowman_left_normal.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/bg_dialog_snowman_left_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/bg_dialog_snowman_left_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/city_checkbox_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/city_checkbox_selected.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cityadd_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/cityadd_bg.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cityadd_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/cityadd_bg1.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/duoyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/duoyun.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/duoyun_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/duoyun_night.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/homep_title_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/homep_title_refresh.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/homep_titlemenu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/homep_titlemenu_normal.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_default_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_default_status.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_a.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_a.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_b.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_b.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_c.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_c.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_d.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_d.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_e.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_e.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_f.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_f.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_green_m.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_green_m.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_green_s.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_green_s.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_orange.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_orange.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_pink.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_pink.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_red.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_red.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_dl_yellow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_dl_yellow.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_logo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_temperature_unit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_temperature_unit.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_carwash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_carwash.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_clickbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_clickbt.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_coldl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_coldl.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_date.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_dress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_dress.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_jingdian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_jingdian.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_sport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_sport.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_tour.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_todaycan_ultravioletrays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_todaycan_ultravioletrays.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/ic_wind.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/img_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xhdpi/img_wind.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_cloudy_day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_cloudy_day.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_cloudy_day_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_cloudy_day_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_cloudy_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_cloudy_night.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_cloudy_night_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_cloudy_night_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_fine_day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_fine_day.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_fine_day_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_fine_day_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_fine_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_fine_night.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_fine_night_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_fine_night_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_homepager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_homepager.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_homepager_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_homepager_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_homepager_night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_homepager_night.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_launch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_launch.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_launch_nigth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_launch_nigth.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_night_cloudy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_night_cloudy.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_overcast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_overcast.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_overcast_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_overcast_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_rain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_rain.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_rain_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_rain_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_sand_storm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_sand_storm.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_sand_storm_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_sand_storm_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_snow.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_snow_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_snow_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_thunder_storm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_thunder_storm.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_thunder_storm_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_thunder_storm_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_yin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_yin.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/bg_yin_blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/bg_yin_blur.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/guano_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/guano_icon.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/homep_titlebt_add_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/homep_titlebt_add_normal.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/homep_titlebt_add_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/homep_titlebt_add_pressed.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_default_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/ic_default_status.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/raindrop_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/raindrop_bg.jpg -------------------------------------------------------------------------------- /res/drawable-xxhdpi/snow_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable-xxhdpi/snow_bg.jpg -------------------------------------------------------------------------------- /res/drawable/citym_normal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/citym_normal_bg.xml -------------------------------------------------------------------------------- /res/drawable/citym_normal_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/citym_normal_color.xml -------------------------------------------------------------------------------- /res/drawable/drawerlayout_bt_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/drawerlayout_bt_bg.xml -------------------------------------------------------------------------------- /res/drawable/drawerlayout_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/drawerlayout_button_bg.xml -------------------------------------------------------------------------------- /res/drawable/exitapp_text_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/exitapp_text_bg.xml -------------------------------------------------------------------------------- /res/drawable/homep_search_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/homep_search_bg.xml -------------------------------------------------------------------------------- /res/drawable/homep_titlebt_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/homep_titlebt_bg.xml -------------------------------------------------------------------------------- /res/drawable/homep_titlemenu_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/homep_titlemenu_bg.xml -------------------------------------------------------------------------------- /res/drawable/inputcity_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/inputcity_edit.xml -------------------------------------------------------------------------------- /res/drawable/item_citym_normal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/item_citym_normal_bg.xml -------------------------------------------------------------------------------- /res/drawable/item_citym_normal_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/item_citym_normal_color.xml -------------------------------------------------------------------------------- /res/drawable/item_todayc_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/item_todayc_bg.xml -------------------------------------------------------------------------------- /res/drawable/launch_otext_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/launch_otext_bg.xml -------------------------------------------------------------------------------- /res/drawable/search_btn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/search_btn.xml -------------------------------------------------------------------------------- /res/drawable/skin_img_item_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/drawable/skin_img_item_background.xml -------------------------------------------------------------------------------- /res/layout/about_me_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/about_me_fragment.xml -------------------------------------------------------------------------------- /res/layout/addcity_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/addcity_activity.xml -------------------------------------------------------------------------------- /res/layout/bg_pic_grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/bg_pic_grid_item.xml -------------------------------------------------------------------------------- /res/layout/change_background_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/change_background_fragment.xml -------------------------------------------------------------------------------- /res/layout/citymanager_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/citymanager_activity.xml -------------------------------------------------------------------------------- /res/layout/exitapp_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/exitapp_dialog.xml -------------------------------------------------------------------------------- /res/layout/gridview_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/gridview_activity.xml -------------------------------------------------------------------------------- /res/layout/gridview_citymanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/gridview_citymanager.xml -------------------------------------------------------------------------------- /res/layout/gridview_todaycan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/gridview_todaycan.xml -------------------------------------------------------------------------------- /res/layout/homepager_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/homepager_activity.xml -------------------------------------------------------------------------------- /res/layout/include_content_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/include_content_activity.xml -------------------------------------------------------------------------------- /res/layout/include_title_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/include_title_activity.xml -------------------------------------------------------------------------------- /res/layout/item_gridview_addcity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/item_gridview_addcity.xml -------------------------------------------------------------------------------- /res/layout/item_gridview_citymanager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/item_gridview_citymanager.xml -------------------------------------------------------------------------------- /res/layout/item_gridview_todaycan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/item_gridview_todaycan.xml -------------------------------------------------------------------------------- /res/layout/item_listview_tomorrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/item_listview_tomorrow.xml -------------------------------------------------------------------------------- /res/layout/main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/main_activity.xml -------------------------------------------------------------------------------- /res/layout/main_activity_net_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/main_activity_net_error.xml -------------------------------------------------------------------------------- /res/layout/tomorrow_weather_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/tomorrow_weather_activity.xml -------------------------------------------------------------------------------- /res/layout/welcome_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/layout/welcome_activity.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/htq/coolweather/AboutMeFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/AboutMeFragment.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/AddCityActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/AddCityActivity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/ChangeBackgroundFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/ChangeBackgroundFragment.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/CityManagerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/CityManagerActivity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/CityManagerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/CityManagerFragment.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/FragmentAndActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/FragmentAndActivity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/HomePageFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/HomePageFragment.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/LifeIndexFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/LifeIndexFragment.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/MainActivity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/WelcomeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/WelcomeActivity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/adapter/BgPicGridAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/adapter/BgPicGridAdapter.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/adapter/GridAddCityAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/adapter/GridAddCityAdapter.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/adapter/GridCityMAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/adapter/GridCityMAdapter.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/adapter/GridTodayCAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/adapter/GridTodayCAdapter.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/adapter/ListWeatherAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/adapter/ListWeatherAdapter.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/base/Appliction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/base/Appliction.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/base/AutoLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/base/AutoLocation.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/base/CHImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/base/CHImageView.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/base/MHttpEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/base/MHttpEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/base/SQLiteCityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/base/SQLiteCityManager.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/base/SendDataEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/base/SendDataEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/BgPicEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/BgPicEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/CityManagerEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/CityManagerEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/LivingIndexEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/LivingIndexEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/MHttpEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/MHttpEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/ResponseWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/ResponseWrapper.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/SQLiteCityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/SQLiteCityManager.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/SendDataEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/SendDataEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/WeatherEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/WeatherEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/entity/WeatherSubEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/entity/WeatherSubEntity.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/utils/CircleImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/utils/CircleImageView.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/utils/SharePrefrenceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/utils/SharePrefrenceUtil.java -------------------------------------------------------------------------------- /src/com/htq/coolweather/utils/SystemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuTianQi/CoolWeather/HEAD/src/com/htq/coolweather/utils/SystemUtils.java --------------------------------------------------------------------------------