├── .gitattributes ├── .gitignore ├── 1.png ├── 2.png ├── 3.png ├── README.md └── Weather ├── AndroidManifest.xml ├── assets └── city.db ├── gen └── com │ └── way │ └── weather │ ├── BuildConfig.java │ └── R.java ├── libs ├── android-support-v4.jar ├── armeabi │ └── liblocSDK3.so ├── gson-2.2.4.jar ├── locSDK_3.3.jar └── pinyin4j-2.5.0.jar ├── proguard-project.txt ├── project.properties ├── res ├── anim │ ├── base_loading_large_anim.xml │ ├── base_loading_small_anim.xml │ └── title_update_anim.xml ├── drawable-hdpi │ ├── ab_solid_custom_blue_inverse_holo.9.png │ ├── actionbar_btn_pressed.9.png │ ├── alert.png │ ├── base_action_bar_back_divider.jpg │ ├── base_action_bar_back_normal.png │ ├── base_action_bar_icon_background_pressed.9.png │ ├── base_list_divider_drawable.png │ ├── base_list_scrollbar_handle.9.png │ ├── base_list_selector_disabled.9.png │ ├── base_list_selector_pressed.9.png │ ├── base_loading_large_icon.png │ ├── base_loading_small_icon.png │ ├── base_search_edittext_bg.9.png │ ├── base_search_edittext_bg_focused.9.png │ ├── biz_news_column_subscribe_search_icon.png │ ├── biz_plugin_weather_indicator_popup_bg.png │ ├── biz_plugin_weather_selectcity_empty.png │ ├── biz_plugin_weather_selectcity_index_bg.9.png │ ├── biz_plugin_weather_sunny.png │ ├── btn_default.png │ ├── btn_press.9.png │ ├── button_bg_press.png │ ├── focused.png │ ├── global_bg.png │ ├── global_list_grain_bg_pressed.png │ ├── ic_launcher.png │ ├── loading_bg2.png │ ├── na.png │ ├── nofocused.png │ ├── nw0.png │ ├── nw1.png │ ├── nw2.png │ ├── nw3.png │ ├── nw4.png │ ├── nw5.png │ ├── nw6.png │ ├── nw7.png │ ├── nw8.png │ ├── nw9.png │ ├── separator_bg.9.png │ ├── sns_title_bg.png │ ├── switch_camera_hide.png │ ├── time_mask_pt.png │ ├── w0.png │ ├── w1.png │ ├── w10.png │ ├── w13.png │ ├── w14.png │ ├── w15.png │ ├── w16.png │ ├── w17.png │ ├── w18.png │ ├── w19.png │ ├── w2.png │ ├── w20.png │ ├── w21.png │ ├── w29.png │ ├── w3.png │ ├── w30.png │ ├── w31.png │ ├── w32.png │ ├── w33.png │ ├── w34.png │ ├── w35.png │ ├── w36.png │ ├── w4.png │ ├── w5.png │ ├── w6.png │ ├── w7.png │ ├── w8.png │ ├── w9.png │ ├── w_am.png │ ├── w_amw.png │ ├── w_pm.png │ ├── w_pmw.png │ └── widget_4x2_grey.png ├── drawable-xhdpi │ ├── base_action_bar_action_city.png │ ├── base_action_bar_back_divider.jpg │ ├── base_action_bar_share.png │ ├── biz_plugin_weather_0_50.png │ ├── biz_plugin_weather_101_150.png │ ├── biz_plugin_weather_151_200.png │ ├── biz_plugin_weather_201_300.png │ ├── biz_plugin_weather_51_100.png │ ├── biz_plugin_weather_baoxue.png │ ├── biz_plugin_weather_baoyu.png │ ├── biz_plugin_weather_dabaoyu.png │ ├── biz_plugin_weather_daxue.png │ ├── biz_plugin_weather_dayu.png │ ├── biz_plugin_weather_duoyun.png │ ├── biz_plugin_weather_greater_300.png │ ├── biz_plugin_weather_leizhenyu.png │ ├── biz_plugin_weather_leizhenyubingbao.png │ ├── biz_plugin_weather_qing.png │ ├── biz_plugin_weather_shachenbao.png │ ├── biz_plugin_weather_shenzhen_bg.jpg │ ├── biz_plugin_weather_tedabaoyu.png │ ├── biz_plugin_weather_wu.png │ ├── biz_plugin_weather_xiaoxue.png │ ├── biz_plugin_weather_xiaoyu.png │ ├── biz_plugin_weather_yin.png │ ├── biz_plugin_weather_yujiaxue.png │ ├── biz_plugin_weather_zhenxue.png │ ├── biz_plugin_weather_zhenyu.png │ ├── biz_plugin_weather_zhongxue.png │ ├── biz_plugin_weather_zhongyu.png │ ├── button_transparent.png │ ├── contact_search_box_edittext_keyword_background.9.png │ ├── cross.png │ ├── ic_launcher.png │ ├── magnifying_glass.png │ ├── main_titlebar_division.png │ ├── search_box_cancel_click.png │ ├── search_box_cancel_normal.png │ ├── share_pressed_gray.png │ ├── title_city.png │ ├── title_location.png │ ├── title_share.png │ └── title_update.png ├── drawable │ ├── actionbar_background.xml │ ├── actionbar_btn.xml │ ├── actionbar_btn_normal.xml │ ├── base_list_selector.xml │ ├── base_search_edittext_selector.xml │ ├── button_press.xml │ ├── contact_search_box_background.xml │ ├── custom_button.xml │ ├── hot_area_press.xml │ ├── kaixin_background.xml │ ├── kaixin_list_item_bg.xml │ ├── search_box_cancel_btn_bg.xml │ ├── share_press_selector.xml │ └── title_city_update_press.xml ├── layout │ ├── activity_main.xml │ ├── base_load_empty_layout.xml │ ├── biz_plugin_weather_indicator_popup.xml │ ├── biz_plugin_weather_ip_query_city.xml │ ├── biz_plugin_weather_item.xml │ ├── biz_plugin_weather_item_first.xml │ ├── biz_plugin_weather_layout.xml │ ├── biz_plugin_weather_list_group_item.xml │ ├── biz_plugin_weather_more_list_item.xml │ ├── biz_plugin_weather_select_city.xml │ ├── biz_plugin_weather_subitem.xml │ ├── main_title.xml │ ├── pageturning_h.xml │ ├── pageturning_m.xml │ ├── r_okcanceldialogview.xml │ ├── r_okdialogview.xml │ ├── search_box.xml │ ├── search_city_item.xml │ ├── select_city_item.xml │ └── widget_4x2.xml ├── values-hdpi │ └── dimens.xml ├── values-xhdpi-1184x720 │ └── dimens.xml ├── values-xhdpi-1280x720 │ └── dimens.xml ├── values-xhdpi-1280x800 │ └── dimens.xml ├── values-xhdpi-960x640 │ └── dimens.xml ├── values-xhdpi │ └── dimens.xml ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── defaults.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── xml │ └── weather_widget_4x2.xml └── src └── com └── way ├── apapter ├── CityAdapter.java ├── SearchCityAdapter.java └── WeatherPagerAdapter.java ├── app └── Application.java ├── bean ├── City.java ├── Pm2d5.java ├── SimpleWeather.java ├── SimpleWeatherinfo.java ├── Weather.java └── Weatherinfo.java ├── db └── CityDB.java ├── fragment ├── FirstWeatherFragment.java └── SecondWeatherFragment.java ├── indicator ├── CirclePageIndicator.java └── PageIndicator.java ├── plistview ├── BladeView.java └── PinnedHeaderListView.java ├── util ├── ConfigCache.java ├── FileUtils.java ├── IphoneDialog.java ├── L.java ├── Lunar.java ├── NetUtil.java ├── SharePreferenceUtil.java ├── T.java ├── TimeUtil.java └── ToPinYin.java └── weather ├── MainActivity.java ├── SelectCtiyActivity.java ├── WeatherUpdateService.java └── WeatherWidget.java /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | *.pydevproject 6 | .project 7 | .metadata 8 | bin/ 9 | tmp/ 10 | *.tmp 11 | *.bak 12 | *.swp 13 | *~.nib 14 | local.properties 15 | .classpath 16 | .settings/ 17 | .loadpath 18 | 19 | # External tool builders 20 | .externalToolBuilders/ 21 | 22 | # Locally stored "Eclipse launch configurations" 23 | *.launch 24 | 25 | # CDT-specific 26 | .cproject 27 | 28 | # PDT-specific 29 | .buildpath 30 | 31 | 32 | ################# 33 | ## Visual Studio 34 | ################# 35 | 36 | ## Ignore Visual Studio temporary files, build results, and 37 | ## files generated by popular Visual Studio add-ons. 38 | 39 | # User-specific files 40 | *.suo 41 | *.user 42 | *.sln.docstates 43 | 44 | # Build results 45 | 46 | [Dd]ebug/ 47 | [Rr]elease/ 48 | x64/ 49 | build/ 50 | [Bb]in/ 51 | [Oo]bj/ 52 | 53 | # MSTest test Results 54 | [Tt]est[Rr]esult*/ 55 | [Bb]uild[Ll]og.* 56 | 57 | *_i.c 58 | *_p.c 59 | *.ilk 60 | *.meta 61 | *.obj 62 | *.pch 63 | *.pdb 64 | *.pgc 65 | *.pgd 66 | *.rsp 67 | *.sbr 68 | *.tlb 69 | *.tli 70 | *.tlh 71 | *.tmp 72 | *.tmp_proj 73 | *.log 74 | *.vspscc 75 | *.vssscc 76 | .builds 77 | *.pidb 78 | *.log 79 | *.scc 80 | 81 | # Visual C++ cache files 82 | ipch/ 83 | *.aps 84 | *.ncb 85 | *.opensdf 86 | *.sdf 87 | *.cachefile 88 | 89 | # Visual Studio profiler 90 | *.psess 91 | *.vsp 92 | *.vspx 93 | 94 | # Guidance Automation Toolkit 95 | *.gpState 96 | 97 | # ReSharper is a .NET coding add-in 98 | _ReSharper*/ 99 | *.[Rr]e[Ss]harper 100 | 101 | # TeamCity is a build add-in 102 | _TeamCity* 103 | 104 | # DotCover is a Code Coverage Tool 105 | *.dotCover 106 | 107 | # NCrunch 108 | *.ncrunch* 109 | .*crunch*.local.xml 110 | 111 | # Installshield output folder 112 | [Ee]xpress/ 113 | 114 | # DocProject is a documentation generator add-in 115 | DocProject/buildhelp/ 116 | DocProject/Help/*.HxT 117 | DocProject/Help/*.HxC 118 | DocProject/Help/*.hhc 119 | DocProject/Help/*.hhk 120 | DocProject/Help/*.hhp 121 | DocProject/Help/Html2 122 | DocProject/Help/html 123 | 124 | # Click-Once directory 125 | publish/ 126 | 127 | # Publish Web Output 128 | *.Publish.xml 129 | *.pubxml 130 | 131 | # NuGet Packages Directory 132 | ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 133 | #packages/ 134 | 135 | # Windows Azure Build Output 136 | csx 137 | *.build.csdef 138 | 139 | # Windows Store app package directory 140 | AppPackages/ 141 | 142 | # Others 143 | sql/ 144 | *.Cache 145 | ClientBin/ 146 | [Ss]tyle[Cc]op.* 147 | ~$* 148 | *~ 149 | *.dbmdl 150 | *.[Pp]ublish.xml 151 | *.pfx 152 | *.publishsettings 153 | 154 | # RIA/Silverlight projects 155 | Generated_Code/ 156 | 157 | # Backup & report files from converting an old project file to a newer 158 | # Visual Studio version. Backup files are not needed, because we have git ;-) 159 | _UpgradeReport_Files/ 160 | Backup*/ 161 | UpgradeLog*.XML 162 | UpgradeLog*.htm 163 | 164 | # SQL Server files 165 | App_Data/*.mdf 166 | App_Data/*.ldf 167 | 168 | ############# 169 | ## Windows detritus 170 | ############# 171 | 172 | # Windows image file caches 173 | Thumbs.db 174 | ehthumbs.db 175 | 176 | # Folder config file 177 | Desktop.ini 178 | 179 | # Recycle Bin used on file shares 180 | $RECYCLE.BIN/ 181 | 182 | # Mac crap 183 | .DS_Store 184 | 185 | 186 | ############# 187 | ## Python 188 | ############# 189 | 190 | *.py[co] 191 | 192 | # Packages 193 | *.egg 194 | *.egg-info 195 | dist/ 196 | build/ 197 | eggs/ 198 | parts/ 199 | var/ 200 | sdist/ 201 | develop-eggs/ 202 | .installed.cfg 203 | 204 | # Installer logs 205 | pip-log.txt 206 | 207 | # Unit test / coverage reports 208 | .coverage 209 | .tox 210 | 211 | #Translations 212 | *.mo 213 | 214 | #Mr Developer 215 | .mr.developer.cfg 216 | -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/3.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 高仿墨迹天气 2 | ================= 3 | 4 | 这是一份关于天气的源码,保存,以供参考。 5 | 6 | 里面的天气的信息获取和显示,widget小部件,地区选择可供参考 7 | 8 | 9 | 下载后 Eclipse可以直接导入 10 | 11 | 12 | 13 | 14 | 截图 15 | ============ 16 | ![Example Image][1] 17 | ![Example Image][2] 18 | ![Example Image][3] 19 | 20 | 21 | License 22 | ======= 23 | 24 | Copyright 2012 Wedcel 25 | 26 | Licensed under the Apache License, Version 2.0 (the "License"); 27 | you may not use this file except in compliance with the License. 28 | You may obtain a copy of the License at 29 | 30 | http://www.apache.org/licenses/LICENSE-2.0 31 | 32 | Unless required by applicable law or agreed to in writing, software 33 | distributed under the License is distributed on an "AS IS" BASIS, 34 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 35 | See the License for the specific language governing permissions and 36 | limitations under the License. 37 | 38 | 39 | 40 | 41 | 42 | [1]:1.png 43 | [2]:2.png 44 | [3]:3.png 45 | 46 | -------------------------------------------------------------------------------- /Weather/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 50 | 51 | 52 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 69 | 70 | 71 | 74 | 75 | 76 | 77 | 78 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /Weather/assets/city.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/assets/city.db -------------------------------------------------------------------------------- /Weather/gen/com/way/weather/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.way.weather; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Weather/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Weather/libs/armeabi/liblocSDK3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/libs/armeabi/liblocSDK3.so -------------------------------------------------------------------------------- /Weather/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /Weather/libs/locSDK_3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/libs/locSDK_3.3.jar -------------------------------------------------------------------------------- /Weather/libs/pinyin4j-2.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/libs/pinyin4j-2.5.0.jar -------------------------------------------------------------------------------- /Weather/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Weather/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /Weather/res/anim/base_loading_large_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /Weather/res/anim/base_loading_small_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /Weather/res/anim/title_update_anim.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/ab_solid_custom_blue_inverse_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/ab_solid_custom_blue_inverse_holo.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/actionbar_btn_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/actionbar_btn_pressed.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/alert.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_action_bar_back_divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_action_bar_back_divider.jpg -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_action_bar_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_action_bar_back_normal.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_action_bar_icon_background_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_action_bar_icon_background_pressed.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_list_divider_drawable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_list_divider_drawable.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_list_scrollbar_handle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_list_scrollbar_handle.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_list_selector_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_list_selector_disabled.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_list_selector_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_list_selector_pressed.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_loading_large_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_loading_large_icon.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_loading_small_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_loading_small_icon.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_search_edittext_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_search_edittext_bg.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/base_search_edittext_bg_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/base_search_edittext_bg_focused.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/biz_news_column_subscribe_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/biz_news_column_subscribe_search_icon.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/biz_plugin_weather_indicator_popup_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/biz_plugin_weather_indicator_popup_bg.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/biz_plugin_weather_selectcity_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/biz_plugin_weather_selectcity_empty.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/biz_plugin_weather_selectcity_index_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/biz_plugin_weather_selectcity_index_bg.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/biz_plugin_weather_sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/biz_plugin_weather_sunny.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/btn_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/btn_default.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/btn_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/btn_press.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/button_bg_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/button_bg_press.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/focused.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/global_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/global_bg.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/global_list_grain_bg_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/global_list_grain_bg_pressed.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/loading_bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/loading_bg2.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/na.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nofocused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nofocused.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw0.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw1.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw2.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw3.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw4.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw5.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw6.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw7.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw8.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/nw9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/nw9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/separator_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/separator_bg.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/sns_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/sns_title_bg.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/switch_camera_hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/switch_camera_hide.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/time_mask_pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/time_mask_pt.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w0.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w1.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w10.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w13.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w14.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w15.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w16.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w17.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w18.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w19.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w2.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w20.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w21.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w29.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w3.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w30.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w31.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w32.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w33.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w34.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w35.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w36.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w4.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w5.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w6.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w7.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w8.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w9.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w_am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w_am.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w_amw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w_amw.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w_pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w_pm.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/w_pmw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/w_pmw.png -------------------------------------------------------------------------------- /Weather/res/drawable-hdpi/widget_4x2_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-hdpi/widget_4x2_grey.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/base_action_bar_action_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/base_action_bar_action_city.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/base_action_bar_back_divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/base_action_bar_back_divider.jpg -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/base_action_bar_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/base_action_bar_share.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_0_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_0_50.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_101_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_101_150.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_151_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_151_200.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_201_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_201_300.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_51_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_51_100.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_baoxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_baoxue.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_baoyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_baoyu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_dabaoyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_dabaoyu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_daxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_daxue.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_dayu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_dayu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_duoyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_duoyun.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_greater_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_greater_300.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_leizhenyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_leizhenyu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_leizhenyubingbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_leizhenyubingbao.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_qing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_qing.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_shachenbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_shachenbao.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_shenzhen_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_shenzhen_bg.jpg -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_tedabaoyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_tedabaoyu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_wu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_wu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_xiaoxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_xiaoxue.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_xiaoyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_xiaoyu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_yin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_yin.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_yujiaxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_yujiaxue.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_zhenxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_zhenxue.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_zhenyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_zhenyu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_zhongxue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_zhongxue.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/biz_plugin_weather_zhongyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/biz_plugin_weather_zhongyu.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/button_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/button_transparent.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/contact_search_box_edittext_keyword_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/contact_search_box_edittext_keyword_background.9.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/cross.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/magnifying_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/magnifying_glass.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/main_titlebar_division.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/main_titlebar_division.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/search_box_cancel_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/search_box_cancel_click.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/search_box_cancel_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/search_box_cancel_normal.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/share_pressed_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/share_pressed_gray.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/title_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/title_city.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/title_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/title_location.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/title_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/title_share.png -------------------------------------------------------------------------------- /Weather/res/drawable-xhdpi/title_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedcel/MoJiWeather/a3056d942d0e9df650ad1c7da8ab2668679aee2c/Weather/res/drawable-xhdpi/title_update.png -------------------------------------------------------------------------------- /Weather/res/drawable/actionbar_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 22 | -------------------------------------------------------------------------------- /Weather/res/drawable/actionbar_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Weather/res/drawable/actionbar_btn_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 18 | 22 | -------------------------------------------------------------------------------- /Weather/res/drawable/base_list_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Weather/res/drawable/base_search_edittext_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Weather/res/drawable/button_press.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Weather/res/drawable/contact_search_box_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Weather/res/drawable/custom_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Weather/res/drawable/hot_area_press.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Weather/res/drawable/kaixin_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /Weather/res/drawable/kaixin_list_item_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Weather/res/drawable/search_box_cancel_btn_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Weather/res/drawable/share_press_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Weather/res/drawable/title_city_update_press.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Weather/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 17 | 18 | 23 | 24 | 31 | 32 | 40 | 41 | 47 | 48 | 49 | 57 | -------------------------------------------------------------------------------- /Weather/res/layout/base_load_empty_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 14 | 15 | 23 | 24 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_indicator_popup.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 14 | 15 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_ip_query_city.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 17 | 18 | 24 | 25 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 14 | 15 | 23 | 24 | 31 | 32 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_item_first.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 18 | 19 | 31 | 42 | 43 | 50 | 51 | 59 | 60 | 64 | 65 | 73 | 74 | 82 | 83 | 84 | 90 | 91 | 92 | 101 | 102 | 103 | 109 | android:layout_alignParentLeft="true" 110 | 111 | 117 | android:layout_alignParentLeft="true" 118 | 119 | 130 | 131 | 142 | 143 | 154 | 155 | 166 | 167 | 168 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | 18 | 19 | 28 | 29 | 38 | 39 | 40 | 47 | 48 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_list_group_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_more_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 20 | 21 | 31 | 32 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_select_city.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 13 | 14 | 18 | 19 | 27 | 28 | 36 | 37 | 45 | 46 | 56 | 57 | 58 | 62 | 63 | 88 | 89 | 94 | 95 | 100 | 101 | 105 | 106 | 113 | 114 | 119 | 120 | 130 | 131 | 132 | 136 | 137 | 145 | 146 | 154 | 155 | 156 | 157 | 158 | -------------------------------------------------------------------------------- /Weather/res/layout/biz_plugin_weather_subitem.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 18 | 19 | 25 | 26 | 33 | 34 | 48 | 49 | 59 | 60 | 74 | 75 | -------------------------------------------------------------------------------- /Weather/res/layout/main_title.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 15 | 16 | 22 | 23 | 29 | 30 | 31 | 42 | 43 | 50 | 51 | 57 | 58 | 64 | 65 | 73 | 74 | 80 | 81 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /Weather/res/layout/pageturning_h.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 16 | 17 | 27 | 28 | 32 | 33 | 37 | 38 | 45 | 46 | 47 | 51 | 52 | 59 | 60 | 61 | 62 | 72 | 73 | -------------------------------------------------------------------------------- /Weather/res/layout/pageturning_m.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 16 | 17 | 27 | 28 | 32 | 33 | 37 | 38 | 45 | 46 | 47 | 51 | 52 | 59 | 60 | 143 | 144 | 145 | -------------------------------------------------------------------------------- /Weather/res/layout/r_okcanceldialogview.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 16 | 17 | 26 | 27 | 36 | 37 | 44 | 45 |