└── SimpleWeather
├── .classpath
├── .project
├── .settings
└── org.eclipse.core.resources.prefs
├── AndroidManifest.xml
├── assets
└── weather.ttf
├── bin
├── AndroidManifest.xml
├── R.txt
├── SimpleWeather.apk
├── classes.dex
├── classes
│ ├── android
│ │ └── support
│ │ │ └── v7
│ │ │ └── appcompat
│ │ │ ├── R$anim.class
│ │ │ ├── R$attr.class
│ │ │ ├── R$bool.class
│ │ │ ├── R$color.class
│ │ │ ├── R$dimen.class
│ │ │ ├── R$drawable.class
│ │ │ ├── R$id.class
│ │ │ ├── R$integer.class
│ │ │ ├── R$layout.class
│ │ │ ├── R$string.class
│ │ │ ├── R$style.class
│ │ │ ├── R$styleable.class
│ │ │ └── R.class
│ └── com
│ │ └── redorigami
│ │ └── simpleweather
│ │ ├── BuildConfig.class
│ │ ├── CityPreference.class
│ │ ├── R$anim.class
│ │ ├── R$attr.class
│ │ ├── R$bool.class
│ │ ├── R$color.class
│ │ ├── R$dimen.class
│ │ ├── R$drawable.class
│ │ ├── R$id.class
│ │ ├── R$integer.class
│ │ ├── R$layout.class
│ │ ├── R$menu.class
│ │ ├── R$string.class
│ │ ├── R$style.class
│ │ ├── R$styleable.class
│ │ ├── R.class
│ │ ├── RemoteFetch.class
│ │ ├── WeatherActivity$1.class
│ │ ├── WeatherActivity.class
│ │ ├── WeatherFragment$1$1.class
│ │ ├── WeatherFragment$1$2.class
│ │ ├── WeatherFragment$1.class
│ │ └── WeatherFragment.class
├── dexedLibs
│ ├── android-support-v4-1859c76b6abf731bd4d15e463a4aa4e3.jar
│ ├── android-support-v7-appcompat-54f4d300173f0099c5efdbd673b2132e.jar
│ └── appcompat_v7-011f22e335f25ad01ccee9238f0e28a8.jar
├── jarlist.cache
├── res
│ └── crunch
│ │ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ │ └── drawable-xxhdpi
│ │ └── ic_launcher.png
└── resources.ap_
├── gen
├── android
│ └── support
│ │ └── v7
│ │ └── appcompat
│ │ └── R.java
└── com
│ └── redorigami
│ └── simpleweather
│ ├── BuildConfig.java
│ └── R.java
├── ic_launcher-web.png
├── libs
└── android-support-v4.jar
├── proguard-project.txt
├── project.properties
├── res
├── drawable-hdpi
│ └── ic_launcher.png
├── drawable-mdpi
│ └── ic_launcher.png
├── drawable-xhdpi
│ └── ic_launcher.png
├── drawable-xxhdpi
│ └── ic_launcher.png
├── layout
│ ├── activity_weather.xml
│ └── fragment_weather.xml
├── menu
│ └── weather.xml
├── values-v11
│ └── styles.xml
├── values-v14
│ └── styles.xml
├── values-w820dp
│ └── dimens.xml
└── values
│ ├── dimens.xml
│ ├── strings.xml
│ └── styles.xml
└── src
└── com
└── redorigami
└── simpleweather
├── CityPreference.java
├── RemoteFetch.java
├── WeatherActivity.java
└── WeatherFragment.java
/SimpleWeather/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/SimpleWeather/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | SimpleWeather
4 |
5 |
6 |
7 |
8 |
9 | com.android.ide.eclipse.adt.ResourceManagerBuilder
10 |
11 |
12 |
13 |
14 | com.android.ide.eclipse.adt.PreCompilerBuilder
15 |
16 |
17 |
18 |
19 | org.eclipse.jdt.core.javabuilder
20 |
21 |
22 |
23 |
24 | com.android.ide.eclipse.adt.ApkBuilder
25 |
26 |
27 |
28 |
29 |
30 | com.android.ide.eclipse.adt.AndroidNature
31 | org.eclipse.jdt.core.javanature
32 |
33 |
34 |
--------------------------------------------------------------------------------
/SimpleWeather/.settings/org.eclipse.core.resources.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | encoding//src/com/redorigami/simpleweather/WeatherFragment.java=UTF-8
3 |
--------------------------------------------------------------------------------
/SimpleWeather/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
12 |
13 |
14 |
15 |
20 |
21 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
34 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/SimpleWeather/assets/weather.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/assets/weather.ttf
--------------------------------------------------------------------------------
/SimpleWeather/bin/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
12 |
13 |
14 |
15 |
20 |
21 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
34 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/SimpleWeather/bin/R.txt:
--------------------------------------------------------------------------------
1 | int anim abc_fade_in 0x7f040000
2 | int anim abc_fade_out 0x7f040001
3 | int anim abc_slide_in_bottom 0x7f040002
4 | int anim abc_slide_in_top 0x7f040003
5 | int anim abc_slide_out_bottom 0x7f040004
6 | int anim abc_slide_out_top 0x7f040005
7 | int attr actionBarDivider 0x7f01000b
8 | int attr actionBarItemBackground 0x7f01000c
9 | int attr actionBarSize 0x7f01000a
10 | int attr actionBarSplitStyle 0x7f010008
11 | int attr actionBarStyle 0x7f010007
12 | int attr actionBarTabBarStyle 0x7f010004
13 | int attr actionBarTabStyle 0x7f010003
14 | int attr actionBarTabTextStyle 0x7f010005
15 | int attr actionBarWidgetTheme 0x7f010009
16 | int attr actionButtonStyle 0x7f010012
17 | int attr actionDropDownStyle 0x7f010043
18 | int attr actionLayout 0x7f01004a
19 | int attr actionMenuTextAppearance 0x7f01000d
20 | int attr actionMenuTextColor 0x7f01000e
21 | int attr actionModeBackground 0x7f010038
22 | int attr actionModeCloseButtonStyle 0x7f010037
23 | int attr actionModeCloseDrawable 0x7f01003a
24 | int attr actionModeCopyDrawable 0x7f01003c
25 | int attr actionModeCutDrawable 0x7f01003b
26 | int attr actionModeFindDrawable 0x7f010040
27 | int attr actionModePasteDrawable 0x7f01003d
28 | int attr actionModePopupWindowStyle 0x7f010042
29 | int attr actionModeSelectAllDrawable 0x7f01003e
30 | int attr actionModeShareDrawable 0x7f01003f
31 | int attr actionModeSplitBackground 0x7f010039
32 | int attr actionModeStyle 0x7f010036
33 | int attr actionModeWebSearchDrawable 0x7f010041
34 | int attr actionOverflowButtonStyle 0x7f010006
35 | int attr actionProviderClass 0x7f01004c
36 | int attr actionViewClass 0x7f01004b
37 | int attr activityChooserViewStyle 0x7f010068
38 | int attr background 0x7f01002b
39 | int attr backgroundSplit 0x7f01002d
40 | int attr backgroundStacked 0x7f01002c
41 | int attr buttonBarButtonStyle 0x7f010014
42 | int attr buttonBarStyle 0x7f010013
43 | int attr customNavigationLayout 0x7f01002e
44 | int attr disableChildrenWhenDisabled 0x7f010050
45 | int attr displayOptions 0x7f010024
46 | int attr divider 0x7f01002a
47 | int attr dividerHorizontal 0x7f010017
48 | int attr dividerPadding 0x7f010052
49 | int attr dividerVertical 0x7f010016
50 | int attr dropDownListViewStyle 0x7f01001d
51 | int attr dropdownListPreferredItemHeight 0x7f010044
52 | int attr expandActivityOverflowButtonDrawable 0x7f010067
53 | int attr height 0x7f010022
54 | int attr homeAsUpIndicator 0x7f01000f
55 | int attr homeLayout 0x7f01002f
56 | int attr icon 0x7f010028
57 | int attr iconifiedByDefault 0x7f010056
58 | int attr indeterminateProgressStyle 0x7f010031
59 | int attr initialActivityCount 0x7f010066
60 | int attr isLightTheme 0x7f010055
61 | int attr itemPadding 0x7f010033
62 | int attr listChoiceBackgroundIndicator 0x7f010048
63 | int attr listPopupWindowStyle 0x7f01001e
64 | int attr listPreferredItemHeight 0x7f010018
65 | int attr listPreferredItemHeightLarge 0x7f01001a
66 | int attr listPreferredItemHeightSmall 0x7f010019
67 | int attr listPreferredItemPaddingLeft 0x7f01001b
68 | int attr listPreferredItemPaddingRight 0x7f01001c
69 | int attr logo 0x7f010029
70 | int attr navigationMode 0x7f010023
71 | int attr paddingEnd 0x7f010035
72 | int attr paddingStart 0x7f010034
73 | int attr panelMenuListTheme 0x7f010047
74 | int attr panelMenuListWidth 0x7f010046
75 | int attr popupMenuStyle 0x7f010045
76 | int attr popupPromptView 0x7f01004f
77 | int attr progressBarPadding 0x7f010032
78 | int attr progressBarStyle 0x7f010030
79 | int attr prompt 0x7f01004d
80 | int attr queryHint 0x7f010057
81 | int attr searchDropdownBackground 0x7f010058
82 | int attr searchResultListItemHeight 0x7f010061
83 | int attr searchViewAutoCompleteTextView 0x7f010065
84 | int attr searchViewCloseIcon 0x7f010059
85 | int attr searchViewEditQuery 0x7f01005d
86 | int attr searchViewEditQueryBackground 0x7f01005e
87 | int attr searchViewGoIcon 0x7f01005a
88 | int attr searchViewSearchIcon 0x7f01005b
89 | int attr searchViewTextField 0x7f01005f
90 | int attr searchViewTextFieldRight 0x7f010060
91 | int attr searchViewVoiceIcon 0x7f01005c
92 | int attr selectableItemBackground 0x7f010015
93 | int attr showAsAction 0x7f010049
94 | int attr showDividers 0x7f010051
95 | int attr spinnerDropDownItemStyle 0x7f010054
96 | int attr spinnerMode 0x7f01004e
97 | int attr spinnerStyle 0x7f010053
98 | int attr subtitle 0x7f010025
99 | int attr subtitleTextStyle 0x7f010027
100 | int attr textAllCaps 0x7f010069
101 | int attr textAppearanceLargePopupMenu 0x7f010010
102 | int attr textAppearanceListItem 0x7f01001f
103 | int attr textAppearanceListItemSmall 0x7f010020
104 | int attr textAppearanceSearchResultSubtitle 0x7f010063
105 | int attr textAppearanceSearchResultTitle 0x7f010062
106 | int attr textAppearanceSmallPopupMenu 0x7f010011
107 | int attr textColorSearchUrl 0x7f010064
108 | int attr title 0x7f010021
109 | int attr titleTextStyle 0x7f010026
110 | int attr windowActionBar 0x7f010000
111 | int attr windowActionBarOverlay 0x7f010001
112 | int attr windowSplitActionBar 0x7f010002
113 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f060000
114 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f060001
115 | int bool abc_config_actionMenuItemAllCaps 0x7f060005
116 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004
117 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060003
118 | int bool abc_split_action_bar_is_narrow 0x7f060002
119 | int color abc_search_url_text_holo 0x7f070003
120 | int color abc_search_url_text_normal 0x7f070000
121 | int color abc_search_url_text_pressed 0x7f070002
122 | int color abc_search_url_text_selected 0x7f070001
123 | int dimen abc_action_bar_default_height 0x7f080002
124 | int dimen abc_action_bar_icon_vertical_padding 0x7f080003
125 | int dimen abc_action_bar_progress_bar_size 0x7f08000a
126 | int dimen abc_action_bar_stacked_max_height 0x7f080009
127 | int dimen abc_action_bar_stacked_tab_max_width 0x7f080001
128 | int dimen abc_action_bar_subtitle_bottom_margin 0x7f080007
129 | int dimen abc_action_bar_subtitle_text_size 0x7f080005
130 | int dimen abc_action_bar_subtitle_top_margin 0x7f080006
131 | int dimen abc_action_bar_title_text_size 0x7f080004
132 | int dimen abc_action_button_min_width 0x7f080008
133 | int dimen abc_config_prefDialogWidth 0x7f080000
134 | int dimen abc_dropdownitem_icon_width 0x7f080010
135 | int dimen abc_dropdownitem_text_padding_left 0x7f08000e
136 | int dimen abc_dropdownitem_text_padding_right 0x7f08000f
137 | int dimen abc_panel_menu_list_width 0x7f08000b
138 | int dimen abc_search_view_preferred_width 0x7f08000d
139 | int dimen abc_search_view_text_min_width 0x7f08000c
140 | int dimen activity_horizontal_margin 0x7f080011
141 | int dimen activity_vertical_margin 0x7f080012
142 | int drawable abc_ab_bottom_solid_dark_holo 0x7f020000
143 | int drawable abc_ab_bottom_solid_light_holo 0x7f020001
144 | int drawable abc_ab_bottom_transparent_dark_holo 0x7f020002
145 | int drawable abc_ab_bottom_transparent_light_holo 0x7f020003
146 | int drawable abc_ab_share_pack_holo_dark 0x7f020004
147 | int drawable abc_ab_share_pack_holo_light 0x7f020005
148 | int drawable abc_ab_solid_dark_holo 0x7f020006
149 | int drawable abc_ab_solid_light_holo 0x7f020007
150 | int drawable abc_ab_stacked_solid_dark_holo 0x7f020008
151 | int drawable abc_ab_stacked_solid_light_holo 0x7f020009
152 | int drawable abc_ab_stacked_transparent_dark_holo 0x7f02000a
153 | int drawable abc_ab_stacked_transparent_light_holo 0x7f02000b
154 | int drawable abc_ab_transparent_dark_holo 0x7f02000c
155 | int drawable abc_ab_transparent_light_holo 0x7f02000d
156 | int drawable abc_cab_background_bottom_holo_dark 0x7f02000e
157 | int drawable abc_cab_background_bottom_holo_light 0x7f02000f
158 | int drawable abc_cab_background_top_holo_dark 0x7f020010
159 | int drawable abc_cab_background_top_holo_light 0x7f020011
160 | int drawable abc_ic_ab_back_holo_dark 0x7f020012
161 | int drawable abc_ic_ab_back_holo_light 0x7f020013
162 | int drawable abc_ic_cab_done_holo_dark 0x7f020014
163 | int drawable abc_ic_cab_done_holo_light 0x7f020015
164 | int drawable abc_ic_clear 0x7f020016
165 | int drawable abc_ic_clear_disabled 0x7f020017
166 | int drawable abc_ic_clear_holo_light 0x7f020018
167 | int drawable abc_ic_clear_normal 0x7f020019
168 | int drawable abc_ic_clear_search_api_disabled_holo_light 0x7f02001a
169 | int drawable abc_ic_clear_search_api_holo_light 0x7f02001b
170 | int drawable abc_ic_commit_search_api_holo_dark 0x7f02001c
171 | int drawable abc_ic_commit_search_api_holo_light 0x7f02001d
172 | int drawable abc_ic_go 0x7f02001e
173 | int drawable abc_ic_go_search_api_holo_light 0x7f02001f
174 | int drawable abc_ic_menu_moreoverflow_normal_holo_dark 0x7f020020
175 | int drawable abc_ic_menu_moreoverflow_normal_holo_light 0x7f020021
176 | int drawable abc_ic_menu_share_holo_dark 0x7f020022
177 | int drawable abc_ic_menu_share_holo_light 0x7f020023
178 | int drawable abc_ic_search 0x7f020024
179 | int drawable abc_ic_search_api_holo_light 0x7f020025
180 | int drawable abc_ic_voice_search 0x7f020026
181 | int drawable abc_ic_voice_search_api_holo_light 0x7f020027
182 | int drawable abc_item_background_holo_dark 0x7f020028
183 | int drawable abc_item_background_holo_light 0x7f020029
184 | int drawable abc_list_divider_holo_dark 0x7f02002a
185 | int drawable abc_list_divider_holo_light 0x7f02002b
186 | int drawable abc_list_focused_holo 0x7f02002c
187 | int drawable abc_list_longpressed_holo 0x7f02002d
188 | int drawable abc_list_pressed_holo_dark 0x7f02002e
189 | int drawable abc_list_pressed_holo_light 0x7f02002f
190 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020030
191 | int drawable abc_list_selector_background_transition_holo_light 0x7f020031
192 | int drawable abc_list_selector_disabled_holo_dark 0x7f020032
193 | int drawable abc_list_selector_disabled_holo_light 0x7f020033
194 | int drawable abc_list_selector_holo_dark 0x7f020034
195 | int drawable abc_list_selector_holo_light 0x7f020035
196 | int drawable abc_menu_dropdown_panel_holo_dark 0x7f020036
197 | int drawable abc_menu_dropdown_panel_holo_light 0x7f020037
198 | int drawable abc_menu_hardkey_panel_holo_dark 0x7f020038
199 | int drawable abc_menu_hardkey_panel_holo_light 0x7f020039
200 | int drawable abc_search_dropdown_dark 0x7f02003a
201 | int drawable abc_search_dropdown_light 0x7f02003b
202 | int drawable abc_spinner_ab_default_holo_dark 0x7f02003c
203 | int drawable abc_spinner_ab_default_holo_light 0x7f02003d
204 | int drawable abc_spinner_ab_disabled_holo_dark 0x7f02003e
205 | int drawable abc_spinner_ab_disabled_holo_light 0x7f02003f
206 | int drawable abc_spinner_ab_focused_holo_dark 0x7f020040
207 | int drawable abc_spinner_ab_focused_holo_light 0x7f020041
208 | int drawable abc_spinner_ab_holo_dark 0x7f020042
209 | int drawable abc_spinner_ab_holo_light 0x7f020043
210 | int drawable abc_spinner_ab_pressed_holo_dark 0x7f020044
211 | int drawable abc_spinner_ab_pressed_holo_light 0x7f020045
212 | int drawable abc_tab_indicator_ab_holo 0x7f020046
213 | int drawable abc_tab_selected_focused_holo 0x7f020047
214 | int drawable abc_tab_selected_holo 0x7f020048
215 | int drawable abc_tab_selected_pressed_holo 0x7f020049
216 | int drawable abc_tab_unselected_pressed_holo 0x7f02004a
217 | int drawable abc_textfield_search_default_holo_dark 0x7f02004b
218 | int drawable abc_textfield_search_default_holo_light 0x7f02004c
219 | int drawable abc_textfield_search_right_default_holo_dark 0x7f02004d
220 | int drawable abc_textfield_search_right_default_holo_light 0x7f02004e
221 | int drawable abc_textfield_search_right_selected_holo_dark 0x7f02004f
222 | int drawable abc_textfield_search_right_selected_holo_light 0x7f020050
223 | int drawable abc_textfield_search_selected_holo_dark 0x7f020051
224 | int drawable abc_textfield_search_selected_holo_light 0x7f020052
225 | int drawable abc_textfield_searchview_holo_dark 0x7f020053
226 | int drawable abc_textfield_searchview_holo_light 0x7f020054
227 | int drawable abc_textfield_searchview_right_holo_dark 0x7f020055
228 | int drawable abc_textfield_searchview_right_holo_light 0x7f020056
229 | int drawable ic_launcher 0x7f020057
230 | int id action_bar 0x7f05001c
231 | int id action_bar_activity_content 0x7f050015
232 | int id action_bar_container 0x7f05001b
233 | int id action_bar_overlay_layout 0x7f05001f
234 | int id action_bar_root 0x7f05001a
235 | int id action_bar_subtitle 0x7f050023
236 | int id action_bar_title 0x7f050022
237 | int id action_context_bar 0x7f05001d
238 | int id action_menu_divider 0x7f050016
239 | int id action_menu_presenter 0x7f050017
240 | int id action_mode_close_button 0x7f050024
241 | int id activity_chooser_view_content 0x7f050025
242 | int id always 0x7f05000b
243 | int id beginning 0x7f050011
244 | int id change_city 0x7f050042
245 | int id checkbox 0x7f05002d
246 | int id city_field 0x7f05003d
247 | int id collapseActionView 0x7f05000d
248 | int id container 0x7f05003c
249 | int id current_temperature_field 0x7f050040
250 | int id default_activity_button 0x7f050028
251 | int id details_field 0x7f050041
252 | int id dialog 0x7f05000e
253 | int id disableHome 0x7f050008
254 | int id dropdown 0x7f05000f
255 | int id edit_query 0x7f050030
256 | int id end 0x7f050013
257 | int id expand_activities_button 0x7f050026
258 | int id expanded_menu 0x7f05002c
259 | int id home 0x7f050014
260 | int id homeAsUp 0x7f050005
261 | int id icon 0x7f05002a
262 | int id ifRoom 0x7f05000a
263 | int id image 0x7f050027
264 | int id listMode 0x7f050001
265 | int id list_item 0x7f050029
266 | int id middle 0x7f050012
267 | int id never 0x7f050009
268 | int id none 0x7f050010
269 | int id normal 0x7f050000
270 | int id progress_circular 0x7f050018
271 | int id progress_horizontal 0x7f050019
272 | int id radio 0x7f05002f
273 | int id search_badge 0x7f050032
274 | int id search_bar 0x7f050031
275 | int id search_button 0x7f050033
276 | int id search_close_btn 0x7f050038
277 | int id search_edit_frame 0x7f050034
278 | int id search_go_btn 0x7f05003a
279 | int id search_mag_icon 0x7f050035
280 | int id search_plate 0x7f050036
281 | int id search_src_text 0x7f050037
282 | int id search_voice_btn 0x7f05003b
283 | int id shortcut 0x7f05002e
284 | int id showCustom 0x7f050007
285 | int id showHome 0x7f050004
286 | int id showTitle 0x7f050006
287 | int id split_action_bar 0x7f05001e
288 | int id submit_area 0x7f050039
289 | int id tabMode 0x7f050002
290 | int id title 0x7f05002b
291 | int id top_action_bar 0x7f050020
292 | int id up 0x7f050021
293 | int id updated_field 0x7f05003e
294 | int id useLogo 0x7f050003
295 | int id weather_icon 0x7f05003f
296 | int id withText 0x7f05000c
297 | int integer abc_max_action_buttons 0x7f090000
298 | int layout abc_action_bar_decor 0x7f030000
299 | int layout abc_action_bar_decor_include 0x7f030001
300 | int layout abc_action_bar_decor_overlay 0x7f030002
301 | int layout abc_action_bar_home 0x7f030003
302 | int layout abc_action_bar_tab 0x7f030004
303 | int layout abc_action_bar_tabbar 0x7f030005
304 | int layout abc_action_bar_title_item 0x7f030006
305 | int layout abc_action_bar_view_list_nav_layout 0x7f030007
306 | int layout abc_action_menu_item_layout 0x7f030008
307 | int layout abc_action_menu_layout 0x7f030009
308 | int layout abc_action_mode_bar 0x7f03000a
309 | int layout abc_action_mode_close_item 0x7f03000b
310 | int layout abc_activity_chooser_view 0x7f03000c
311 | int layout abc_activity_chooser_view_include 0x7f03000d
312 | int layout abc_activity_chooser_view_list_item 0x7f03000e
313 | int layout abc_expanded_menu_layout 0x7f03000f
314 | int layout abc_list_menu_item_checkbox 0x7f030010
315 | int layout abc_list_menu_item_icon 0x7f030011
316 | int layout abc_list_menu_item_layout 0x7f030012
317 | int layout abc_list_menu_item_radio 0x7f030013
318 | int layout abc_popup_menu_item_layout 0x7f030014
319 | int layout abc_search_dropdown_item_icons_2line 0x7f030015
320 | int layout abc_search_view 0x7f030016
321 | int layout activity_weather 0x7f030017
322 | int layout fragment_weather 0x7f030018
323 | int layout support_simple_spinner_dropdown_item 0x7f030019
324 | int menu weather 0x7f0c0000
325 | int string abc_action_bar_home_description 0x7f0a0001
326 | int string abc_action_bar_up_description 0x7f0a0002
327 | int string abc_action_menu_overflow_description 0x7f0a0003
328 | int string abc_action_mode_done 0x7f0a0000
329 | int string abc_activity_chooser_view_see_all 0x7f0a000a
330 | int string abc_activitychooserview_choose_application 0x7f0a0009
331 | int string abc_searchview_description_clear 0x7f0a0006
332 | int string abc_searchview_description_query 0x7f0a0005
333 | int string abc_searchview_description_search 0x7f0a0004
334 | int string abc_searchview_description_submit 0x7f0a0007
335 | int string abc_searchview_description_voice 0x7f0a0008
336 | int string abc_shareactionprovider_share_with 0x7f0a000c
337 | int string abc_shareactionprovider_share_with_application 0x7f0a000b
338 | int string app_name 0x7f0a000d
339 | int string change_city 0x7f0a000e
340 | int string open_weather_maps_app_id 0x7f0a000f
341 | int string place_not_found 0x7f0a0018
342 | int string weather_clear_night 0x7f0a0011
343 | int string weather_cloudy 0x7f0a0013
344 | int string weather_drizzle 0x7f0a0017
345 | int string weather_foggy 0x7f0a0012
346 | int string weather_rainy 0x7f0a0014
347 | int string weather_snowy 0x7f0a0015
348 | int string weather_sunny 0x7f0a0010
349 | int string weather_thunder 0x7f0a0016
350 | int style AppBaseTheme 0x7f0b0083
351 | int style AppTheme 0x7f0b0084
352 | int style TextAppearance_AppCompat_Base_CompactMenu_Dialog 0x7f0b0063
353 | int style TextAppearance_AppCompat_Base_SearchResult 0x7f0b006d
354 | int style TextAppearance_AppCompat_Base_SearchResult_Subtitle 0x7f0b006f
355 | int style TextAppearance_AppCompat_Base_SearchResult_Title 0x7f0b006e
356 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Large 0x7f0b0069
357 | int style TextAppearance_AppCompat_Base_Widget_PopupMenu_Small 0x7f0b006a
358 | int style TextAppearance_AppCompat_Light_Base_SearchResult 0x7f0b0070
359 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle 0x7f0b0072
360 | int style TextAppearance_AppCompat_Light_Base_SearchResult_Title 0x7f0b0071
361 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large 0x7f0b006b
362 | int style TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small 0x7f0b006c
363 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0035
364 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0034
365 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0030
366 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0031
367 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0033
368 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b0032
369 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b001a
370 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0006
371 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0008
372 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0005
373 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0007
374 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b001e
375 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0020
376 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b001d
377 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b001f
378 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Menu 0x7f0b0054
379 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle 0x7f0b0056
380 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse 0x7f0b0058
381 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title 0x7f0b0055
382 | int style TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse 0x7f0b0057
383 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle 0x7f0b0051
384 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse 0x7f0b0053
385 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title 0x7f0b0050
386 | int style TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse 0x7f0b0052
387 | int style TextAppearance_AppCompat_Widget_Base_DropDownItem 0x7f0b0061
388 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0021
389 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b002e
390 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b002f
391 | int style TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item 0x7f0b0062
392 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0028
393 | int style Theme_AppCompat 0x7f0b0077
394 | int style Theme_AppCompat_Base_CompactMenu 0x7f0b0081
395 | int style Theme_AppCompat_Base_CompactMenu_Dialog 0x7f0b0082
396 | int style Theme_AppCompat_CompactMenu 0x7f0b007a
397 | int style Theme_AppCompat_CompactMenu_Dialog 0x7f0b007b
398 | int style Theme_AppCompat_Light 0x7f0b0078
399 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0079
400 | int style Theme_Base 0x7f0b007c
401 | int style Theme_Base_AppCompat 0x7f0b007e
402 | int style Theme_Base_AppCompat_Light 0x7f0b007f
403 | int style Theme_Base_AppCompat_Light_DarkActionBar 0x7f0b0080
404 | int style Theme_Base_Light 0x7f0b007d
405 | int style Widget_AppCompat_ActionBar 0x7f0b0000
406 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002
407 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0011
408 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0017
409 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b0014
410 | int style Widget_AppCompat_ActionButton 0x7f0b000b
411 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000d
412 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000f
413 | int style Widget_AppCompat_ActionMode 0x7f0b001b
414 | int style Widget_AppCompat_ActivityChooserView 0x7f0b0038
415 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b0036
416 | int style Widget_AppCompat_Base_ActionBar 0x7f0b003a
417 | int style Widget_AppCompat_Base_ActionBar_Solid 0x7f0b003c
418 | int style Widget_AppCompat_Base_ActionBar_TabBar 0x7f0b0045
419 | int style Widget_AppCompat_Base_ActionBar_TabText 0x7f0b004b
420 | int style Widget_AppCompat_Base_ActionBar_TabView 0x7f0b0048
421 | int style Widget_AppCompat_Base_ActionButton 0x7f0b003f
422 | int style Widget_AppCompat_Base_ActionButton_CloseMode 0x7f0b0041
423 | int style Widget_AppCompat_Base_ActionButton_Overflow 0x7f0b0043
424 | int style Widget_AppCompat_Base_ActionMode 0x7f0b004e
425 | int style Widget_AppCompat_Base_ActivityChooserView 0x7f0b0075
426 | int style Widget_AppCompat_Base_AutoCompleteTextView 0x7f0b0073
427 | int style Widget_AppCompat_Base_DropDownItem_Spinner 0x7f0b005d
428 | int style Widget_AppCompat_Base_ListPopupWindow 0x7f0b0065
429 | int style Widget_AppCompat_Base_ListView_DropDown 0x7f0b005f
430 | int style Widget_AppCompat_Base_ListView_Menu 0x7f0b0064
431 | int style Widget_AppCompat_Base_PopupMenu 0x7f0b0067
432 | int style Widget_AppCompat_Base_ProgressBar 0x7f0b005a
433 | int style Widget_AppCompat_Base_ProgressBar_Horizontal 0x7f0b0059
434 | int style Widget_AppCompat_Base_Spinner 0x7f0b005b
435 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0024
436 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001
437 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003
438 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0004
439 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0012
440 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0013
441 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0018
442 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0019
443 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0015
444 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0016
445 | int style Widget_AppCompat_Light_ActionButton 0x7f0b000c
446 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b000e
447 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0010
448 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b001c
449 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0039
450 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0037
451 | int style Widget_AppCompat_Light_Base_ActionBar 0x7f0b003b
452 | int style Widget_AppCompat_Light_Base_ActionBar_Solid 0x7f0b003d
453 | int style Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse 0x7f0b003e
454 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar 0x7f0b0046
455 | int style Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse 0x7f0b0047
456 | int style Widget_AppCompat_Light_Base_ActionBar_TabText 0x7f0b004c
457 | int style Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse 0x7f0b004d
458 | int style Widget_AppCompat_Light_Base_ActionBar_TabView 0x7f0b0049
459 | int style Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse 0x7f0b004a
460 | int style Widget_AppCompat_Light_Base_ActionButton 0x7f0b0040
461 | int style Widget_AppCompat_Light_Base_ActionButton_CloseMode 0x7f0b0042
462 | int style Widget_AppCompat_Light_Base_ActionButton_Overflow 0x7f0b0044
463 | int style Widget_AppCompat_Light_Base_ActionMode_Inverse 0x7f0b004f
464 | int style Widget_AppCompat_Light_Base_ActivityChooserView 0x7f0b0076
465 | int style Widget_AppCompat_Light_Base_AutoCompleteTextView 0x7f0b0074
466 | int style Widget_AppCompat_Light_Base_DropDownItem_Spinner 0x7f0b005e
467 | int style Widget_AppCompat_Light_Base_ListPopupWindow 0x7f0b0066
468 | int style Widget_AppCompat_Light_Base_ListView_DropDown 0x7f0b0060
469 | int style Widget_AppCompat_Light_Base_PopupMenu 0x7f0b0068
470 | int style Widget_AppCompat_Light_Base_Spinner 0x7f0b005c
471 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0025
472 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b002a
473 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b0027
474 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b002c
475 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0023
476 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0029
477 | int style Widget_AppCompat_ListView_DropDown 0x7f0b0026
478 | int style Widget_AppCompat_ListView_Menu 0x7f0b002d
479 | int style Widget_AppCompat_PopupMenu 0x7f0b002b
480 | int style Widget_AppCompat_ProgressBar 0x7f0b000a
481 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0009
482 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0022
483 | int[] styleable ActionBar { 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033 }
484 | int styleable ActionBar_background 10
485 | int styleable ActionBar_backgroundSplit 12
486 | int styleable ActionBar_backgroundStacked 11
487 | int styleable ActionBar_customNavigationLayout 13
488 | int styleable ActionBar_displayOptions 3
489 | int styleable ActionBar_divider 9
490 | int styleable ActionBar_height 1
491 | int styleable ActionBar_homeLayout 14
492 | int styleable ActionBar_icon 7
493 | int styleable ActionBar_indeterminateProgressStyle 16
494 | int styleable ActionBar_itemPadding 18
495 | int styleable ActionBar_logo 8
496 | int styleable ActionBar_navigationMode 2
497 | int styleable ActionBar_progressBarPadding 17
498 | int styleable ActionBar_progressBarStyle 15
499 | int styleable ActionBar_subtitle 4
500 | int styleable ActionBar_subtitleTextStyle 6
501 | int styleable ActionBar_title 0
502 | int styleable ActionBar_titleTextStyle 5
503 | int[] styleable ActionBarLayout { 0x010100b3 }
504 | int styleable ActionBarLayout_android_layout_gravity 0
505 | int[] styleable ActionBarWindow { 0x7f010000, 0x7f010001, 0x7f010002 }
506 | int styleable ActionBarWindow_windowActionBar 0
507 | int styleable ActionBarWindow_windowActionBarOverlay 1
508 | int styleable ActionBarWindow_windowSplitActionBar 2
509 | int[] styleable ActionMenuItemView { 0x0101013f }
510 | int styleable ActionMenuItemView_android_minWidth 0
511 | int[] styleable ActionMenuView { }
512 | int[] styleable ActionMode { 0x7f010022, 0x7f010026, 0x7f010027, 0x7f01002b, 0x7f01002d }
513 | int styleable ActionMode_background 3
514 | int styleable ActionMode_backgroundSplit 4
515 | int styleable ActionMode_height 0
516 | int styleable ActionMode_subtitleTextStyle 2
517 | int styleable ActionMode_titleTextStyle 1
518 | int[] styleable ActivityChooserView { 0x7f010066, 0x7f010067 }
519 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
520 | int styleable ActivityChooserView_initialActivityCount 0
521 | int[] styleable CompatTextView { 0x7f010069 }
522 | int styleable CompatTextView_textAllCaps 0
523 | int[] styleable LinearLayoutICS { 0x7f01002a, 0x7f010051, 0x7f010052 }
524 | int styleable LinearLayoutICS_divider 0
525 | int styleable LinearLayoutICS_dividerPadding 2
526 | int styleable LinearLayoutICS_showDividers 1
527 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
528 | int styleable MenuGroup_android_checkableBehavior 5
529 | int styleable MenuGroup_android_enabled 0
530 | int styleable MenuGroup_android_id 1
531 | int styleable MenuGroup_android_menuCategory 3
532 | int styleable MenuGroup_android_orderInCategory 4
533 | int styleable MenuGroup_android_visible 2
534 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c }
535 | int styleable MenuItem_actionLayout 14
536 | int styleable MenuItem_actionProviderClass 16
537 | int styleable MenuItem_actionViewClass 15
538 | int styleable MenuItem_android_alphabeticShortcut 9
539 | int styleable MenuItem_android_checkable 11
540 | int styleable MenuItem_android_checked 3
541 | int styleable MenuItem_android_enabled 1
542 | int styleable MenuItem_android_icon 0
543 | int styleable MenuItem_android_id 2
544 | int styleable MenuItem_android_menuCategory 5
545 | int styleable MenuItem_android_numericShortcut 10
546 | int styleable MenuItem_android_onClick 12
547 | int styleable MenuItem_android_orderInCategory 6
548 | int styleable MenuItem_android_title 7
549 | int styleable MenuItem_android_titleCondensed 8
550 | int styleable MenuItem_android_visible 4
551 | int styleable MenuItem_showAsAction 13
552 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 }
553 | int styleable MenuView_android_headerBackground 4
554 | int styleable MenuView_android_horizontalDivider 2
555 | int styleable MenuView_android_itemBackground 5
556 | int styleable MenuView_android_itemIconDisabledAlpha 6
557 | int styleable MenuView_android_itemTextAppearance 1
558 | int styleable MenuView_android_preserveIconSpacing 7
559 | int styleable MenuView_android_verticalDivider 3
560 | int styleable MenuView_android_windowAnimationStyle 0
561 | int[] styleable SearchView { 0x0101011f, 0x01010220, 0x01010264, 0x7f010056, 0x7f010057 }
562 | int styleable SearchView_android_imeOptions 2
563 | int styleable SearchView_android_inputType 1
564 | int styleable SearchView_android_maxWidth 0
565 | int styleable SearchView_iconifiedByDefault 3
566 | int styleable SearchView_queryHint 4
567 | int[] styleable Spinner { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 }
568 | int styleable Spinner_android_dropDownHorizontalOffset 4
569 | int styleable Spinner_android_dropDownSelector 1
570 | int styleable Spinner_android_dropDownVerticalOffset 5
571 | int styleable Spinner_android_dropDownWidth 3
572 | int styleable Spinner_android_gravity 0
573 | int styleable Spinner_android_popupBackground 2
574 | int styleable Spinner_disableChildrenWhenDisabled 9
575 | int styleable Spinner_popupPromptView 8
576 | int styleable Spinner_prompt 6
577 | int styleable Spinner_spinnerMode 7
578 | int[] styleable Theme { 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048 }
579 | int styleable Theme_actionDropDownStyle 0
580 | int styleable Theme_dropdownListPreferredItemHeight 1
581 | int styleable Theme_listChoiceBackgroundIndicator 5
582 | int styleable Theme_panelMenuListTheme 4
583 | int styleable Theme_panelMenuListWidth 3
584 | int styleable Theme_popupMenuStyle 2
585 | int[] styleable View { 0x010100da, 0x7f010034, 0x7f010035 }
586 | int styleable View_android_focusable 0
587 | int styleable View_paddingEnd 2
588 | int styleable View_paddingStart 1
589 |
--------------------------------------------------------------------------------
/SimpleWeather/bin/SimpleWeather.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/SimpleWeather.apk
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes.dex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes.dex
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$anim.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$attr.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$bool.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$color.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$dimen.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$drawable.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$id.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$integer.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$layout.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$string.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$style.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R$styleable.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/android/support/v7/appcompat/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/android/support/v7/appcompat/R.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/BuildConfig.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/BuildConfig.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/CityPreference.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/CityPreference.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$anim.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$anim.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$attr.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$attr.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$bool.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$bool.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$color.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$color.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$dimen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$dimen.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$drawable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$drawable.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$id.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$id.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$integer.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$integer.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$layout.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$layout.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$menu.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$menu.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$string.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$string.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$style.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$style.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$styleable.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R$styleable.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/R.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/R.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/RemoteFetch.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/RemoteFetch.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherActivity$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherActivity$1.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherActivity.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherActivity.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment$1$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment$1$1.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment$1$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment$1$2.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment$1.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/classes/com/redorigami/simpleweather/WeatherFragment.class
--------------------------------------------------------------------------------
/SimpleWeather/bin/dexedLibs/android-support-v4-1859c76b6abf731bd4d15e463a4aa4e3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/dexedLibs/android-support-v4-1859c76b6abf731bd4d15e463a4aa4e3.jar
--------------------------------------------------------------------------------
/SimpleWeather/bin/dexedLibs/android-support-v7-appcompat-54f4d300173f0099c5efdbd673b2132e.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/dexedLibs/android-support-v7-appcompat-54f4d300173f0099c5efdbd673b2132e.jar
--------------------------------------------------------------------------------
/SimpleWeather/bin/dexedLibs/appcompat_v7-011f22e335f25ad01ccee9238f0e28a8.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/dexedLibs/appcompat_v7-011f22e335f25ad01ccee9238f0e28a8.jar
--------------------------------------------------------------------------------
/SimpleWeather/bin/jarlist.cache:
--------------------------------------------------------------------------------
1 | # cache for current jar dependency. DO NOT EDIT.
2 | # format is
3 | # Encoding is UTF-8
4 | 1390744736237 627582 db0f122c99ef9f90dbab3fada6d191f2880cbb8e C:\Users\gregoryr.NETMATCH\Desktop\coursera_android\workspace\appcompat_v7\libs\android-support-v4.jar
5 | 1415095560257 627582 db0f122c99ef9f90dbab3fada6d191f2880cbb8e C:\Users\gregoryr.NETMATCH\Desktop\coursera_android\workspace\SimpleWeather\libs\android-support-v4.jar
6 |
--------------------------------------------------------------------------------
/SimpleWeather/bin/res/crunch/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/res/crunch/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/bin/res/crunch/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/res/crunch/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/bin/res/crunch/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/res/crunch/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/bin/res/crunch/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/res/crunch/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/bin/resources.ap_:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/bin/resources.ap_
--------------------------------------------------------------------------------
/SimpleWeather/gen/android/support/v7/appcompat/R.java:
--------------------------------------------------------------------------------
1 | /* AUTO-GENERATED FILE. DO NOT MODIFY.
2 | *
3 | * This class was automatically generated by the
4 | * aapt tool from the resource data it found. It
5 | * should not be modified by hand.
6 | */
7 | package android.support.v7.appcompat;
8 |
9 | public final class R {
10 | public static final class anim {
11 | public static final int abc_fade_in = 0x7f040000;
12 | public static final int abc_fade_out = 0x7f040001;
13 | public static final int abc_slide_in_bottom = 0x7f040002;
14 | public static final int abc_slide_in_top = 0x7f040003;
15 | public static final int abc_slide_out_bottom = 0x7f040004;
16 | public static final int abc_slide_out_top = 0x7f040005;
17 | }
18 | public static final class attr {
19 | public static final int actionBarDivider = 0x7f01000b;
20 | public static final int actionBarItemBackground = 0x7f01000c;
21 | public static final int actionBarSize = 0x7f01000a;
22 | public static final int actionBarSplitStyle = 0x7f010008;
23 | public static final int actionBarStyle = 0x7f010007;
24 | public static final int actionBarTabBarStyle = 0x7f010004;
25 | public static final int actionBarTabStyle = 0x7f010003;
26 | public static final int actionBarTabTextStyle = 0x7f010005;
27 | public static final int actionBarWidgetTheme = 0x7f010009;
28 | public static final int actionButtonStyle = 0x7f010012;
29 | public static final int actionDropDownStyle = 0x7f010043;
30 | public static final int actionLayout = 0x7f01004a;
31 | public static final int actionMenuTextAppearance = 0x7f01000d;
32 | public static final int actionMenuTextColor = 0x7f01000e;
33 | public static final int actionModeBackground = 0x7f010038;
34 | public static final int actionModeCloseButtonStyle = 0x7f010037;
35 | public static final int actionModeCloseDrawable = 0x7f01003a;
36 | public static final int actionModeCopyDrawable = 0x7f01003c;
37 | public static final int actionModeCutDrawable = 0x7f01003b;
38 | public static final int actionModeFindDrawable = 0x7f010040;
39 | public static final int actionModePasteDrawable = 0x7f01003d;
40 | public static final int actionModePopupWindowStyle = 0x7f010042;
41 | public static final int actionModeSelectAllDrawable = 0x7f01003e;
42 | public static final int actionModeShareDrawable = 0x7f01003f;
43 | public static final int actionModeSplitBackground = 0x7f010039;
44 | public static final int actionModeStyle = 0x7f010036;
45 | public static final int actionModeWebSearchDrawable = 0x7f010041;
46 | public static final int actionOverflowButtonStyle = 0x7f010006;
47 | public static final int actionProviderClass = 0x7f01004c;
48 | public static final int actionViewClass = 0x7f01004b;
49 | public static final int activityChooserViewStyle = 0x7f010068;
50 | public static final int background = 0x7f01002b;
51 | public static final int backgroundSplit = 0x7f01002d;
52 | public static final int backgroundStacked = 0x7f01002c;
53 | public static final int buttonBarButtonStyle = 0x7f010014;
54 | public static final int buttonBarStyle = 0x7f010013;
55 | public static final int customNavigationLayout = 0x7f01002e;
56 | public static final int disableChildrenWhenDisabled = 0x7f010050;
57 | public static final int displayOptions = 0x7f010024;
58 | public static final int divider = 0x7f01002a;
59 | public static final int dividerHorizontal = 0x7f010017;
60 | public static final int dividerPadding = 0x7f010052;
61 | public static final int dividerVertical = 0x7f010016;
62 | public static final int dropDownListViewStyle = 0x7f01001d;
63 | public static final int dropdownListPreferredItemHeight = 0x7f010044;
64 | public static final int expandActivityOverflowButtonDrawable = 0x7f010067;
65 | public static final int height = 0x7f010022;
66 | public static final int homeAsUpIndicator = 0x7f01000f;
67 | public static final int homeLayout = 0x7f01002f;
68 | public static final int icon = 0x7f010028;
69 | public static final int iconifiedByDefault = 0x7f010056;
70 | public static final int indeterminateProgressStyle = 0x7f010031;
71 | public static final int initialActivityCount = 0x7f010066;
72 | public static final int isLightTheme = 0x7f010055;
73 | public static final int itemPadding = 0x7f010033;
74 | public static final int listChoiceBackgroundIndicator = 0x7f010048;
75 | public static final int listPopupWindowStyle = 0x7f01001e;
76 | public static final int listPreferredItemHeight = 0x7f010018;
77 | public static final int listPreferredItemHeightLarge = 0x7f01001a;
78 | public static final int listPreferredItemHeightSmall = 0x7f010019;
79 | public static final int listPreferredItemPaddingLeft = 0x7f01001b;
80 | public static final int listPreferredItemPaddingRight = 0x7f01001c;
81 | public static final int logo = 0x7f010029;
82 | public static final int navigationMode = 0x7f010023;
83 | public static final int paddingEnd = 0x7f010035;
84 | public static final int paddingStart = 0x7f010034;
85 | public static final int panelMenuListTheme = 0x7f010047;
86 | public static final int panelMenuListWidth = 0x7f010046;
87 | public static final int popupMenuStyle = 0x7f010045;
88 | public static final int popupPromptView = 0x7f01004f;
89 | public static final int progressBarPadding = 0x7f010032;
90 | public static final int progressBarStyle = 0x7f010030;
91 | public static final int prompt = 0x7f01004d;
92 | public static final int queryHint = 0x7f010057;
93 | public static final int searchDropdownBackground = 0x7f010058;
94 | public static final int searchResultListItemHeight = 0x7f010061;
95 | public static final int searchViewAutoCompleteTextView = 0x7f010065;
96 | public static final int searchViewCloseIcon = 0x7f010059;
97 | public static final int searchViewEditQuery = 0x7f01005d;
98 | public static final int searchViewEditQueryBackground = 0x7f01005e;
99 | public static final int searchViewGoIcon = 0x7f01005a;
100 | public static final int searchViewSearchIcon = 0x7f01005b;
101 | public static final int searchViewTextField = 0x7f01005f;
102 | public static final int searchViewTextFieldRight = 0x7f010060;
103 | public static final int searchViewVoiceIcon = 0x7f01005c;
104 | public static final int selectableItemBackground = 0x7f010015;
105 | public static final int showAsAction = 0x7f010049;
106 | public static final int showDividers = 0x7f010051;
107 | public static final int spinnerDropDownItemStyle = 0x7f010054;
108 | public static final int spinnerMode = 0x7f01004e;
109 | public static final int spinnerStyle = 0x7f010053;
110 | public static final int subtitle = 0x7f010025;
111 | public static final int subtitleTextStyle = 0x7f010027;
112 | public static final int textAllCaps = 0x7f010069;
113 | public static final int textAppearanceLargePopupMenu = 0x7f010010;
114 | public static final int textAppearanceListItem = 0x7f01001f;
115 | public static final int textAppearanceListItemSmall = 0x7f010020;
116 | public static final int textAppearanceSearchResultSubtitle = 0x7f010063;
117 | public static final int textAppearanceSearchResultTitle = 0x7f010062;
118 | public static final int textAppearanceSmallPopupMenu = 0x7f010011;
119 | public static final int textColorSearchUrl = 0x7f010064;
120 | public static final int title = 0x7f010021;
121 | public static final int titleTextStyle = 0x7f010026;
122 | public static final int windowActionBar = 0x7f010000;
123 | public static final int windowActionBarOverlay = 0x7f010001;
124 | public static final int windowSplitActionBar = 0x7f010002;
125 | }
126 | public static final class bool {
127 | public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f060000;
128 | public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f060001;
129 | public static final int abc_config_actionMenuItemAllCaps = 0x7f060005;
130 | public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f060004;
131 | public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f060003;
132 | public static final int abc_split_action_bar_is_narrow = 0x7f060002;
133 | }
134 | public static final class color {
135 | public static final int abc_search_url_text_holo = 0x7f070003;
136 | public static final int abc_search_url_text_normal = 0x7f070000;
137 | public static final int abc_search_url_text_pressed = 0x7f070002;
138 | public static final int abc_search_url_text_selected = 0x7f070001;
139 | }
140 | public static final class dimen {
141 | public static final int abc_action_bar_default_height = 0x7f080002;
142 | public static final int abc_action_bar_icon_vertical_padding = 0x7f080003;
143 | public static final int abc_action_bar_progress_bar_size = 0x7f08000a;
144 | public static final int abc_action_bar_stacked_max_height = 0x7f080009;
145 | public static final int abc_action_bar_stacked_tab_max_width = 0x7f080001;
146 | public static final int abc_action_bar_subtitle_bottom_margin = 0x7f080007;
147 | public static final int abc_action_bar_subtitle_text_size = 0x7f080005;
148 | public static final int abc_action_bar_subtitle_top_margin = 0x7f080006;
149 | public static final int abc_action_bar_title_text_size = 0x7f080004;
150 | public static final int abc_action_button_min_width = 0x7f080008;
151 | public static final int abc_config_prefDialogWidth = 0x7f080000;
152 | public static final int abc_dropdownitem_icon_width = 0x7f080010;
153 | public static final int abc_dropdownitem_text_padding_left = 0x7f08000e;
154 | public static final int abc_dropdownitem_text_padding_right = 0x7f08000f;
155 | public static final int abc_panel_menu_list_width = 0x7f08000b;
156 | public static final int abc_search_view_preferred_width = 0x7f08000d;
157 | public static final int abc_search_view_text_min_width = 0x7f08000c;
158 | }
159 | public static final class drawable {
160 | public static final int abc_ab_bottom_solid_dark_holo = 0x7f020000;
161 | public static final int abc_ab_bottom_solid_light_holo = 0x7f020001;
162 | public static final int abc_ab_bottom_transparent_dark_holo = 0x7f020002;
163 | public static final int abc_ab_bottom_transparent_light_holo = 0x7f020003;
164 | public static final int abc_ab_share_pack_holo_dark = 0x7f020004;
165 | public static final int abc_ab_share_pack_holo_light = 0x7f020005;
166 | public static final int abc_ab_solid_dark_holo = 0x7f020006;
167 | public static final int abc_ab_solid_light_holo = 0x7f020007;
168 | public static final int abc_ab_stacked_solid_dark_holo = 0x7f020008;
169 | public static final int abc_ab_stacked_solid_light_holo = 0x7f020009;
170 | public static final int abc_ab_stacked_transparent_dark_holo = 0x7f02000a;
171 | public static final int abc_ab_stacked_transparent_light_holo = 0x7f02000b;
172 | public static final int abc_ab_transparent_dark_holo = 0x7f02000c;
173 | public static final int abc_ab_transparent_light_holo = 0x7f02000d;
174 | public static final int abc_cab_background_bottom_holo_dark = 0x7f02000e;
175 | public static final int abc_cab_background_bottom_holo_light = 0x7f02000f;
176 | public static final int abc_cab_background_top_holo_dark = 0x7f020010;
177 | public static final int abc_cab_background_top_holo_light = 0x7f020011;
178 | public static final int abc_ic_ab_back_holo_dark = 0x7f020012;
179 | public static final int abc_ic_ab_back_holo_light = 0x7f020013;
180 | public static final int abc_ic_cab_done_holo_dark = 0x7f020014;
181 | public static final int abc_ic_cab_done_holo_light = 0x7f020015;
182 | public static final int abc_ic_clear = 0x7f020016;
183 | public static final int abc_ic_clear_disabled = 0x7f020017;
184 | public static final int abc_ic_clear_holo_light = 0x7f020018;
185 | public static final int abc_ic_clear_normal = 0x7f020019;
186 | public static final int abc_ic_clear_search_api_disabled_holo_light = 0x7f02001a;
187 | public static final int abc_ic_clear_search_api_holo_light = 0x7f02001b;
188 | public static final int abc_ic_commit_search_api_holo_dark = 0x7f02001c;
189 | public static final int abc_ic_commit_search_api_holo_light = 0x7f02001d;
190 | public static final int abc_ic_go = 0x7f02001e;
191 | public static final int abc_ic_go_search_api_holo_light = 0x7f02001f;
192 | public static final int abc_ic_menu_moreoverflow_normal_holo_dark = 0x7f020020;
193 | public static final int abc_ic_menu_moreoverflow_normal_holo_light = 0x7f020021;
194 | public static final int abc_ic_menu_share_holo_dark = 0x7f020022;
195 | public static final int abc_ic_menu_share_holo_light = 0x7f020023;
196 | public static final int abc_ic_search = 0x7f020024;
197 | public static final int abc_ic_search_api_holo_light = 0x7f020025;
198 | public static final int abc_ic_voice_search = 0x7f020026;
199 | public static final int abc_ic_voice_search_api_holo_light = 0x7f020027;
200 | public static final int abc_item_background_holo_dark = 0x7f020028;
201 | public static final int abc_item_background_holo_light = 0x7f020029;
202 | public static final int abc_list_divider_holo_dark = 0x7f02002a;
203 | public static final int abc_list_divider_holo_light = 0x7f02002b;
204 | public static final int abc_list_focused_holo = 0x7f02002c;
205 | public static final int abc_list_longpressed_holo = 0x7f02002d;
206 | public static final int abc_list_pressed_holo_dark = 0x7f02002e;
207 | public static final int abc_list_pressed_holo_light = 0x7f02002f;
208 | public static final int abc_list_selector_background_transition_holo_dark = 0x7f020030;
209 | public static final int abc_list_selector_background_transition_holo_light = 0x7f020031;
210 | public static final int abc_list_selector_disabled_holo_dark = 0x7f020032;
211 | public static final int abc_list_selector_disabled_holo_light = 0x7f020033;
212 | public static final int abc_list_selector_holo_dark = 0x7f020034;
213 | public static final int abc_list_selector_holo_light = 0x7f020035;
214 | public static final int abc_menu_dropdown_panel_holo_dark = 0x7f020036;
215 | public static final int abc_menu_dropdown_panel_holo_light = 0x7f020037;
216 | public static final int abc_menu_hardkey_panel_holo_dark = 0x7f020038;
217 | public static final int abc_menu_hardkey_panel_holo_light = 0x7f020039;
218 | public static final int abc_search_dropdown_dark = 0x7f02003a;
219 | public static final int abc_search_dropdown_light = 0x7f02003b;
220 | public static final int abc_spinner_ab_default_holo_dark = 0x7f02003c;
221 | public static final int abc_spinner_ab_default_holo_light = 0x7f02003d;
222 | public static final int abc_spinner_ab_disabled_holo_dark = 0x7f02003e;
223 | public static final int abc_spinner_ab_disabled_holo_light = 0x7f02003f;
224 | public static final int abc_spinner_ab_focused_holo_dark = 0x7f020040;
225 | public static final int abc_spinner_ab_focused_holo_light = 0x7f020041;
226 | public static final int abc_spinner_ab_holo_dark = 0x7f020042;
227 | public static final int abc_spinner_ab_holo_light = 0x7f020043;
228 | public static final int abc_spinner_ab_pressed_holo_dark = 0x7f020044;
229 | public static final int abc_spinner_ab_pressed_holo_light = 0x7f020045;
230 | public static final int abc_tab_indicator_ab_holo = 0x7f020046;
231 | public static final int abc_tab_selected_focused_holo = 0x7f020047;
232 | public static final int abc_tab_selected_holo = 0x7f020048;
233 | public static final int abc_tab_selected_pressed_holo = 0x7f020049;
234 | public static final int abc_tab_unselected_pressed_holo = 0x7f02004a;
235 | public static final int abc_textfield_search_default_holo_dark = 0x7f02004b;
236 | public static final int abc_textfield_search_default_holo_light = 0x7f02004c;
237 | public static final int abc_textfield_search_right_default_holo_dark = 0x7f02004d;
238 | public static final int abc_textfield_search_right_default_holo_light = 0x7f02004e;
239 | public static final int abc_textfield_search_right_selected_holo_dark = 0x7f02004f;
240 | public static final int abc_textfield_search_right_selected_holo_light = 0x7f020050;
241 | public static final int abc_textfield_search_selected_holo_dark = 0x7f020051;
242 | public static final int abc_textfield_search_selected_holo_light = 0x7f020052;
243 | public static final int abc_textfield_searchview_holo_dark = 0x7f020053;
244 | public static final int abc_textfield_searchview_holo_light = 0x7f020054;
245 | public static final int abc_textfield_searchview_right_holo_dark = 0x7f020055;
246 | public static final int abc_textfield_searchview_right_holo_light = 0x7f020056;
247 | }
248 | public static final class id {
249 | public static final int action_bar = 0x7f05001c;
250 | public static final int action_bar_activity_content = 0x7f050015;
251 | public static final int action_bar_container = 0x7f05001b;
252 | public static final int action_bar_overlay_layout = 0x7f05001f;
253 | public static final int action_bar_root = 0x7f05001a;
254 | public static final int action_bar_subtitle = 0x7f050023;
255 | public static final int action_bar_title = 0x7f050022;
256 | public static final int action_context_bar = 0x7f05001d;
257 | public static final int action_menu_divider = 0x7f050016;
258 | public static final int action_menu_presenter = 0x7f050017;
259 | public static final int action_mode_close_button = 0x7f050024;
260 | public static final int activity_chooser_view_content = 0x7f050025;
261 | public static final int always = 0x7f05000b;
262 | public static final int beginning = 0x7f050011;
263 | public static final int checkbox = 0x7f05002d;
264 | public static final int collapseActionView = 0x7f05000d;
265 | public static final int default_activity_button = 0x7f050028;
266 | public static final int dialog = 0x7f05000e;
267 | public static final int disableHome = 0x7f050008;
268 | public static final int dropdown = 0x7f05000f;
269 | public static final int edit_query = 0x7f050030;
270 | public static final int end = 0x7f050013;
271 | public static final int expand_activities_button = 0x7f050026;
272 | public static final int expanded_menu = 0x7f05002c;
273 | public static final int home = 0x7f050014;
274 | public static final int homeAsUp = 0x7f050005;
275 | public static final int icon = 0x7f05002a;
276 | public static final int ifRoom = 0x7f05000a;
277 | public static final int image = 0x7f050027;
278 | public static final int listMode = 0x7f050001;
279 | public static final int list_item = 0x7f050029;
280 | public static final int middle = 0x7f050012;
281 | public static final int never = 0x7f050009;
282 | public static final int none = 0x7f050010;
283 | public static final int normal = 0x7f050000;
284 | public static final int progress_circular = 0x7f050018;
285 | public static final int progress_horizontal = 0x7f050019;
286 | public static final int radio = 0x7f05002f;
287 | public static final int search_badge = 0x7f050032;
288 | public static final int search_bar = 0x7f050031;
289 | public static final int search_button = 0x7f050033;
290 | public static final int search_close_btn = 0x7f050038;
291 | public static final int search_edit_frame = 0x7f050034;
292 | public static final int search_go_btn = 0x7f05003a;
293 | public static final int search_mag_icon = 0x7f050035;
294 | public static final int search_plate = 0x7f050036;
295 | public static final int search_src_text = 0x7f050037;
296 | public static final int search_voice_btn = 0x7f05003b;
297 | public static final int shortcut = 0x7f05002e;
298 | public static final int showCustom = 0x7f050007;
299 | public static final int showHome = 0x7f050004;
300 | public static final int showTitle = 0x7f050006;
301 | public static final int split_action_bar = 0x7f05001e;
302 | public static final int submit_area = 0x7f050039;
303 | public static final int tabMode = 0x7f050002;
304 | public static final int title = 0x7f05002b;
305 | public static final int top_action_bar = 0x7f050020;
306 | public static final int up = 0x7f050021;
307 | public static final int useLogo = 0x7f050003;
308 | public static final int withText = 0x7f05000c;
309 | }
310 | public static final class integer {
311 | public static final int abc_max_action_buttons = 0x7f090000;
312 | }
313 | public static final class layout {
314 | public static final int abc_action_bar_decor = 0x7f030000;
315 | public static final int abc_action_bar_decor_include = 0x7f030001;
316 | public static final int abc_action_bar_decor_overlay = 0x7f030002;
317 | public static final int abc_action_bar_home = 0x7f030003;
318 | public static final int abc_action_bar_tab = 0x7f030004;
319 | public static final int abc_action_bar_tabbar = 0x7f030005;
320 | public static final int abc_action_bar_title_item = 0x7f030006;
321 | public static final int abc_action_bar_view_list_nav_layout = 0x7f030007;
322 | public static final int abc_action_menu_item_layout = 0x7f030008;
323 | public static final int abc_action_menu_layout = 0x7f030009;
324 | public static final int abc_action_mode_bar = 0x7f03000a;
325 | public static final int abc_action_mode_close_item = 0x7f03000b;
326 | public static final int abc_activity_chooser_view = 0x7f03000c;
327 | public static final int abc_activity_chooser_view_include = 0x7f03000d;
328 | public static final int abc_activity_chooser_view_list_item = 0x7f03000e;
329 | public static final int abc_expanded_menu_layout = 0x7f03000f;
330 | public static final int abc_list_menu_item_checkbox = 0x7f030010;
331 | public static final int abc_list_menu_item_icon = 0x7f030011;
332 | public static final int abc_list_menu_item_layout = 0x7f030012;
333 | public static final int abc_list_menu_item_radio = 0x7f030013;
334 | public static final int abc_popup_menu_item_layout = 0x7f030014;
335 | public static final int abc_search_dropdown_item_icons_2line = 0x7f030015;
336 | public static final int abc_search_view = 0x7f030016;
337 | public static final int support_simple_spinner_dropdown_item = 0x7f030019;
338 | }
339 | public static final class string {
340 | public static final int abc_action_bar_home_description = 0x7f0a0001;
341 | public static final int abc_action_bar_up_description = 0x7f0a0002;
342 | public static final int abc_action_menu_overflow_description = 0x7f0a0003;
343 | public static final int abc_action_mode_done = 0x7f0a0000;
344 | public static final int abc_activity_chooser_view_see_all = 0x7f0a000a;
345 | public static final int abc_activitychooserview_choose_application = 0x7f0a0009;
346 | public static final int abc_searchview_description_clear = 0x7f0a0006;
347 | public static final int abc_searchview_description_query = 0x7f0a0005;
348 | public static final int abc_searchview_description_search = 0x7f0a0004;
349 | public static final int abc_searchview_description_submit = 0x7f0a0007;
350 | public static final int abc_searchview_description_voice = 0x7f0a0008;
351 | public static final int abc_shareactionprovider_share_with = 0x7f0a000c;
352 | public static final int abc_shareactionprovider_share_with_application = 0x7f0a000b;
353 | }
354 | public static final class style {
355 | public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0063;
356 | public static final int TextAppearance_AppCompat_Base_SearchResult = 0x7f0b006d;
357 | public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle = 0x7f0b006f;
358 | public static final int TextAppearance_AppCompat_Base_SearchResult_Title = 0x7f0b006e;
359 | public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large = 0x7f0b0069;
360 | public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small = 0x7f0b006a;
361 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult = 0x7f0b0070;
362 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle = 0x7f0b0072;
363 | public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title = 0x7f0b0071;
364 | public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large = 0x7f0b006b;
365 | public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small = 0x7f0b006c;
366 | public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b0035;
367 | public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b0034;
368 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b0030;
369 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b0031;
370 | public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b0033;
371 | public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b0032;
372 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b001a;
373 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0006;
374 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0008;
375 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0005;
376 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0007;
377 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b001e;
378 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0020;
379 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b001d;
380 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b001f;
381 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu = 0x7f0b0054;
382 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle = 0x7f0b0056;
383 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse = 0x7f0b0058;
384 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title = 0x7f0b0055;
385 | public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse = 0x7f0b0057;
386 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle = 0x7f0b0051;
387 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse = 0x7f0b0053;
388 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title = 0x7f0b0050;
389 | public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse = 0x7f0b0052;
390 | public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem = 0x7f0b0061;
391 | public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0021;
392 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b002e;
393 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b002f;
394 | public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item = 0x7f0b0062;
395 | public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b0028;
396 | public static final int Theme_AppCompat = 0x7f0b0077;
397 | public static final int Theme_AppCompat_Base_CompactMenu = 0x7f0b0081;
398 | public static final int Theme_AppCompat_Base_CompactMenu_Dialog = 0x7f0b0082;
399 | public static final int Theme_AppCompat_CompactMenu = 0x7f0b007a;
400 | public static final int Theme_AppCompat_CompactMenu_Dialog = 0x7f0b007b;
401 | public static final int Theme_AppCompat_Light = 0x7f0b0078;
402 | public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b0079;
403 | public static final int Theme_Base = 0x7f0b007c;
404 | public static final int Theme_Base_AppCompat = 0x7f0b007e;
405 | public static final int Theme_Base_AppCompat_Light = 0x7f0b007f;
406 | public static final int Theme_Base_AppCompat_Light_DarkActionBar = 0x7f0b0080;
407 | public static final int Theme_Base_Light = 0x7f0b007d;
408 | public static final int Widget_AppCompat_ActionBar = 0x7f0b0000;
409 | public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b0002;
410 | public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b0011;
411 | public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b0017;
412 | public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b0014;
413 | public static final int Widget_AppCompat_ActionButton = 0x7f0b000b;
414 | public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b000d;
415 | public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b000f;
416 | public static final int Widget_AppCompat_ActionMode = 0x7f0b001b;
417 | public static final int Widget_AppCompat_ActivityChooserView = 0x7f0b0038;
418 | public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b0036;
419 | public static final int Widget_AppCompat_Base_ActionBar = 0x7f0b003a;
420 | public static final int Widget_AppCompat_Base_ActionBar_Solid = 0x7f0b003c;
421 | public static final int Widget_AppCompat_Base_ActionBar_TabBar = 0x7f0b0045;
422 | public static final int Widget_AppCompat_Base_ActionBar_TabText = 0x7f0b004b;
423 | public static final int Widget_AppCompat_Base_ActionBar_TabView = 0x7f0b0048;
424 | public static final int Widget_AppCompat_Base_ActionButton = 0x7f0b003f;
425 | public static final int Widget_AppCompat_Base_ActionButton_CloseMode = 0x7f0b0041;
426 | public static final int Widget_AppCompat_Base_ActionButton_Overflow = 0x7f0b0043;
427 | public static final int Widget_AppCompat_Base_ActionMode = 0x7f0b004e;
428 | public static final int Widget_AppCompat_Base_ActivityChooserView = 0x7f0b0075;
429 | public static final int Widget_AppCompat_Base_AutoCompleteTextView = 0x7f0b0073;
430 | public static final int Widget_AppCompat_Base_DropDownItem_Spinner = 0x7f0b005d;
431 | public static final int Widget_AppCompat_Base_ListPopupWindow = 0x7f0b0065;
432 | public static final int Widget_AppCompat_Base_ListView_DropDown = 0x7f0b005f;
433 | public static final int Widget_AppCompat_Base_ListView_Menu = 0x7f0b0064;
434 | public static final int Widget_AppCompat_Base_PopupMenu = 0x7f0b0067;
435 | public static final int Widget_AppCompat_Base_ProgressBar = 0x7f0b005a;
436 | public static final int Widget_AppCompat_Base_ProgressBar_Horizontal = 0x7f0b0059;
437 | public static final int Widget_AppCompat_Base_Spinner = 0x7f0b005b;
438 | public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b0024;
439 | public static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0001;
440 | public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0003;
441 | public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b0004;
442 | public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b0012;
443 | public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b0013;
444 | public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b0018;
445 | public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b0019;
446 | public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b0015;
447 | public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b0016;
448 | public static final int Widget_AppCompat_Light_ActionButton = 0x7f0b000c;
449 | public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b000e;
450 | public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b0010;
451 | public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b001c;
452 | public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0039;
453 | public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b0037;
454 | public static final int Widget_AppCompat_Light_Base_ActionBar = 0x7f0b003b;
455 | public static final int Widget_AppCompat_Light_Base_ActionBar_Solid = 0x7f0b003d;
456 | public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse = 0x7f0b003e;
457 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar = 0x7f0b0046;
458 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse = 0x7f0b0047;
459 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabText = 0x7f0b004c;
460 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse = 0x7f0b004d;
461 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabView = 0x7f0b0049;
462 | public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse = 0x7f0b004a;
463 | public static final int Widget_AppCompat_Light_Base_ActionButton = 0x7f0b0040;
464 | public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode = 0x7f0b0042;
465 | public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow = 0x7f0b0044;
466 | public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse = 0x7f0b004f;
467 | public static final int Widget_AppCompat_Light_Base_ActivityChooserView = 0x7f0b0076;
468 | public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView = 0x7f0b0074;
469 | public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner = 0x7f0b005e;
470 | public static final int Widget_AppCompat_Light_Base_ListPopupWindow = 0x7f0b0066;
471 | public static final int Widget_AppCompat_Light_Base_ListView_DropDown = 0x7f0b0060;
472 | public static final int Widget_AppCompat_Light_Base_PopupMenu = 0x7f0b0068;
473 | public static final int Widget_AppCompat_Light_Base_Spinner = 0x7f0b005c;
474 | public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0025;
475 | public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0b002a;
476 | public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b0027;
477 | public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b002c;
478 | public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b0023;
479 | public static final int Widget_AppCompat_ListPopupWindow = 0x7f0b0029;
480 | public static final int Widget_AppCompat_ListView_DropDown = 0x7f0b0026;
481 | public static final int Widget_AppCompat_ListView_Menu = 0x7f0b002d;
482 | public static final int Widget_AppCompat_PopupMenu = 0x7f0b002b;
483 | public static final int Widget_AppCompat_ProgressBar = 0x7f0b000a;
484 | public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0009;
485 | public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b0022;
486 | }
487 | public static final class styleable {
488 | public static final int[] ActionBar = { 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033 };
489 | public static final int[] ActionBarLayout = { 0x010100b3 };
490 | public static final int ActionBarLayout_android_layout_gravity = 0;
491 | public static final int[] ActionBarWindow = { 0x7f010000, 0x7f010001, 0x7f010002 };
492 | public static final int ActionBarWindow_windowActionBar = 0;
493 | public static final int ActionBarWindow_windowActionBarOverlay = 1;
494 | public static final int ActionBarWindow_windowSplitActionBar = 2;
495 | public static final int ActionBar_background = 10;
496 | public static final int ActionBar_backgroundSplit = 12;
497 | public static final int ActionBar_backgroundStacked = 11;
498 | public static final int ActionBar_customNavigationLayout = 13;
499 | public static final int ActionBar_displayOptions = 3;
500 | public static final int ActionBar_divider = 9;
501 | public static final int ActionBar_height = 1;
502 | public static final int ActionBar_homeLayout = 14;
503 | public static final int ActionBar_icon = 7;
504 | public static final int ActionBar_indeterminateProgressStyle = 16;
505 | public static final int ActionBar_itemPadding = 18;
506 | public static final int ActionBar_logo = 8;
507 | public static final int ActionBar_navigationMode = 2;
508 | public static final int ActionBar_progressBarPadding = 17;
509 | public static final int ActionBar_progressBarStyle = 15;
510 | public static final int ActionBar_subtitle = 4;
511 | public static final int ActionBar_subtitleTextStyle = 6;
512 | public static final int ActionBar_title = 0;
513 | public static final int ActionBar_titleTextStyle = 5;
514 | public static final int[] ActionMenuItemView = { 0x0101013f };
515 | public static final int ActionMenuItemView_android_minWidth = 0;
516 | public static final int[] ActionMenuView = { };
517 | public static final int[] ActionMode = { 0x7f010022, 0x7f010026, 0x7f010027, 0x7f01002b, 0x7f01002d };
518 | public static final int ActionMode_background = 3;
519 | public static final int ActionMode_backgroundSplit = 4;
520 | public static final int ActionMode_height = 0;
521 | public static final int ActionMode_subtitleTextStyle = 2;
522 | public static final int ActionMode_titleTextStyle = 1;
523 | public static final int[] ActivityChooserView = { 0x7f010066, 0x7f010067 };
524 | public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
525 | public static final int ActivityChooserView_initialActivityCount = 0;
526 | public static final int[] CompatTextView = { 0x7f010069 };
527 | public static final int CompatTextView_textAllCaps = 0;
528 | public static final int[] LinearLayoutICS = { 0x7f01002a, 0x7f010051, 0x7f010052 };
529 | public static final int LinearLayoutICS_divider = 0;
530 | public static final int LinearLayoutICS_dividerPadding = 2;
531 | public static final int LinearLayoutICS_showDividers = 1;
532 | public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 };
533 | public static final int MenuGroup_android_checkableBehavior = 5;
534 | public static final int MenuGroup_android_enabled = 0;
535 | public static final int MenuGroup_android_id = 1;
536 | public static final int MenuGroup_android_menuCategory = 3;
537 | public static final int MenuGroup_android_orderInCategory = 4;
538 | public static final int MenuGroup_android_visible = 2;
539 | public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c };
540 | public static final int MenuItem_actionLayout = 14;
541 | public static final int MenuItem_actionProviderClass = 16;
542 | public static final int MenuItem_actionViewClass = 15;
543 | public static final int MenuItem_android_alphabeticShortcut = 9;
544 | public static final int MenuItem_android_checkable = 11;
545 | public static final int MenuItem_android_checked = 3;
546 | public static final int MenuItem_android_enabled = 1;
547 | public static final int MenuItem_android_icon = 0;
548 | public static final int MenuItem_android_id = 2;
549 | public static final int MenuItem_android_menuCategory = 5;
550 | public static final int MenuItem_android_numericShortcut = 10;
551 | public static final int MenuItem_android_onClick = 12;
552 | public static final int MenuItem_android_orderInCategory = 6;
553 | public static final int MenuItem_android_title = 7;
554 | public static final int MenuItem_android_titleCondensed = 8;
555 | public static final int MenuItem_android_visible = 4;
556 | public static final int MenuItem_showAsAction = 13;
557 | public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x01010435 };
558 | public static final int MenuView_android_headerBackground = 4;
559 | public static final int MenuView_android_horizontalDivider = 2;
560 | public static final int MenuView_android_itemBackground = 5;
561 | public static final int MenuView_android_itemIconDisabledAlpha = 6;
562 | public static final int MenuView_android_itemTextAppearance = 1;
563 | public static final int MenuView_android_preserveIconSpacing = 7;
564 | public static final int MenuView_android_verticalDivider = 3;
565 | public static final int MenuView_android_windowAnimationStyle = 0;
566 | public static final int[] SearchView = { 0x0101011f, 0x01010220, 0x01010264, 0x7f010056, 0x7f010057 };
567 | public static final int SearchView_android_imeOptions = 2;
568 | public static final int SearchView_android_inputType = 1;
569 | public static final int SearchView_android_maxWidth = 0;
570 | public static final int SearchView_iconifiedByDefault = 3;
571 | public static final int SearchView_queryHint = 4;
572 | public static final int[] Spinner = { 0x010100af, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050 };
573 | public static final int Spinner_android_dropDownHorizontalOffset = 4;
574 | public static final int Spinner_android_dropDownSelector = 1;
575 | public static final int Spinner_android_dropDownVerticalOffset = 5;
576 | public static final int Spinner_android_dropDownWidth = 3;
577 | public static final int Spinner_android_gravity = 0;
578 | public static final int Spinner_android_popupBackground = 2;
579 | public static final int Spinner_disableChildrenWhenDisabled = 9;
580 | public static final int Spinner_popupPromptView = 8;
581 | public static final int Spinner_prompt = 6;
582 | public static final int Spinner_spinnerMode = 7;
583 | public static final int[] Theme = { 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048 };
584 | public static final int Theme_actionDropDownStyle = 0;
585 | public static final int Theme_dropdownListPreferredItemHeight = 1;
586 | public static final int Theme_listChoiceBackgroundIndicator = 5;
587 | public static final int Theme_panelMenuListTheme = 4;
588 | public static final int Theme_panelMenuListWidth = 3;
589 | public static final int Theme_popupMenuStyle = 2;
590 | public static final int[] View = { 0x010100da, 0x7f010034, 0x7f010035 };
591 | public static final int View_android_focusable = 0;
592 | public static final int View_paddingEnd = 2;
593 | public static final int View_paddingStart = 1;
594 | }
595 | }
596 |
--------------------------------------------------------------------------------
/SimpleWeather/gen/com/redorigami/simpleweather/BuildConfig.java:
--------------------------------------------------------------------------------
1 | /** Automatically generated file. DO NOT MODIFY */
2 | package com.redorigami.simpleweather;
3 |
4 | public final class BuildConfig {
5 | public final static boolean DEBUG = true;
6 | }
--------------------------------------------------------------------------------
/SimpleWeather/ic_launcher-web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/ic_launcher-web.png
--------------------------------------------------------------------------------
/SimpleWeather/libs/android-support-v4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/libs/android-support-v4.jar
--------------------------------------------------------------------------------
/SimpleWeather/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 |
--------------------------------------------------------------------------------
/SimpleWeather/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-19
15 | android.library.reference.1=../appcompat_v7
16 |
--------------------------------------------------------------------------------
/SimpleWeather/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grgr07/Simple-Weather-App/caabf3d56021e3e41391d8fb4d526517fcd529fc/SimpleWeather/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/SimpleWeather/res/layout/activity_weather.xml:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/SimpleWeather/res/layout/fragment_weather.xml:
--------------------------------------------------------------------------------
1 |
10 |
11 |
18 |
19 |
27 |
28 |
37 |
38 |
46 |
47 |
55 |
56 |
--------------------------------------------------------------------------------
/SimpleWeather/res/menu/weather.xml:
--------------------------------------------------------------------------------
1 |
13 |
--------------------------------------------------------------------------------
/SimpleWeather/res/values-v11/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/SimpleWeather/res/values-v14/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/SimpleWeather/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 | 64dp
9 |
10 |
11 |
--------------------------------------------------------------------------------
/SimpleWeather/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 16dp
5 | 16dp
6 |
7 |
8 |
--------------------------------------------------------------------------------
/SimpleWeather/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Simple Weather
5 | Change city
6 |
7 |
8 | 12345
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | Sorry, no weather data found.
21 |
22 |
23 |
--------------------------------------------------------------------------------
/SimpleWeather/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
14 |
15 |
16 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/SimpleWeather/src/com/redorigami/simpleweather/CityPreference.java:
--------------------------------------------------------------------------------
1 | package com.redorigami.simpleweather;
2 |
3 | import android.app.Activity;
4 | import android.content.SharedPreferences;
5 |
6 | public class CityPreference {
7 |
8 | SharedPreferences prefs;
9 |
10 | public CityPreference(Activity activity){
11 | prefs = activity.getPreferences(Activity.MODE_PRIVATE);
12 | }
13 |
14 | // If the user has not chosen a city yet, return
15 | // Sydney as the default city
16 | public String getCity(){
17 | //return prefs.getString("city", "Jerusalem, IS");
18 | //return prefs.getString("city", "Sydney, AU");
19 | return prefs.getString("city", "Jerusalem, IL");
20 | }
21 |
22 | void setCity(String city){
23 | prefs.edit().putString("city", city).commit();
24 | }
25 |
26 | }
--------------------------------------------------------------------------------
/SimpleWeather/src/com/redorigami/simpleweather/RemoteFetch.java:
--------------------------------------------------------------------------------
1 | package com.redorigami.simpleweather;
2 |
3 | import java.io.BufferedReader;
4 | import java.io.InputStreamReader;
5 | import java.net.HttpURLConnection;
6 | import java.net.URL;
7 |
8 | import org.json.JSONObject;
9 |
10 | import android.content.Context;
11 | import android.util.Log;
12 |
13 | public class RemoteFetch {
14 |
15 | private static final String OPEN_WEATHER_MAP_API =
16 | "http://api.openweathermap.org/data/2.5/weather?q=%s&units=metric";
17 |
18 | public static JSONObject getJSON(Context context, String city){
19 | try {
20 | URL url = new URL(String.format(OPEN_WEATHER_MAP_API, city));
21 | HttpURLConnection connection =
22 | (HttpURLConnection)url.openConnection();
23 |
24 | connection.addRequestProperty("x-api-key",
25 | context.getString(R.string.open_weather_maps_app_id));
26 |
27 | BufferedReader reader = new BufferedReader(
28 | new InputStreamReader(connection.getInputStream()));
29 |
30 | StringBuffer json = new StringBuffer(1024);
31 | String tmp="";
32 | while((tmp=reader.readLine())!=null)
33 | json.append(tmp).append("\n");
34 | reader.close();
35 |
36 | JSONObject data = new JSONObject(json.toString());
37 |
38 | // This value will be 404 if the request was not
39 | // successful
40 | if(data.getInt("cod") != 200){
41 | return null;
42 | }
43 |
44 | return data;
45 | }catch(Exception e){
46 | return null;
47 | }
48 | }
49 | }
--------------------------------------------------------------------------------
/SimpleWeather/src/com/redorigami/simpleweather/WeatherActivity.java:
--------------------------------------------------------------------------------
1 | package com.redorigami.simpleweather;
2 |
3 | import android.support.v7.app.ActionBarActivity;
4 | import android.text.InputType;
5 | import android.app.AlertDialog;
6 | import android.content.DialogInterface;
7 | import android.os.Bundle;
8 | import android.view.Menu;
9 | import android.view.MenuItem;
10 | import android.widget.EditText;
11 |
12 | public class WeatherActivity extends ActionBarActivity {
13 |
14 | @Override
15 | protected void onCreate(Bundle savedInstanceState) {
16 | super.onCreate(savedInstanceState);
17 | setContentView(R.layout.activity_weather);
18 |
19 | if (savedInstanceState == null) {
20 | getSupportFragmentManager().beginTransaction()
21 | .add(R.id.container, new WeatherFragment())
22 | .commit();
23 | }
24 |
25 |
26 | }
27 |
28 | @Override
29 | public boolean onCreateOptionsMenu(Menu menu) {
30 | // Inflate the menu; this adds items to the action bar if it is present.
31 | getMenuInflater().inflate(R.menu.weather, menu);
32 | return true;
33 | }
34 |
35 | @Override
36 | public boolean onOptionsItemSelected(MenuItem item) {
37 | // Handle action bar item clicks here. The action bar will
38 | // automatically handle clicks on the Home/Up button, so long
39 | // as you specify a parent activity in AndroidManifest.xml.
40 | /*int id = item.getItemId();
41 | if (id == R.id.action_settings) {
42 | return true;
43 | }
44 | return super.onOptionsItemSelected(item);*/
45 | if(item.getItemId() == R.id.change_city){
46 | showInputDialog();
47 | }
48 | return false;
49 |
50 | }
51 |
52 |
53 | private void showInputDialog(){
54 | AlertDialog.Builder builder = new AlertDialog.Builder(this);
55 | builder.setTitle("Change city");
56 | final EditText input = new EditText(this);
57 | input.setInputType(InputType.TYPE_CLASS_TEXT);
58 | builder.setView(input);
59 | builder.setPositiveButton("Go", new DialogInterface.OnClickListener() {
60 | @Override
61 | public void onClick(DialogInterface dialog, int which) {
62 | changeCity(input.getText().toString());
63 | }
64 | });
65 | builder.show();
66 | }
67 |
68 | public void changeCity(String city){
69 | WeatherFragment wf = (WeatherFragment)getSupportFragmentManager()
70 | .findFragmentById(R.id.container);
71 | wf.changeCity(city);
72 | new CityPreference(this).setCity(city);
73 | }
74 |
75 | }
76 |
--------------------------------------------------------------------------------
/SimpleWeather/src/com/redorigami/simpleweather/WeatherFragment.java:
--------------------------------------------------------------------------------
1 | package com.redorigami.simpleweather;
2 |
3 | import java.text.DateFormat;
4 | import java.util.Date;
5 | import java.util.Locale;
6 |
7 | import org.json.JSONObject;
8 |
9 | import android.graphics.Typeface;
10 | import android.os.Bundle;
11 | import android.os.Handler;
12 | import android.support.v4.app.Fragment;
13 | import android.util.Log;
14 | import android.view.LayoutInflater;
15 | import android.view.View;
16 | import android.view.ViewGroup;
17 | import android.widget.TextView;
18 | import android.widget.Toast;
19 |
20 |
21 |
22 | public class WeatherFragment extends Fragment {
23 | Typeface weatherFont;
24 |
25 | TextView cityField;
26 | TextView updatedField;
27 | TextView detailsField;
28 | TextView currentTemperatureField;
29 | TextView weatherIcon;
30 |
31 | Handler handler;
32 |
33 | public WeatherFragment(){
34 | handler = new Handler();
35 | }
36 |
37 | @Override
38 | public View onCreateView(LayoutInflater inflater, ViewGroup container,
39 | Bundle savedInstanceState) {
40 | View rootView = inflater.inflate(R.layout.fragment_weather, container, false);
41 | cityField = (TextView)rootView.findViewById(R.id.city_field);
42 | updatedField = (TextView)rootView.findViewById(R.id.updated_field);
43 | detailsField = (TextView)rootView.findViewById(R.id.details_field);
44 | currentTemperatureField = (TextView)rootView.findViewById(R.id.current_temperature_field);
45 | weatherIcon = (TextView)rootView.findViewById(R.id.weather_icon);
46 |
47 | weatherIcon.setTypeface(weatherFont);
48 | return rootView;
49 | }
50 |
51 |
52 | @Override
53 | public void onCreate(Bundle savedInstanceState) {
54 | super.onCreate(savedInstanceState);
55 | //weatherFont = Typeface.createFromAsset(getActivity().getAssets(), "fonts/weather.ttf");
56 | weatherFont = Typeface.createFromAsset(getActivity().getAssets(), "weather.ttf");
57 | updateWeatherData(new CityPreference(getActivity()).getCity());
58 | }
59 |
60 |
61 | private void updateWeatherData(final String city){
62 | new Thread(){
63 | public void run(){
64 | final JSONObject json = RemoteFetch.getJSON(getActivity(), city);
65 | if(json == null){
66 | handler.post(new Runnable(){
67 | public void run(){
68 | Toast.makeText(getActivity(),
69 | getActivity().getString(R.string.place_not_found),
70 | Toast.LENGTH_LONG).show();
71 | }
72 | });
73 | } else {
74 | handler.post(new Runnable(){
75 | public void run(){
76 | renderWeather(json);
77 | }
78 | });
79 | }
80 | }
81 | }.start();
82 | }
83 |
84 | private void renderWeather(JSONObject json){
85 | try {
86 | cityField.setText(json.getString("name").toUpperCase(Locale.US) +
87 | ", " +
88 | json.getJSONObject("sys").getString("country"));
89 |
90 | JSONObject details = json.getJSONArray("weather").getJSONObject(0);
91 | JSONObject main = json.getJSONObject("main");
92 | detailsField.setText(
93 | details.getString("description").toUpperCase(Locale.US) +
94 | "\n" + "Humidity: " + main.getString("humidity") + "%" +
95 | "\n" + "Pressure: " + main.getString("pressure") + " hPa");
96 |
97 | currentTemperatureField.setText(
98 | String.format("%.2f", main.getDouble("temp"))+ " ℃");
99 |
100 | DateFormat df = DateFormat.getDateTimeInstance();
101 | String updatedOn = df.format(new Date(json.getLong("dt")*1000));
102 | updatedField.setText("Last update: " + updatedOn);
103 |
104 | setWeatherIcon(details.getInt("id"),
105 | json.getJSONObject("sys").getLong("sunrise") * 1000,
106 | json.getJSONObject("sys").getLong("sunset") * 1000);
107 |
108 | }catch(Exception e){
109 | Log.e("SimpleWeather", "One or more fields not found in the JSON data");
110 | }
111 | }
112 |
113 | private void setWeatherIcon(int actualId, long sunrise, long sunset){
114 | int id = actualId / 100;
115 | String icon = "";
116 | if(actualId == 800){
117 | long currentTime = new Date().getTime();
118 | if(currentTime>=sunrise && currentTime