├── Android Project └── Android Web Services │ ├── .classpath │ ├── .project │ ├── AndroidManifest.xml │ ├── bin │ ├── Android Web Services.apk │ ├── AndroidManifest.xml │ ├── R.txt │ ├── 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 │ │ │ │ └── gridlayout │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ └── com │ │ │ └── ahmaadssb │ │ │ └── androidwebservices │ │ │ ├── BuildConfig.class │ │ │ ├── JSONParser.class │ │ │ ├── ListViewAdapter.class │ │ │ ├── MainActivity$AttemptLogin.class │ │ │ ├── MainActivity.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 │ │ │ ├── RegisterActivity$Register.class │ │ │ ├── RegisterActivity.class │ │ │ ├── UsersActivity$DownloadJSON$1.class │ │ │ ├── UsersActivity$DownloadJSON.class │ │ │ └── UsersActivity.class │ ├── dexedLibs │ │ ├── android-support-v4-1b6326b1acb505542443969d8de9b656.jar │ │ ├── android-support-v7-appcompat-124a905f7388529d3785b95be5719922.jar │ │ ├── android-support-v7-gridlayout-c3bbb2e220a62cfbdcbcd55a86139739.jar │ │ ├── appcompat_v7-6c47aa93e89747859e79de9b6a88fd75.jar │ │ └── gridlayout_v7-ab328e11896b40bf0b3b12ceb2adca04.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 │ │ │ └── gridlayout │ │ │ └── R.java │ └── com │ │ └── ahmaadssb │ │ └── androidwebservices │ │ ├── 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_main.xml │ │ ├── register_layout.xml │ │ ├── single_user_layout.xml │ │ └── users_layout.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── src │ └── com │ └── ahmaadssb │ └── androidwebservices │ ├── JSONParser.java │ ├── ListViewAdapter.java │ ├── MainActivity.java │ ├── RegisterActivity.java │ └── UsersActivity.java └── PHP Project ├── SQL Database └── android_webservices.sql └── android-webservice1 ├── config.php ├── index.php ├── login.php ├── register.php └── users.php /Android Project/Android Web Services/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Android Web Services 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 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 21 | 22 | 25 | 26 | 27 | 28 | 29 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/Android Web Services.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/Android Web Services.apk -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 21 | 22 | 25 | 26 | 27 | 28 | 29 | 34 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/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 0x7f010023 8 | int attr actionBarItemBackground 0x7f010024 9 | int attr actionBarPopupTheme 0x7f01001d 10 | int attr actionBarSize 0x7f010022 11 | int attr actionBarSplitStyle 0x7f01001f 12 | int attr actionBarStyle 0x7f01001e 13 | int attr actionBarTabBarStyle 0x7f010019 14 | int attr actionBarTabStyle 0x7f010018 15 | int attr actionBarTabTextStyle 0x7f01001a 16 | int attr actionBarTheme 0x7f010020 17 | int attr actionBarWidgetTheme 0x7f010021 18 | int attr actionButtonStyle 0x7f01003b 19 | int attr actionDropDownStyle 0x7f010036 20 | int attr actionLayout 0x7f010080 21 | int attr actionMenuTextAppearance 0x7f010025 22 | int attr actionMenuTextColor 0x7f010026 23 | int attr actionModeBackground 0x7f010029 24 | int attr actionModeCloseButtonStyle 0x7f010028 25 | int attr actionModeCloseDrawable 0x7f01002b 26 | int attr actionModeCopyDrawable 0x7f01002d 27 | int attr actionModeCutDrawable 0x7f01002c 28 | int attr actionModeFindDrawable 0x7f010031 29 | int attr actionModePasteDrawable 0x7f01002e 30 | int attr actionModePopupWindowStyle 0x7f010033 31 | int attr actionModeSelectAllDrawable 0x7f01002f 32 | int attr actionModeShareDrawable 0x7f010030 33 | int attr actionModeSplitBackground 0x7f01002a 34 | int attr actionModeStyle 0x7f010027 35 | int attr actionModeWebSearchDrawable 0x7f010032 36 | int attr actionOverflowButtonStyle 0x7f01001b 37 | int attr actionOverflowMenuStyle 0x7f01001c 38 | int attr actionProviderClass 0x7f010082 39 | int attr actionViewClass 0x7f010081 40 | int attr activityChooserViewStyle 0x7f010042 41 | int attr alignmentMode 0x7f010004 42 | int attr background 0x7f01006b 43 | int attr backgroundSplit 0x7f01006d 44 | int attr backgroundStacked 0x7f01006c 45 | int attr barSize 0x7f0100ad 46 | int attr buttonBarButtonStyle 0x7f01003d 47 | int attr buttonBarStyle 0x7f01003c 48 | int attr closeIcon 0x7f01008a 49 | int attr closeItemLayout 0x7f01007b 50 | int attr collapseContentDescription 0x7f0100a2 51 | int attr collapseIcon 0x7f0100a1 52 | int attr color 0x7f0100a7 53 | int attr colorAccent 0x7f01005d 54 | int attr colorButtonNormal 0x7f010061 55 | int attr colorControlActivated 0x7f01005f 56 | int attr colorControlHighlight 0x7f010060 57 | int attr colorControlNormal 0x7f01005e 58 | int attr colorPrimary 0x7f01005b 59 | int attr colorPrimaryDark 0x7f01005c 60 | int attr colorSwitchThumbNormal 0x7f010062 61 | int attr columnCount 0x7f010002 62 | int attr columnOrderPreserved 0x7f010006 63 | int attr commitIcon 0x7f01008e 64 | int attr contentInsetEnd 0x7f010076 65 | int attr contentInsetLeft 0x7f010077 66 | int attr contentInsetRight 0x7f010078 67 | int attr contentInsetStart 0x7f010075 68 | int attr customNavigationLayout 0x7f01006e 69 | int attr disableChildrenWhenDisabled 0x7f010086 70 | int attr displayOptions 0x7f010064 71 | int attr divider 0x7f01006a 72 | int attr dividerHorizontal 0x7f010041 73 | int attr dividerPadding 0x7f010097 74 | int attr dividerVertical 0x7f010040 75 | int attr drawableSize 0x7f0100a9 76 | int attr drawerArrowStyle 0x7f0100af 77 | int attr dropDownListViewStyle 0x7f010053 78 | int attr dropdownListPreferredItemHeight 0x7f010037 79 | int attr editTextBackground 0x7f010048 80 | int attr editTextColor 0x7f010047 81 | int attr elevation 0x7f010079 82 | int attr expandActivityOverflowButtonDrawable 0x7f010093 83 | int attr gapBetweenBars 0x7f0100aa 84 | int attr goIcon 0x7f01008b 85 | int attr height 0x7f01000f 86 | int attr hideOnContentScroll 0x7f010074 87 | int attr homeAsUpIndicator 0x7f01003a 88 | int attr homeLayout 0x7f01006f 89 | int attr icon 0x7f010068 90 | int attr iconifiedByDefault 0x7f010088 91 | int attr indeterminateProgressStyle 0x7f010071 92 | int attr initialActivityCount 0x7f010092 93 | int attr isLightTheme 0x7f010010 94 | int attr itemPadding 0x7f010073 95 | int attr layout 0x7f010087 96 | int attr layout_column 0x7f01000a 97 | int attr layout_columnSpan 0x7f01000b 98 | int attr layout_columnWeight 0x7f01000c 99 | int attr layout_gravity 0x7f01000d 100 | int attr layout_row 0x7f010007 101 | int attr layout_rowSpan 0x7f010008 102 | int attr layout_rowWeight 0x7f010009 103 | int attr listChoiceBackgroundIndicator 0x7f01005a 104 | int attr listPopupWindowStyle 0x7f010054 105 | int attr listPreferredItemHeight 0x7f01004e 106 | int attr listPreferredItemHeightLarge 0x7f010050 107 | int attr listPreferredItemHeightSmall 0x7f01004f 108 | int attr listPreferredItemPaddingLeft 0x7f010051 109 | int attr listPreferredItemPaddingRight 0x7f010052 110 | int attr logo 0x7f010069 111 | int attr maxButtonHeight 0x7f01009f 112 | int attr measureWithLargestChild 0x7f010095 113 | int attr middleBarArrowSize 0x7f0100ac 114 | int attr navigationContentDescription 0x7f0100a4 115 | int attr navigationIcon 0x7f0100a3 116 | int attr navigationMode 0x7f010063 117 | int attr orientation 0x7f010000 118 | int attr overlapAnchor 0x7f0100a6 119 | int attr paddingEnd 0x7f01007d 120 | int attr paddingStart 0x7f01007c 121 | int attr panelBackground 0x7f010057 122 | int attr panelMenuListTheme 0x7f010059 123 | int attr panelMenuListWidth 0x7f010058 124 | int attr popupMenuStyle 0x7f010045 125 | int attr popupPromptView 0x7f010085 126 | int attr popupTheme 0x7f01007a 127 | int attr popupWindowStyle 0x7f010046 128 | int attr preserveIconSpacing 0x7f01007e 129 | int attr progressBarPadding 0x7f010072 130 | int attr progressBarStyle 0x7f010070 131 | int attr prompt 0x7f010083 132 | int attr queryBackground 0x7f010090 133 | int attr queryHint 0x7f010089 134 | int attr rowCount 0x7f010001 135 | int attr rowOrderPreserved 0x7f010005 136 | int attr searchIcon 0x7f01008c 137 | int attr searchViewStyle 0x7f01004d 138 | int attr selectableItemBackground 0x7f01003e 139 | int attr selectableItemBackgroundBorderless 0x7f01003f 140 | int attr showAsAction 0x7f01007f 141 | int attr showDividers 0x7f010096 142 | int attr showText 0x7f0100b6 143 | int attr spinBars 0x7f0100a8 144 | int attr spinnerDropDownItemStyle 0x7f010039 145 | int attr spinnerMode 0x7f010084 146 | int attr spinnerStyle 0x7f010038 147 | int attr splitTrack 0x7f0100b5 148 | int attr state_above_anchor 0x7f0100a5 149 | int attr submitBackground 0x7f010091 150 | int attr subtitle 0x7f010065 151 | int attr subtitleTextAppearance 0x7f010099 152 | int attr subtitleTextStyle 0x7f010067 153 | int attr suggestionRowLayout 0x7f01008f 154 | int attr switchMinWidth 0x7f0100b3 155 | int attr switchPadding 0x7f0100b4 156 | int attr switchStyle 0x7f010049 157 | int attr switchTextAppearance 0x7f0100b2 158 | int attr textAllCaps 0x7f010094 159 | int attr textAppearanceLargePopupMenu 0x7f010034 160 | int attr textAppearanceListItem 0x7f010055 161 | int attr textAppearanceListItemSmall 0x7f010056 162 | int attr textAppearanceSearchResultSubtitle 0x7f01004b 163 | int attr textAppearanceSearchResultTitle 0x7f01004a 164 | int attr textAppearanceSmallPopupMenu 0x7f010035 165 | int attr textColorSearchUrl 0x7f01004c 166 | int attr theme 0x7f0100a0 167 | int attr thickness 0x7f0100ae 168 | int attr thumbTextPadding 0x7f0100b1 169 | int attr title 0x7f01000e 170 | int attr titleMarginBottom 0x7f01009e 171 | int attr titleMarginEnd 0x7f01009c 172 | int attr titleMarginStart 0x7f01009b 173 | int attr titleMarginTop 0x7f01009d 174 | int attr titleMargins 0x7f01009a 175 | int attr titleTextAppearance 0x7f010098 176 | int attr titleTextStyle 0x7f010066 177 | int attr toolbarNavigationButtonStyle 0x7f010044 178 | int attr toolbarStyle 0x7f010043 179 | int attr topBottomBarArrowSize 0x7f0100ab 180 | int attr track 0x7f0100b0 181 | int attr useDefaultMargins 0x7f010003 182 | int attr voiceIcon 0x7f01008d 183 | int attr windowActionBar 0x7f010011 184 | int attr windowActionBarOverlay 0x7f010012 185 | int attr windowActionModeOverlay 0x7f010013 186 | int attr windowFixedHeightMajor 0x7f010017 187 | int attr windowFixedHeightMinor 0x7f010015 188 | int attr windowFixedWidthMajor 0x7f010014 189 | int attr windowFixedWidthMinor 0x7f010016 190 | int bool abc_action_bar_embed_tabs 0x7f060000 191 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001 192 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f060002 193 | int bool abc_config_actionMenuItemAllCaps 0x7f060005 194 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004 195 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060003 196 | int color abc_background_cache_hint_selector_material_dark 0x7f070031 197 | int color abc_background_cache_hint_selector_material_light 0x7f070032 198 | int color abc_input_method_navigation_guard 0x7f070003 199 | int color abc_primary_text_disable_only_material_dark 0x7f070033 200 | int color abc_primary_text_disable_only_material_light 0x7f070034 201 | int color abc_primary_text_material_dark 0x7f070035 202 | int color abc_primary_text_material_light 0x7f070036 203 | int color abc_search_url_text 0x7f070037 204 | int color abc_search_url_text_normal 0x7f070000 205 | int color abc_search_url_text_pressed 0x7f070002 206 | int color abc_search_url_text_selected 0x7f070001 207 | int color abc_secondary_text_material_dark 0x7f070038 208 | int color abc_secondary_text_material_light 0x7f070039 209 | int color accent_material_dark 0x7f07000f 210 | int color accent_material_light 0x7f07000e 211 | int color background_floating_material_dark 0x7f070006 212 | int color background_floating_material_light 0x7f070007 213 | int color background_material_dark 0x7f070004 214 | int color background_material_light 0x7f070005 215 | int color bright_foreground_disabled_material_dark 0x7f070016 216 | int color bright_foreground_disabled_material_light 0x7f070017 217 | int color bright_foreground_inverse_material_dark 0x7f070018 218 | int color bright_foreground_inverse_material_light 0x7f070019 219 | int color bright_foreground_material_dark 0x7f070014 220 | int color bright_foreground_material_light 0x7f070015 221 | int color button_material_dark 0x7f070010 222 | int color button_material_light 0x7f070011 223 | int color dim_foreground_disabled_material_dark 0x7f07001c 224 | int color dim_foreground_disabled_material_light 0x7f07001d 225 | int color dim_foreground_material_dark 0x7f07001a 226 | int color dim_foreground_material_light 0x7f07001b 227 | int color highlighted_text_material_dark 0x7f070020 228 | int color highlighted_text_material_light 0x7f070021 229 | int color hint_foreground_material_dark 0x7f07001e 230 | int color hint_foreground_material_light 0x7f07001f 231 | int color link_text_material_dark 0x7f070022 232 | int color link_text_material_light 0x7f070023 233 | int color material_blue_grey_800 0x7f07002e 234 | int color material_blue_grey_900 0x7f07002f 235 | int color material_blue_grey_950 0x7f070030 236 | int color material_deep_teal_200 0x7f07002c 237 | int color material_deep_teal_500 0x7f07002d 238 | int color primary_dark_material_dark 0x7f07000a 239 | int color primary_dark_material_light 0x7f07000b 240 | int color primary_material_dark 0x7f070008 241 | int color primary_material_light 0x7f070009 242 | int color primary_text_default_material_dark 0x7f070026 243 | int color primary_text_default_material_light 0x7f070024 244 | int color primary_text_disabled_material_dark 0x7f07002a 245 | int color primary_text_disabled_material_light 0x7f070028 246 | int color ripple_material_dark 0x7f07000c 247 | int color ripple_material_light 0x7f07000d 248 | int color secondary_text_default_material_dark 0x7f070027 249 | int color secondary_text_default_material_light 0x7f070025 250 | int color secondary_text_disabled_material_dark 0x7f07002b 251 | int color secondary_text_disabled_material_light 0x7f070029 252 | int color switch_thumb_normal_material_dark 0x7f070012 253 | int color switch_thumb_normal_material_light 0x7f070013 254 | int dimen abc_action_bar_default_height_material 0x7f050015 255 | int dimen abc_action_bar_default_padding_material 0x7f050016 256 | int dimen abc_action_bar_icon_vertical_padding_material 0x7f050017 257 | int dimen abc_action_bar_progress_bar_size 0x7f050006 258 | int dimen abc_action_bar_stacked_max_height 0x7f050005 259 | int dimen abc_action_bar_stacked_tab_max_width 0x7f050004 260 | int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f050019 261 | int dimen abc_action_bar_subtitle_top_margin_material 0x7f050018 262 | int dimen abc_action_button_min_height_material 0x7f05001c 263 | int dimen abc_action_button_min_width_material 0x7f05001b 264 | int dimen abc_action_button_min_width_overflow_material 0x7f05001a 265 | int dimen abc_config_prefDialogWidth 0x7f050003 266 | int dimen abc_control_inset_material 0x7f050011 267 | int dimen abc_control_padding_material 0x7f050012 268 | int dimen abc_dropdownitem_icon_width 0x7f05000c 269 | int dimen abc_dropdownitem_text_padding_left 0x7f05000a 270 | int dimen abc_dropdownitem_text_padding_right 0x7f05000b 271 | int dimen abc_panel_menu_list_width 0x7f050007 272 | int dimen abc_search_view_preferred_width 0x7f050009 273 | int dimen abc_search_view_text_min_width 0x7f050008 274 | int dimen abc_text_size_body_1_material 0x7f050026 275 | int dimen abc_text_size_body_2_material 0x7f050025 276 | int dimen abc_text_size_button_material 0x7f050028 277 | int dimen abc_text_size_caption_material 0x7f050027 278 | int dimen abc_text_size_display_1_material 0x7f050020 279 | int dimen abc_text_size_display_2_material 0x7f05001f 280 | int dimen abc_text_size_display_3_material 0x7f05001e 281 | int dimen abc_text_size_display_4_material 0x7f05001d 282 | int dimen abc_text_size_headline_material 0x7f050021 283 | int dimen abc_text_size_large_material 0x7f050029 284 | int dimen abc_text_size_medium_material 0x7f05002a 285 | int dimen abc_text_size_menu_material 0x7f050024 286 | int dimen abc_text_size_small_material 0x7f05002b 287 | int dimen abc_text_size_subhead_material 0x7f050023 288 | int dimen abc_text_size_subtitle_material_toolbar 0x7f050014 289 | int dimen abc_text_size_title_material 0x7f050022 290 | int dimen abc_text_size_title_material_toolbar 0x7f050013 291 | int dimen activity_horizontal_margin 0x7f05002c 292 | int dimen activity_vertical_margin 0x7f05002d 293 | int dimen default_gap 0x7f050000 294 | int dimen dialog_fixed_height_major 0x7f05000f 295 | int dimen dialog_fixed_height_minor 0x7f050010 296 | int dimen dialog_fixed_width_major 0x7f05000d 297 | int dimen dialog_fixed_width_minor 0x7f05000e 298 | int dimen disabled_alpha_material_dark 0x7f050002 299 | int dimen disabled_alpha_material_light 0x7f050001 300 | int drawable abc_ab_share_pack_holo_dark 0x7f020000 301 | int drawable abc_ab_share_pack_holo_light 0x7f020001 302 | int drawable abc_btn_check_material 0x7f020002 303 | int drawable abc_btn_check_to_on_mtrl_000 0x7f020003 304 | int drawable abc_btn_check_to_on_mtrl_015 0x7f020004 305 | int drawable abc_btn_radio_material 0x7f020005 306 | int drawable abc_btn_radio_to_on_mtrl_000 0x7f020006 307 | int drawable abc_btn_radio_to_on_mtrl_015 0x7f020007 308 | int drawable abc_btn_switch_to_on_mtrl_00001 0x7f020008 309 | int drawable abc_btn_switch_to_on_mtrl_00012 0x7f020009 310 | int drawable abc_cab_background_internal_bg 0x7f02000a 311 | int drawable abc_cab_background_top_material 0x7f02000b 312 | int drawable abc_cab_background_top_mtrl_alpha 0x7f02000c 313 | int drawable abc_edit_text_material 0x7f02000d 314 | int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f02000e 315 | int drawable abc_ic_clear_mtrl_alpha 0x7f02000f 316 | int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020010 317 | int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020011 318 | int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020012 319 | int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020013 320 | int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020014 321 | int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f020015 322 | int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f020016 323 | int drawable abc_ic_menu_share_mtrl_alpha 0x7f020017 324 | int drawable abc_ic_search_api_mtrl_alpha 0x7f020018 325 | int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020019 326 | int drawable abc_item_background_holo_dark 0x7f02001a 327 | int drawable abc_item_background_holo_light 0x7f02001b 328 | int drawable abc_list_divider_mtrl_alpha 0x7f02001c 329 | int drawable abc_list_focused_holo 0x7f02001d 330 | int drawable abc_list_longpressed_holo 0x7f02001e 331 | int drawable abc_list_pressed_holo_dark 0x7f02001f 332 | int drawable abc_list_pressed_holo_light 0x7f020020 333 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020021 334 | int drawable abc_list_selector_background_transition_holo_light 0x7f020022 335 | int drawable abc_list_selector_disabled_holo_dark 0x7f020023 336 | int drawable abc_list_selector_disabled_holo_light 0x7f020024 337 | int drawable abc_list_selector_holo_dark 0x7f020025 338 | int drawable abc_list_selector_holo_light 0x7f020026 339 | int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020027 340 | int drawable abc_popup_background_mtrl_mult 0x7f020028 341 | int drawable abc_spinner_mtrl_am_alpha 0x7f020029 342 | int drawable abc_switch_thumb_material 0x7f02002a 343 | int drawable abc_switch_track_mtrl_alpha 0x7f02002b 344 | int drawable abc_tab_indicator_material 0x7f02002c 345 | int drawable abc_tab_indicator_mtrl_alpha 0x7f02002d 346 | int drawable abc_textfield_activated_mtrl_alpha 0x7f02002e 347 | int drawable abc_textfield_default_mtrl_alpha 0x7f02002f 348 | int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020030 349 | int drawable abc_textfield_search_default_mtrl_alpha 0x7f020031 350 | int drawable abc_textfield_search_material 0x7f020032 351 | int drawable ic_launcher 0x7f020033 352 | int id LinearLayout1 0x7f090050 353 | int id action_bar 0x7f090042 354 | int id action_bar_activity_content 0x7f090003 355 | int id action_bar_container 0x7f090041 356 | int id action_bar_root 0x7f09003d 357 | int id action_bar_spinner 0x7f090002 358 | int id action_bar_subtitle 0x7f090030 359 | int id action_bar_title 0x7f09002f 360 | int id action_context_bar 0x7f090043 361 | int id action_menu_divider 0x7f090005 362 | int id action_menu_presenter 0x7f090006 363 | int id action_mode_bar 0x7f09003f 364 | int id action_mode_bar_stub 0x7f09003e 365 | int id action_mode_close_button 0x7f090031 366 | int id action_settings 0x7f090063 367 | int id activity_chooser_view_content 0x7f090032 368 | int id alignBounds 0x7f09000b 369 | int id alignMargins 0x7f09000c 370 | int id always 0x7f090026 371 | int id beginning 0x7f09002d 372 | int id bottom 0x7f09000d 373 | int id btnLogin 0x7f090055 374 | int id btnRegister 0x7f09005b 375 | int id btnRegisterUser 0x7f090056 376 | int id center 0x7f09000e 377 | int id center_horizontal 0x7f09000f 378 | int id center_vertical 0x7f090010 379 | int id checkbox 0x7f09003a 380 | int id clip_horizontal 0x7f090011 381 | int id clip_vertical 0x7f090012 382 | int id collapseActionView 0x7f090027 383 | int id decor_content_parent 0x7f090040 384 | int id default_activity_button 0x7f090035 385 | int id dialog 0x7f09002b 386 | int id disableHome 0x7f09001f 387 | int id dropdown 0x7f09002c 388 | int id edit_query 0x7f090044 389 | int id edtPassword 0x7f090054 390 | int id edtRegisterDisplayName 0x7f090058 391 | int id edtRegisterPassword 0x7f09005a 392 | int id edtRegisterUserName 0x7f090057 393 | int id edtUsername 0x7f090052 394 | int id end 0x7f090013 395 | int id expand_activities_button 0x7f090033 396 | int id expanded_menu 0x7f090039 397 | int id fill 0x7f090014 398 | int id fill_horizontal 0x7f090015 399 | int id fill_vertical 0x7f090016 400 | int id home 0x7f090000 401 | int id homeAsUp 0x7f090020 402 | int id horizontal 0x7f090009 403 | int id icon 0x7f090037 404 | int id ifRoom 0x7f090028 405 | int id image 0x7f090034 406 | int id imageView1 0x7f09005c 407 | int id left 0x7f090017 408 | int id listMode 0x7f09001c 409 | int id listView1 0x7f090062 410 | int id list_item 0x7f090036 411 | int id middle 0x7f09002e 412 | int id never 0x7f090029 413 | int id none 0x7f090021 414 | int id normal 0x7f09001d 415 | int id progress_circular 0x7f090007 416 | int id progress_horizontal 0x7f090008 417 | int id radio 0x7f09003c 418 | int id right 0x7f090018 419 | int id search_badge 0x7f090046 420 | int id search_bar 0x7f090045 421 | int id search_button 0x7f090047 422 | int id search_close_btn 0x7f09004c 423 | int id search_edit_frame 0x7f090048 424 | int id search_go_btn 0x7f09004e 425 | int id search_mag_icon 0x7f090049 426 | int id search_plate 0x7f09004a 427 | int id search_src_text 0x7f09004b 428 | int id search_voice_btn 0x7f09004f 429 | int id shortcut 0x7f09003b 430 | int id showCustom 0x7f090022 431 | int id showHome 0x7f090023 432 | int id showTitle 0x7f090024 433 | int id space1 0x7f09005d 434 | int id space2 0x7f09005f 435 | int id split_action_bar 0x7f090004 436 | int id start 0x7f090019 437 | int id submit_area 0x7f09004d 438 | int id tabMode 0x7f09001e 439 | int id textView1 0x7f090051 440 | int id textView2 0x7f090053 441 | int id textView3 0x7f090059 442 | int id title 0x7f090038 443 | int id top 0x7f09001a 444 | int id txtDisplayName 0x7f090061 445 | int id txtID 0x7f09005e 446 | int id txtUsername 0x7f090060 447 | int id up 0x7f090001 448 | int id useLogo 0x7f090025 449 | int id vertical 0x7f09000a 450 | int id withText 0x7f09002a 451 | int id wrap_content 0x7f09001b 452 | int integer abc_max_action_buttons 0x7f080000 453 | int layout abc_action_bar_title_item 0x7f030000 454 | int layout abc_action_bar_up_container 0x7f030001 455 | int layout abc_action_bar_view_list_nav_layout 0x7f030002 456 | int layout abc_action_menu_item_layout 0x7f030003 457 | int layout abc_action_menu_layout 0x7f030004 458 | int layout abc_action_mode_bar 0x7f030005 459 | int layout abc_action_mode_close_item_material 0x7f030006 460 | int layout abc_activity_chooser_view 0x7f030007 461 | int layout abc_activity_chooser_view_include 0x7f030008 462 | int layout abc_activity_chooser_view_list_item 0x7f030009 463 | int layout abc_expanded_menu_layout 0x7f03000a 464 | int layout abc_list_menu_item_checkbox 0x7f03000b 465 | int layout abc_list_menu_item_icon 0x7f03000c 466 | int layout abc_list_menu_item_layout 0x7f03000d 467 | int layout abc_list_menu_item_radio 0x7f03000e 468 | int layout abc_popup_menu_item_layout 0x7f03000f 469 | int layout abc_screen_content_include 0x7f030010 470 | int layout abc_screen_simple 0x7f030011 471 | int layout abc_screen_simple_overlay_action_mode 0x7f030012 472 | int layout abc_screen_toolbar 0x7f030013 473 | int layout abc_search_dropdown_item_icons_2line 0x7f030014 474 | int layout abc_search_view 0x7f030015 475 | int layout abc_simple_dropdown_hint 0x7f030016 476 | int layout activity_main 0x7f030017 477 | int layout register_layout 0x7f030018 478 | int layout single_user_layout 0x7f030019 479 | int layout support_simple_spinner_dropdown_item 0x7f03001a 480 | int layout users_layout 0x7f03001b 481 | int menu main 0x7f0c0000 482 | int string abc_action_bar_home_description 0x7f0a0001 483 | int string abc_action_bar_home_description_format 0x7f0a0005 484 | int string abc_action_bar_home_subtitle_description_format 0x7f0a0006 485 | int string abc_action_bar_up_description 0x7f0a0002 486 | int string abc_action_menu_overflow_description 0x7f0a0003 487 | int string abc_action_mode_done 0x7f0a0000 488 | int string abc_activity_chooser_view_see_all 0x7f0a000d 489 | int string abc_activitychooserview_choose_application 0x7f0a000c 490 | int string abc_searchview_description_clear 0x7f0a0009 491 | int string abc_searchview_description_query 0x7f0a0008 492 | int string abc_searchview_description_search 0x7f0a0007 493 | int string abc_searchview_description_submit 0x7f0a000a 494 | int string abc_searchview_description_voice 0x7f0a000b 495 | int string abc_shareactionprovider_share_with 0x7f0a000f 496 | int string abc_shareactionprovider_share_with_application 0x7f0a000e 497 | int string abc_toolbar_collapse_description 0x7f0a0004 498 | int string action_settings 0x7f0a0012 499 | int string app_name 0x7f0a0010 500 | int string hello_world 0x7f0a0011 501 | int style AppBaseTheme 0x7f0b00eb 502 | int style AppTheme 0x7f0b00ec 503 | int style Base_TextAppearance_AppCompat 0x7f0b0098 504 | int style Base_TextAppearance_AppCompat_Body1 0x7f0b00a3 505 | int style Base_TextAppearance_AppCompat_Body2 0x7f0b00a2 506 | int style Base_TextAppearance_AppCompat_Button 0x7f0b00a6 507 | int style Base_TextAppearance_AppCompat_Caption 0x7f0b00a4 508 | int style Base_TextAppearance_AppCompat_Display1 0x7f0b009c 509 | int style Base_TextAppearance_AppCompat_Display2 0x7f0b009b 510 | int style Base_TextAppearance_AppCompat_Display3 0x7f0b009a 511 | int style Base_TextAppearance_AppCompat_Display4 0x7f0b0099 512 | int style Base_TextAppearance_AppCompat_Headline 0x7f0b009d 513 | int style Base_TextAppearance_AppCompat_Inverse 0x7f0b00a7 514 | int style Base_TextAppearance_AppCompat_Large 0x7f0b00a8 515 | int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0b00a9 516 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0085 517 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0086 518 | int style Base_TextAppearance_AppCompat_Medium 0x7f0b00aa 519 | int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0b00ab 520 | int style Base_TextAppearance_AppCompat_Menu 0x7f0b00a5 521 | int style Base_TextAppearance_AppCompat_SearchResult 0x7f0b0087 522 | int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0089 523 | int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0b0088 524 | int style Base_TextAppearance_AppCompat_Small 0x7f0b00ac 525 | int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0b00ad 526 | int style Base_TextAppearance_AppCompat_Subhead 0x7f0b00a0 527 | int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0b00a1 528 | int style Base_TextAppearance_AppCompat_Title 0x7f0b009e 529 | int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0b009f 530 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0070 531 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0072 532 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0074 533 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0071 534 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0073 535 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b006f 536 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b006e 537 | int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b007b 538 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0083 539 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0084 540 | int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0b0097 541 | int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b007c 542 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0092 543 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0091 544 | int style Base_Theme_AppCompat 0x7f0b00cf 545 | int style Base_Theme_AppCompat_CompactMenu 0x7f0b00d2 546 | int style Base_Theme_AppCompat_Dialog 0x7f0b00d4 547 | int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0b00d6 548 | int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0b00d8 549 | int style Base_Theme_AppCompat_Light 0x7f0b00d0 550 | int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0b00d1 551 | int style Base_Theme_AppCompat_Light_Dialog 0x7f0b00d5 552 | int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0b00d7 553 | int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0b00d9 554 | int style Base_ThemeOverlay_AppCompat 0x7f0b00da 555 | int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0b00dd 556 | int style Base_ThemeOverlay_AppCompat_Dark 0x7f0b00dc 557 | int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b00de 558 | int style Base_ThemeOverlay_AppCompat_Light 0x7f0b00db 559 | int style Base_V11_Theme_AppCompat 0x7f0b00df 560 | int style Base_V11_Theme_AppCompat_Dialog 0x7f0b00e1 561 | int style Base_V11_Theme_AppCompat_Light 0x7f0b00e0 562 | int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0b00e2 563 | int style Base_V14_Theme_AppCompat 0x7f0b00e3 564 | int style Base_V14_Theme_AppCompat_Dialog 0x7f0b00e5 565 | int style Base_V14_Theme_AppCompat_Light 0x7f0b00e4 566 | int style Base_V14_Theme_AppCompat_Light_Dialog 0x7f0b00e6 567 | int style Base_V21_Theme_AppCompat 0x7f0b00e7 568 | int style Base_V21_Theme_AppCompat_Dialog 0x7f0b00e9 569 | int style Base_V21_Theme_AppCompat_Light 0x7f0b00e8 570 | int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0b00ea 571 | int style Base_V7_Theme_AppCompat 0x7f0b00cd 572 | int style Base_V7_Theme_AppCompat_Dialog 0x7f0b00d3 573 | int style Base_V7_Theme_AppCompat_Light 0x7f0b00ce 574 | int style Base_Widget_AppCompat_ActionBar 0x7f0b005f 575 | int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0b0061 576 | int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0b0066 577 | int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0b006a 578 | int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0b0068 579 | int style Base_Widget_AppCompat_ActionButton 0x7f0b0063 580 | int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0b0064 581 | int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0b0065 582 | int style Base_Widget_AppCompat_ActionMode 0x7f0b006d 583 | int style Base_Widget_AppCompat_ActivityChooserView 0x7f0b008c 584 | int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0b008a 585 | int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0b0096 586 | int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0b0095 587 | int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0b0079 588 | int style Base_Widget_AppCompat_EditText 0x7f0b0094 589 | int style Base_Widget_AppCompat_Light_ActionBar 0x7f0b0060 590 | int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0062 591 | int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0067 592 | int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0b006b 593 | int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b006c 594 | int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0069 595 | int style Base_Widget_AppCompat_Light_ActivityChooserView 0x7f0b008d 596 | int style Base_Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b008b 597 | int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0b0082 598 | int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b0080 599 | int style Base_Widget_AppCompat_ListPopupWindow 0x7f0b007e 600 | int style Base_Widget_AppCompat_ListView_DropDown 0x7f0b007a 601 | int style Base_Widget_AppCompat_ListView_Menu 0x7f0b007d 602 | int style Base_Widget_AppCompat_PopupMenu 0x7f0b0081 603 | int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0b007f 604 | int style Base_Widget_AppCompat_PopupWindow 0x7f0b008e 605 | int style Base_Widget_AppCompat_ProgressBar 0x7f0b0076 606 | int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0075 607 | int style Base_Widget_AppCompat_SearchView 0x7f0b0093 608 | int style Base_Widget_AppCompat_Spinner 0x7f0b0077 609 | int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0078 610 | int style Base_Widget_AppCompat_Toolbar 0x7f0b008f 611 | int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0090 612 | int style Platform_AppCompat 0x7f0b00c9 613 | int style Platform_AppCompat_Dialog 0x7f0b00cb 614 | int style Platform_AppCompat_Light 0x7f0b00ca 615 | int style Platform_AppCompat_Light_Dialog 0x7f0b00cc 616 | int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0b00b4 617 | int style RtlOverlay_Widget_AppCompat_ActionButton_CloseMode 0x7f0b00b5 618 | int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f0b00b6 619 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0b00b7 620 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0b00b8 621 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0b00b9 622 | int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0b00af 623 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0b00b1 624 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0b00b2 625 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0b00b0 626 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0b00b3 627 | int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0b00ae 628 | int style TextAppearance_AppCompat 0x7f0b0038 629 | int style TextAppearance_AppCompat_Body1 0x7f0b0043 630 | int style TextAppearance_AppCompat_Body2 0x7f0b0042 631 | int style TextAppearance_AppCompat_Button 0x7f0b004d 632 | int style TextAppearance_AppCompat_Caption 0x7f0b0044 633 | int style TextAppearance_AppCompat_Display1 0x7f0b003c 634 | int style TextAppearance_AppCompat_Display2 0x7f0b003b 635 | int style TextAppearance_AppCompat_Display3 0x7f0b003a 636 | int style TextAppearance_AppCompat_Display4 0x7f0b0039 637 | int style TextAppearance_AppCompat_Headline 0x7f0b003d 638 | int style TextAppearance_AppCompat_Inverse 0x7f0b0046 639 | int style TextAppearance_AppCompat_Large 0x7f0b0047 640 | int style TextAppearance_AppCompat_Large_Inverse 0x7f0b0048 641 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0053 642 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0052 643 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0029 644 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b002a 645 | int style TextAppearance_AppCompat_Medium 0x7f0b0049 646 | int style TextAppearance_AppCompat_Medium_Inverse 0x7f0b004a 647 | int style TextAppearance_AppCompat_Menu 0x7f0b0045 648 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b002c 649 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b002b 650 | int style TextAppearance_AppCompat_Small 0x7f0b004b 651 | int style TextAppearance_AppCompat_Small_Inverse 0x7f0b004c 652 | int style TextAppearance_AppCompat_Subhead 0x7f0b0040 653 | int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0b0041 654 | int style TextAppearance_AppCompat_Title 0x7f0b003e 655 | int style TextAppearance_AppCompat_Title_Inverse 0x7f0b003f 656 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0015 657 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0005 658 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0007 659 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0004 660 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0006 661 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b0018 662 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0056 663 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b0017 664 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b0055 665 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0019 666 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0027 667 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0028 668 | int style TextAppearance_AppCompat_Widget_Switch 0x7f0b004e 669 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b001f 670 | int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0037 671 | int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0036 672 | int style Theme_AppCompat 0x7f0b00ba 673 | int style Theme_AppCompat_CompactMenu 0x7f0b00c3 674 | int style Theme_AppCompat_Dialog 0x7f0b00c1 675 | int style Theme_AppCompat_DialogWhenLarge 0x7f0b00bf 676 | int style Theme_AppCompat_Light 0x7f0b00bb 677 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b00bc 678 | int style Theme_AppCompat_Light_Dialog 0x7f0b00c2 679 | int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b00c0 680 | int style Theme_AppCompat_Light_NoActionBar 0x7f0b00be 681 | int style Theme_AppCompat_NoActionBar 0x7f0b00bd 682 | int style ThemeOverlay_AppCompat 0x7f0b00c4 683 | int style ThemeOverlay_AppCompat_ActionBar 0x7f0b00c7 684 | int style ThemeOverlay_AppCompat_Dark 0x7f0b00c6 685 | int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b00c8 686 | int style ThemeOverlay_AppCompat_Light 0x7f0b00c5 687 | int style Widget_AppCompat_ActionBar 0x7f0b0000 688 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002 689 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b000d 690 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0011 691 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b000f 692 | int style Widget_AppCompat_ActionButton 0x7f0b000a 693 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000b 694 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000c 695 | int style Widget_AppCompat_ActionMode 0x7f0b0016 696 | int style Widget_AppCompat_ActivityChooserView 0x7f0b002f 697 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b002d 698 | int style Widget_AppCompat_CompoundButton_Switch 0x7f0b0033 699 | int style Widget_AppCompat_DrawerArrowToggle 0x7f0b0012 700 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b001d 701 | int style Widget_AppCompat_EditText 0x7f0b0032 702 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001 703 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003 704 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b004f 705 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b000e 706 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0050 707 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0013 708 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0014 709 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0010 710 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0051 711 | int style Widget_AppCompat_Light_ActionButton 0x7f0b0059 712 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b005b 713 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b005a 714 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0054 715 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0030 716 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b002e 717 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0057 718 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b005e 719 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b005d 720 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b0024 721 | int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b0022 722 | int style Widget_AppCompat_Light_SearchView 0x7f0b0058 723 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b005c 724 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0020 725 | int style Widget_AppCompat_ListView_DropDown 0x7f0b001e 726 | int style Widget_AppCompat_ListView_Menu 0x7f0b0025 727 | int style Widget_AppCompat_PopupMenu 0x7f0b0023 728 | int style Widget_AppCompat_PopupMenu_Overflow 0x7f0b0021 729 | int style Widget_AppCompat_PopupWindow 0x7f0b0026 730 | int style Widget_AppCompat_ProgressBar 0x7f0b0009 731 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0008 732 | int style Widget_AppCompat_SearchView 0x7f0b0031 733 | int style Widget_AppCompat_Spinner 0x7f0b001a 734 | int style Widget_AppCompat_Spinner_DropDown 0x7f0b001b 735 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b001c 736 | int style Widget_AppCompat_Toolbar 0x7f0b0034 737 | int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0035 738 | int[] styleable ActionBar { 0x7f01000e, 0x7f01000f, 0x7f01003a, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a } 739 | int styleable ActionBar_background 11 740 | int styleable ActionBar_backgroundSplit 13 741 | int styleable ActionBar_backgroundStacked 12 742 | int styleable ActionBar_contentInsetEnd 22 743 | int styleable ActionBar_contentInsetLeft 23 744 | int styleable ActionBar_contentInsetRight 24 745 | int styleable ActionBar_contentInsetStart 21 746 | int styleable ActionBar_customNavigationLayout 14 747 | int styleable ActionBar_displayOptions 4 748 | int styleable ActionBar_divider 10 749 | int styleable ActionBar_elevation 25 750 | int styleable ActionBar_height 1 751 | int styleable ActionBar_hideOnContentScroll 20 752 | int styleable ActionBar_homeAsUpIndicator 2 753 | int styleable ActionBar_homeLayout 15 754 | int styleable ActionBar_icon 8 755 | int styleable ActionBar_indeterminateProgressStyle 17 756 | int styleable ActionBar_itemPadding 19 757 | int styleable ActionBar_logo 9 758 | int styleable ActionBar_navigationMode 3 759 | int styleable ActionBar_popupTheme 26 760 | int styleable ActionBar_progressBarPadding 18 761 | int styleable ActionBar_progressBarStyle 16 762 | int styleable ActionBar_subtitle 5 763 | int styleable ActionBar_subtitleTextStyle 7 764 | int styleable ActionBar_title 0 765 | int styleable ActionBar_titleTextStyle 6 766 | int[] styleable ActionBarLayout { 0x010100b3 } 767 | int styleable ActionBarLayout_android_layout_gravity 0 768 | int[] styleable ActionMenuItemView { 0x0101013f } 769 | int styleable ActionMenuItemView_android_minWidth 0 770 | int[] styleable ActionMenuView { } 771 | int[] styleable ActionMode { 0x7f01000f, 0x7f010066, 0x7f010067, 0x7f01006b, 0x7f01006d, 0x7f01007b } 772 | int styleable ActionMode_background 3 773 | int styleable ActionMode_backgroundSplit 4 774 | int styleable ActionMode_closeItemLayout 5 775 | int styleable ActionMode_height 0 776 | int styleable ActionMode_subtitleTextStyle 2 777 | int styleable ActionMode_titleTextStyle 1 778 | int[] styleable ActivityChooserView { 0x7f010092, 0x7f010093 } 779 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 780 | int styleable ActivityChooserView_initialActivityCount 0 781 | int[] styleable CompatTextView { 0x7f010094 } 782 | int styleable CompatTextView_textAllCaps 0 783 | int[] styleable DrawerArrowToggle { 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae } 784 | int styleable DrawerArrowToggle_barSize 6 785 | int styleable DrawerArrowToggle_color 0 786 | int styleable DrawerArrowToggle_drawableSize 2 787 | int styleable DrawerArrowToggle_gapBetweenBars 3 788 | int styleable DrawerArrowToggle_middleBarArrowSize 5 789 | int styleable DrawerArrowToggle_spinBars 1 790 | int styleable DrawerArrowToggle_thickness 7 791 | int styleable DrawerArrowToggle_topBottomBarArrowSize 4 792 | int[] styleable GridLayout { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 } 793 | int styleable GridLayout_alignmentMode 4 794 | int styleable GridLayout_columnCount 2 795 | int styleable GridLayout_columnOrderPreserved 6 796 | int styleable GridLayout_orientation 0 797 | int styleable GridLayout_rowCount 1 798 | int styleable GridLayout_rowOrderPreserved 5 799 | int styleable GridLayout_useDefaultMargins 3 800 | int[] styleable GridLayout_Layout { 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d } 801 | int styleable GridLayout_Layout_android_layout_height 1 802 | int styleable GridLayout_Layout_android_layout_margin 2 803 | int styleable GridLayout_Layout_android_layout_marginBottom 6 804 | int styleable GridLayout_Layout_android_layout_marginLeft 3 805 | int styleable GridLayout_Layout_android_layout_marginRight 5 806 | int styleable GridLayout_Layout_android_layout_marginTop 4 807 | int styleable GridLayout_Layout_android_layout_width 0 808 | int styleable GridLayout_Layout_layout_column 10 809 | int styleable GridLayout_Layout_layout_columnSpan 11 810 | int styleable GridLayout_Layout_layout_columnWeight 12 811 | int styleable GridLayout_Layout_layout_gravity 13 812 | int styleable GridLayout_Layout_layout_row 7 813 | int styleable GridLayout_Layout_layout_rowSpan 8 814 | int styleable GridLayout_Layout_layout_rowWeight 9 815 | int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01006a, 0x7f010095, 0x7f010096, 0x7f010097 } 816 | int styleable LinearLayoutCompat_android_baselineAligned 2 817 | int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 818 | int styleable LinearLayoutCompat_android_gravity 0 819 | int styleable LinearLayoutCompat_android_orientation 1 820 | int styleable LinearLayoutCompat_android_weightSum 4 821 | int styleable LinearLayoutCompat_divider 5 822 | int styleable LinearLayoutCompat_dividerPadding 8 823 | int styleable LinearLayoutCompat_measureWithLargestChild 6 824 | int styleable LinearLayoutCompat_showDividers 7 825 | int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } 826 | int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 827 | int styleable LinearLayoutCompat_Layout_android_layout_height 2 828 | int styleable LinearLayoutCompat_Layout_android_layout_weight 3 829 | int styleable LinearLayoutCompat_Layout_android_layout_width 1 830 | int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } 831 | int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 832 | int styleable ListPopupWindow_android_dropDownVerticalOffset 1 833 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 834 | int styleable MenuGroup_android_checkableBehavior 5 835 | int styleable MenuGroup_android_enabled 0 836 | int styleable MenuGroup_android_id 1 837 | int styleable MenuGroup_android_menuCategory 3 838 | int styleable MenuGroup_android_orderInCategory 4 839 | int styleable MenuGroup_android_visible 2 840 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082 } 841 | int styleable MenuItem_actionLayout 14 842 | int styleable MenuItem_actionProviderClass 16 843 | int styleable MenuItem_actionViewClass 15 844 | int styleable MenuItem_android_alphabeticShortcut 9 845 | int styleable MenuItem_android_checkable 11 846 | int styleable MenuItem_android_checked 3 847 | int styleable MenuItem_android_enabled 1 848 | int styleable MenuItem_android_icon 0 849 | int styleable MenuItem_android_id 2 850 | int styleable MenuItem_android_menuCategory 5 851 | int styleable MenuItem_android_numericShortcut 10 852 | int styleable MenuItem_android_onClick 12 853 | int styleable MenuItem_android_orderInCategory 6 854 | int styleable MenuItem_android_title 7 855 | int styleable MenuItem_android_titleCondensed 8 856 | int styleable MenuItem_android_visible 4 857 | int styleable MenuItem_showAsAction 13 858 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01007e } 859 | int styleable MenuView_android_headerBackground 4 860 | int styleable MenuView_android_horizontalDivider 2 861 | int styleable MenuView_android_itemBackground 5 862 | int styleable MenuView_android_itemIconDisabledAlpha 6 863 | int styleable MenuView_android_itemTextAppearance 1 864 | int styleable MenuView_android_verticalDivider 3 865 | int styleable MenuView_android_windowAnimationStyle 0 866 | int styleable MenuView_preserveIconSpacing 7 867 | int[] styleable PopupWindow { 0x01010176, 0x7f0100a6 } 868 | int styleable PopupWindow_android_popupBackground 0 869 | int styleable PopupWindow_overlapAnchor 1 870 | int[] styleable PopupWindowBackgroundState { 0x7f0100a5 } 871 | int styleable PopupWindowBackgroundState_state_above_anchor 0 872 | int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091 } 873 | int styleable SearchView_android_focusable 0 874 | int styleable SearchView_android_imeOptions 3 875 | int styleable SearchView_android_inputType 2 876 | int styleable SearchView_android_maxWidth 1 877 | int styleable SearchView_closeIcon 7 878 | int styleable SearchView_commitIcon 11 879 | int styleable SearchView_goIcon 8 880 | int styleable SearchView_iconifiedByDefault 5 881 | int styleable SearchView_layout 4 882 | int styleable SearchView_queryBackground 13 883 | int styleable SearchView_queryHint 6 884 | int styleable SearchView_searchIcon 9 885 | int styleable SearchView_submitBackground 14 886 | int styleable SearchView_suggestionRowLayout 12 887 | int styleable SearchView_voiceIcon 10 888 | int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086 } 889 | int styleable Spinner_android_background 1 890 | int styleable Spinner_android_dropDownHorizontalOffset 5 891 | int styleable Spinner_android_dropDownSelector 2 892 | int styleable Spinner_android_dropDownVerticalOffset 6 893 | int styleable Spinner_android_dropDownWidth 4 894 | int styleable Spinner_android_gravity 0 895 | int styleable Spinner_android_popupBackground 3 896 | int styleable Spinner_disableChildrenWhenDisabled 10 897 | int styleable Spinner_popupPromptView 9 898 | int styleable Spinner_prompt 7 899 | int styleable Spinner_spinnerMode 8 900 | int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 } 901 | int styleable SwitchCompat_android_textOff 1 902 | int styleable SwitchCompat_android_textOn 0 903 | int styleable SwitchCompat_android_thumb 2 904 | int styleable SwitchCompat_showText 9 905 | int styleable SwitchCompat_splitTrack 8 906 | int styleable SwitchCompat_switchMinWidth 6 907 | int styleable SwitchCompat_switchPadding 7 908 | int styleable SwitchCompat_switchTextAppearance 5 909 | int styleable SwitchCompat_thumbTextPadding 4 910 | int styleable SwitchCompat_track 3 911 | int[] styleable Theme { 0x01010057, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062 } 912 | int styleable Theme_actionBarDivider 19 913 | int styleable Theme_actionBarItemBackground 20 914 | int styleable Theme_actionBarPopupTheme 13 915 | int styleable Theme_actionBarSize 18 916 | int styleable Theme_actionBarSplitStyle 15 917 | int styleable Theme_actionBarStyle 14 918 | int styleable Theme_actionBarTabBarStyle 9 919 | int styleable Theme_actionBarTabStyle 8 920 | int styleable Theme_actionBarTabTextStyle 10 921 | int styleable Theme_actionBarTheme 16 922 | int styleable Theme_actionBarWidgetTheme 17 923 | int styleable Theme_actionButtonStyle 43 924 | int styleable Theme_actionDropDownStyle 38 925 | int styleable Theme_actionMenuTextAppearance 21 926 | int styleable Theme_actionMenuTextColor 22 927 | int styleable Theme_actionModeBackground 25 928 | int styleable Theme_actionModeCloseButtonStyle 24 929 | int styleable Theme_actionModeCloseDrawable 27 930 | int styleable Theme_actionModeCopyDrawable 29 931 | int styleable Theme_actionModeCutDrawable 28 932 | int styleable Theme_actionModeFindDrawable 33 933 | int styleable Theme_actionModePasteDrawable 30 934 | int styleable Theme_actionModePopupWindowStyle 35 935 | int styleable Theme_actionModeSelectAllDrawable 31 936 | int styleable Theme_actionModeShareDrawable 32 937 | int styleable Theme_actionModeSplitBackground 26 938 | int styleable Theme_actionModeStyle 23 939 | int styleable Theme_actionModeWebSearchDrawable 34 940 | int styleable Theme_actionOverflowButtonStyle 11 941 | int styleable Theme_actionOverflowMenuStyle 12 942 | int styleable Theme_activityChooserViewStyle 50 943 | int styleable Theme_android_windowIsFloating 0 944 | int styleable Theme_buttonBarButtonStyle 45 945 | int styleable Theme_buttonBarStyle 44 946 | int styleable Theme_colorAccent 77 947 | int styleable Theme_colorButtonNormal 81 948 | int styleable Theme_colorControlActivated 79 949 | int styleable Theme_colorControlHighlight 80 950 | int styleable Theme_colorControlNormal 78 951 | int styleable Theme_colorPrimary 75 952 | int styleable Theme_colorPrimaryDark 76 953 | int styleable Theme_colorSwitchThumbNormal 82 954 | int styleable Theme_dividerHorizontal 49 955 | int styleable Theme_dividerVertical 48 956 | int styleable Theme_dropDownListViewStyle 67 957 | int styleable Theme_dropdownListPreferredItemHeight 39 958 | int styleable Theme_editTextBackground 56 959 | int styleable Theme_editTextColor 55 960 | int styleable Theme_homeAsUpIndicator 42 961 | int styleable Theme_listChoiceBackgroundIndicator 74 962 | int styleable Theme_listPopupWindowStyle 68 963 | int styleable Theme_listPreferredItemHeight 62 964 | int styleable Theme_listPreferredItemHeightLarge 64 965 | int styleable Theme_listPreferredItemHeightSmall 63 966 | int styleable Theme_listPreferredItemPaddingLeft 65 967 | int styleable Theme_listPreferredItemPaddingRight 66 968 | int styleable Theme_panelBackground 71 969 | int styleable Theme_panelMenuListTheme 73 970 | int styleable Theme_panelMenuListWidth 72 971 | int styleable Theme_popupMenuStyle 53 972 | int styleable Theme_popupWindowStyle 54 973 | int styleable Theme_searchViewStyle 61 974 | int styleable Theme_selectableItemBackground 46 975 | int styleable Theme_selectableItemBackgroundBorderless 47 976 | int styleable Theme_spinnerDropDownItemStyle 41 977 | int styleable Theme_spinnerStyle 40 978 | int styleable Theme_switchStyle 57 979 | int styleable Theme_textAppearanceLargePopupMenu 36 980 | int styleable Theme_textAppearanceListItem 69 981 | int styleable Theme_textAppearanceListItemSmall 70 982 | int styleable Theme_textAppearanceSearchResultSubtitle 59 983 | int styleable Theme_textAppearanceSearchResultTitle 58 984 | int styleable Theme_textAppearanceSmallPopupMenu 37 985 | int styleable Theme_textColorSearchUrl 60 986 | int styleable Theme_toolbarNavigationButtonStyle 52 987 | int styleable Theme_toolbarStyle 51 988 | int styleable Theme_windowActionBar 1 989 | int styleable Theme_windowActionBarOverlay 2 990 | int styleable Theme_windowActionModeOverlay 3 991 | int styleable Theme_windowFixedHeightMajor 7 992 | int styleable Theme_windowFixedHeightMinor 5 993 | int styleable Theme_windowFixedWidthMajor 4 994 | int styleable Theme_windowFixedWidthMinor 6 995 | int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f01000e, 0x7f010065, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f01007a, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4 } 996 | int styleable Toolbar_android_gravity 0 997 | int styleable Toolbar_android_minHeight 1 998 | int styleable Toolbar_collapseContentDescription 19 999 | int styleable Toolbar_collapseIcon 18 1000 | int styleable Toolbar_contentInsetEnd 5 1001 | int styleable Toolbar_contentInsetLeft 6 1002 | int styleable Toolbar_contentInsetRight 7 1003 | int styleable Toolbar_contentInsetStart 4 1004 | int styleable Toolbar_maxButtonHeight 16 1005 | int styleable Toolbar_navigationContentDescription 21 1006 | int styleable Toolbar_navigationIcon 20 1007 | int styleable Toolbar_popupTheme 8 1008 | int styleable Toolbar_subtitle 3 1009 | int styleable Toolbar_subtitleTextAppearance 10 1010 | int styleable Toolbar_theme 17 1011 | int styleable Toolbar_title 2 1012 | int styleable Toolbar_titleMarginBottom 15 1013 | int styleable Toolbar_titleMarginEnd 13 1014 | int styleable Toolbar_titleMarginStart 12 1015 | int styleable Toolbar_titleMarginTop 14 1016 | int styleable Toolbar_titleMargins 11 1017 | int styleable Toolbar_titleTextAppearance 9 1018 | int[] styleable View { 0x010100da, 0x7f01007c, 0x7f01007d } 1019 | int styleable View_android_focusable 0 1020 | int styleable View_paddingEnd 2 1021 | int styleable View_paddingStart 1 1022 | int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } 1023 | int styleable ViewStubCompat_android_id 0 1024 | int styleable ViewStubCompat_android_inflatedId 2 1025 | int styleable ViewStubCompat_android_layout 1 1026 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes.dex -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$attr.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$dimen.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$id.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R$styleable.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/android/support/v7/gridlayout/R.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/BuildConfig.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/JSONParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/JSONParser.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/ListViewAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/ListViewAdapter.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/MainActivity$AttemptLogin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/MainActivity$AttemptLogin.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/MainActivity.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$anim.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$attr.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$bool.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$color.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$dimen.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$drawable.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$id.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$integer.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$layout.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$menu.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$string.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$style.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R$styleable.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/R.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/RegisterActivity$Register.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/RegisterActivity$Register.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/RegisterActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/RegisterActivity.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/UsersActivity$DownloadJSON$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/UsersActivity$DownloadJSON$1.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/UsersActivity$DownloadJSON.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/UsersActivity$DownloadJSON.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/UsersActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/classes/com/ahmaadssb/androidwebservices/UsersActivity.class -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/dexedLibs/android-support-v4-1b6326b1acb505542443969d8de9b656.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/dexedLibs/android-support-v4-1b6326b1acb505542443969d8de9b656.jar -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/dexedLibs/android-support-v7-appcompat-124a905f7388529d3785b95be5719922.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/dexedLibs/android-support-v7-appcompat-124a905f7388529d3785b95be5719922.jar -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/dexedLibs/android-support-v7-gridlayout-c3bbb2e220a62cfbdcbcd55a86139739.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/dexedLibs/android-support-v7-gridlayout-c3bbb2e220a62cfbdcbcd55a86139739.jar -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/dexedLibs/appcompat_v7-6c47aa93e89747859e79de9b6a88fd75.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/dexedLibs/appcompat_v7-6c47aa93e89747859e79de9b6a88fd75.jar -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/dexedLibs/gridlayout_v7-ab328e11896b40bf0b3b12ceb2adca04.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/dexedLibs/gridlayout_v7-ab328e11896b40bf0b3b12ceb2adca04.jar -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1417871652336 995386 a13f8fe2c278737e2f0b6fcf00f6b2ae4034aacf D:\eclips workspace\appcompat_v7\libs\android-support-v4.jar 5 | 1418374070930 995386 a13f8fe2c278737e2f0b6fcf00f6b2ae4034aacf D:\eclips workspace\Android Web Services\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/bin/resources.ap_ -------------------------------------------------------------------------------- /Android Project/Android Web Services/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 = 0x7f010023; 20 | public static final int actionBarItemBackground = 0x7f010024; 21 | public static final int actionBarPopupTheme = 0x7f01001d; 22 | public static final int actionBarSize = 0x7f010022; 23 | public static final int actionBarSplitStyle = 0x7f01001f; 24 | public static final int actionBarStyle = 0x7f01001e; 25 | public static final int actionBarTabBarStyle = 0x7f010019; 26 | public static final int actionBarTabStyle = 0x7f010018; 27 | public static final int actionBarTabTextStyle = 0x7f01001a; 28 | public static final int actionBarTheme = 0x7f010020; 29 | public static final int actionBarWidgetTheme = 0x7f010021; 30 | public static final int actionButtonStyle = 0x7f01003b; 31 | public static final int actionDropDownStyle = 0x7f010036; 32 | public static final int actionLayout = 0x7f010080; 33 | public static final int actionMenuTextAppearance = 0x7f010025; 34 | public static final int actionMenuTextColor = 0x7f010026; 35 | public static final int actionModeBackground = 0x7f010029; 36 | public static final int actionModeCloseButtonStyle = 0x7f010028; 37 | public static final int actionModeCloseDrawable = 0x7f01002b; 38 | public static final int actionModeCopyDrawable = 0x7f01002d; 39 | public static final int actionModeCutDrawable = 0x7f01002c; 40 | public static final int actionModeFindDrawable = 0x7f010031; 41 | public static final int actionModePasteDrawable = 0x7f01002e; 42 | public static final int actionModePopupWindowStyle = 0x7f010033; 43 | public static final int actionModeSelectAllDrawable = 0x7f01002f; 44 | public static final int actionModeShareDrawable = 0x7f010030; 45 | public static final int actionModeSplitBackground = 0x7f01002a; 46 | public static final int actionModeStyle = 0x7f010027; 47 | public static final int actionModeWebSearchDrawable = 0x7f010032; 48 | public static final int actionOverflowButtonStyle = 0x7f01001b; 49 | public static final int actionOverflowMenuStyle = 0x7f01001c; 50 | public static final int actionProviderClass = 0x7f010082; 51 | public static final int actionViewClass = 0x7f010081; 52 | public static final int activityChooserViewStyle = 0x7f010042; 53 | public static final int background = 0x7f01006b; 54 | public static final int backgroundSplit = 0x7f01006d; 55 | public static final int backgroundStacked = 0x7f01006c; 56 | public static final int barSize = 0x7f0100ad; 57 | public static final int buttonBarButtonStyle = 0x7f01003d; 58 | public static final int buttonBarStyle = 0x7f01003c; 59 | public static final int closeIcon = 0x7f01008a; 60 | public static final int closeItemLayout = 0x7f01007b; 61 | public static final int collapseContentDescription = 0x7f0100a2; 62 | public static final int collapseIcon = 0x7f0100a1; 63 | public static final int color = 0x7f0100a7; 64 | public static final int colorAccent = 0x7f01005d; 65 | public static final int colorButtonNormal = 0x7f010061; 66 | public static final int colorControlActivated = 0x7f01005f; 67 | public static final int colorControlHighlight = 0x7f010060; 68 | public static final int colorControlNormal = 0x7f01005e; 69 | public static final int colorPrimary = 0x7f01005b; 70 | public static final int colorPrimaryDark = 0x7f01005c; 71 | public static final int colorSwitchThumbNormal = 0x7f010062; 72 | public static final int commitIcon = 0x7f01008e; 73 | public static final int contentInsetEnd = 0x7f010076; 74 | public static final int contentInsetLeft = 0x7f010077; 75 | public static final int contentInsetRight = 0x7f010078; 76 | public static final int contentInsetStart = 0x7f010075; 77 | public static final int customNavigationLayout = 0x7f01006e; 78 | public static final int disableChildrenWhenDisabled = 0x7f010086; 79 | public static final int displayOptions = 0x7f010064; 80 | public static final int divider = 0x7f01006a; 81 | public static final int dividerHorizontal = 0x7f010041; 82 | public static final int dividerPadding = 0x7f010097; 83 | public static final int dividerVertical = 0x7f010040; 84 | public static final int drawableSize = 0x7f0100a9; 85 | public static final int drawerArrowStyle = 0x7f0100af; 86 | public static final int dropDownListViewStyle = 0x7f010053; 87 | public static final int dropdownListPreferredItemHeight = 0x7f010037; 88 | public static final int editTextBackground = 0x7f010048; 89 | public static final int editTextColor = 0x7f010047; 90 | public static final int elevation = 0x7f010079; 91 | public static final int expandActivityOverflowButtonDrawable = 0x7f010093; 92 | public static final int gapBetweenBars = 0x7f0100aa; 93 | public static final int goIcon = 0x7f01008b; 94 | public static final int height = 0x7f01000f; 95 | public static final int hideOnContentScroll = 0x7f010074; 96 | public static final int homeAsUpIndicator = 0x7f01003a; 97 | public static final int homeLayout = 0x7f01006f; 98 | public static final int icon = 0x7f010068; 99 | public static final int iconifiedByDefault = 0x7f010088; 100 | public static final int indeterminateProgressStyle = 0x7f010071; 101 | public static final int initialActivityCount = 0x7f010092; 102 | public static final int isLightTheme = 0x7f010010; 103 | public static final int itemPadding = 0x7f010073; 104 | public static final int layout = 0x7f010087; 105 | public static final int listChoiceBackgroundIndicator = 0x7f01005a; 106 | public static final int listPopupWindowStyle = 0x7f010054; 107 | public static final int listPreferredItemHeight = 0x7f01004e; 108 | public static final int listPreferredItemHeightLarge = 0x7f010050; 109 | public static final int listPreferredItemHeightSmall = 0x7f01004f; 110 | public static final int listPreferredItemPaddingLeft = 0x7f010051; 111 | public static final int listPreferredItemPaddingRight = 0x7f010052; 112 | public static final int logo = 0x7f010069; 113 | public static final int maxButtonHeight = 0x7f01009f; 114 | public static final int measureWithLargestChild = 0x7f010095; 115 | public static final int middleBarArrowSize = 0x7f0100ac; 116 | public static final int navigationContentDescription = 0x7f0100a4; 117 | public static final int navigationIcon = 0x7f0100a3; 118 | public static final int navigationMode = 0x7f010063; 119 | public static final int overlapAnchor = 0x7f0100a6; 120 | public static final int paddingEnd = 0x7f01007d; 121 | public static final int paddingStart = 0x7f01007c; 122 | public static final int panelBackground = 0x7f010057; 123 | public static final int panelMenuListTheme = 0x7f010059; 124 | public static final int panelMenuListWidth = 0x7f010058; 125 | public static final int popupMenuStyle = 0x7f010045; 126 | public static final int popupPromptView = 0x7f010085; 127 | public static final int popupTheme = 0x7f01007a; 128 | public static final int popupWindowStyle = 0x7f010046; 129 | public static final int preserveIconSpacing = 0x7f01007e; 130 | public static final int progressBarPadding = 0x7f010072; 131 | public static final int progressBarStyle = 0x7f010070; 132 | public static final int prompt = 0x7f010083; 133 | public static final int queryBackground = 0x7f010090; 134 | public static final int queryHint = 0x7f010089; 135 | public static final int searchIcon = 0x7f01008c; 136 | public static final int searchViewStyle = 0x7f01004d; 137 | public static final int selectableItemBackground = 0x7f01003e; 138 | public static final int selectableItemBackgroundBorderless = 0x7f01003f; 139 | public static final int showAsAction = 0x7f01007f; 140 | public static final int showDividers = 0x7f010096; 141 | public static final int showText = 0x7f0100b6; 142 | public static final int spinBars = 0x7f0100a8; 143 | public static final int spinnerDropDownItemStyle = 0x7f010039; 144 | public static final int spinnerMode = 0x7f010084; 145 | public static final int spinnerStyle = 0x7f010038; 146 | public static final int splitTrack = 0x7f0100b5; 147 | public static final int state_above_anchor = 0x7f0100a5; 148 | public static final int submitBackground = 0x7f010091; 149 | public static final int subtitle = 0x7f010065; 150 | public static final int subtitleTextAppearance = 0x7f010099; 151 | public static final int subtitleTextStyle = 0x7f010067; 152 | public static final int suggestionRowLayout = 0x7f01008f; 153 | public static final int switchMinWidth = 0x7f0100b3; 154 | public static final int switchPadding = 0x7f0100b4; 155 | public static final int switchStyle = 0x7f010049; 156 | public static final int switchTextAppearance = 0x7f0100b2; 157 | public static final int textAllCaps = 0x7f010094; 158 | public static final int textAppearanceLargePopupMenu = 0x7f010034; 159 | public static final int textAppearanceListItem = 0x7f010055; 160 | public static final int textAppearanceListItemSmall = 0x7f010056; 161 | public static final int textAppearanceSearchResultSubtitle = 0x7f01004b; 162 | public static final int textAppearanceSearchResultTitle = 0x7f01004a; 163 | public static final int textAppearanceSmallPopupMenu = 0x7f010035; 164 | public static final int textColorSearchUrl = 0x7f01004c; 165 | public static final int theme = 0x7f0100a0; 166 | public static final int thickness = 0x7f0100ae; 167 | public static final int thumbTextPadding = 0x7f0100b1; 168 | public static final int title = 0x7f01000e; 169 | public static final int titleMarginBottom = 0x7f01009e; 170 | public static final int titleMarginEnd = 0x7f01009c; 171 | public static final int titleMarginStart = 0x7f01009b; 172 | public static final int titleMarginTop = 0x7f01009d; 173 | public static final int titleMargins = 0x7f01009a; 174 | public static final int titleTextAppearance = 0x7f010098; 175 | public static final int titleTextStyle = 0x7f010066; 176 | public static final int toolbarNavigationButtonStyle = 0x7f010044; 177 | public static final int toolbarStyle = 0x7f010043; 178 | public static final int topBottomBarArrowSize = 0x7f0100ab; 179 | public static final int track = 0x7f0100b0; 180 | public static final int voiceIcon = 0x7f01008d; 181 | public static final int windowActionBar = 0x7f010011; 182 | public static final int windowActionBarOverlay = 0x7f010012; 183 | public static final int windowActionModeOverlay = 0x7f010013; 184 | public static final int windowFixedHeightMajor = 0x7f010017; 185 | public static final int windowFixedHeightMinor = 0x7f010015; 186 | public static final int windowFixedWidthMajor = 0x7f010014; 187 | public static final int windowFixedWidthMinor = 0x7f010016; 188 | } 189 | public static final class bool { 190 | public static final int abc_action_bar_embed_tabs = 0x7f060000; 191 | public static final int abc_action_bar_embed_tabs_pre_jb = 0x7f060001; 192 | public static final int abc_action_bar_expanded_action_views_exclusive = 0x7f060002; 193 | public static final int abc_config_actionMenuItemAllCaps = 0x7f060005; 194 | public static final int abc_config_allowActionMenuItemTextWithIcon = 0x7f060004; 195 | public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f060003; 196 | } 197 | public static final class color { 198 | public static final int abc_background_cache_hint_selector_material_dark = 0x7f070031; 199 | public static final int abc_background_cache_hint_selector_material_light = 0x7f070032; 200 | public static final int abc_input_method_navigation_guard = 0x7f070003; 201 | public static final int abc_primary_text_disable_only_material_dark = 0x7f070033; 202 | public static final int abc_primary_text_disable_only_material_light = 0x7f070034; 203 | public static final int abc_primary_text_material_dark = 0x7f070035; 204 | public static final int abc_primary_text_material_light = 0x7f070036; 205 | public static final int abc_search_url_text = 0x7f070037; 206 | public static final int abc_search_url_text_normal = 0x7f070000; 207 | public static final int abc_search_url_text_pressed = 0x7f070002; 208 | public static final int abc_search_url_text_selected = 0x7f070001; 209 | public static final int abc_secondary_text_material_dark = 0x7f070038; 210 | public static final int abc_secondary_text_material_light = 0x7f070039; 211 | public static final int accent_material_dark = 0x7f07000f; 212 | public static final int accent_material_light = 0x7f07000e; 213 | public static final int background_floating_material_dark = 0x7f070006; 214 | public static final int background_floating_material_light = 0x7f070007; 215 | public static final int background_material_dark = 0x7f070004; 216 | public static final int background_material_light = 0x7f070005; 217 | public static final int bright_foreground_disabled_material_dark = 0x7f070016; 218 | public static final int bright_foreground_disabled_material_light = 0x7f070017; 219 | public static final int bright_foreground_inverse_material_dark = 0x7f070018; 220 | public static final int bright_foreground_inverse_material_light = 0x7f070019; 221 | public static final int bright_foreground_material_dark = 0x7f070014; 222 | public static final int bright_foreground_material_light = 0x7f070015; 223 | public static final int button_material_dark = 0x7f070010; 224 | public static final int button_material_light = 0x7f070011; 225 | public static final int dim_foreground_disabled_material_dark = 0x7f07001c; 226 | public static final int dim_foreground_disabled_material_light = 0x7f07001d; 227 | public static final int dim_foreground_material_dark = 0x7f07001a; 228 | public static final int dim_foreground_material_light = 0x7f07001b; 229 | public static final int highlighted_text_material_dark = 0x7f070020; 230 | public static final int highlighted_text_material_light = 0x7f070021; 231 | public static final int hint_foreground_material_dark = 0x7f07001e; 232 | public static final int hint_foreground_material_light = 0x7f07001f; 233 | public static final int link_text_material_dark = 0x7f070022; 234 | public static final int link_text_material_light = 0x7f070023; 235 | public static final int material_blue_grey_800 = 0x7f07002e; 236 | public static final int material_blue_grey_900 = 0x7f07002f; 237 | public static final int material_blue_grey_950 = 0x7f070030; 238 | public static final int material_deep_teal_200 = 0x7f07002c; 239 | public static final int material_deep_teal_500 = 0x7f07002d; 240 | public static final int primary_dark_material_dark = 0x7f07000a; 241 | public static final int primary_dark_material_light = 0x7f07000b; 242 | public static final int primary_material_dark = 0x7f070008; 243 | public static final int primary_material_light = 0x7f070009; 244 | public static final int primary_text_default_material_dark = 0x7f070026; 245 | public static final int primary_text_default_material_light = 0x7f070024; 246 | public static final int primary_text_disabled_material_dark = 0x7f07002a; 247 | public static final int primary_text_disabled_material_light = 0x7f070028; 248 | public static final int ripple_material_dark = 0x7f07000c; 249 | public static final int ripple_material_light = 0x7f07000d; 250 | public static final int secondary_text_default_material_dark = 0x7f070027; 251 | public static final int secondary_text_default_material_light = 0x7f070025; 252 | public static final int secondary_text_disabled_material_dark = 0x7f07002b; 253 | public static final int secondary_text_disabled_material_light = 0x7f070029; 254 | public static final int switch_thumb_normal_material_dark = 0x7f070012; 255 | public static final int switch_thumb_normal_material_light = 0x7f070013; 256 | } 257 | public static final class dimen { 258 | public static final int abc_action_bar_default_height_material = 0x7f050015; 259 | public static final int abc_action_bar_default_padding_material = 0x7f050016; 260 | public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050017; 261 | public static final int abc_action_bar_progress_bar_size = 0x7f050006; 262 | public static final int abc_action_bar_stacked_max_height = 0x7f050005; 263 | public static final int abc_action_bar_stacked_tab_max_width = 0x7f050004; 264 | public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f050019; 265 | public static final int abc_action_bar_subtitle_top_margin_material = 0x7f050018; 266 | public static final int abc_action_button_min_height_material = 0x7f05001c; 267 | public static final int abc_action_button_min_width_material = 0x7f05001b; 268 | public static final int abc_action_button_min_width_overflow_material = 0x7f05001a; 269 | public static final int abc_config_prefDialogWidth = 0x7f050003; 270 | public static final int abc_control_inset_material = 0x7f050011; 271 | public static final int abc_control_padding_material = 0x7f050012; 272 | public static final int abc_dropdownitem_icon_width = 0x7f05000c; 273 | public static final int abc_dropdownitem_text_padding_left = 0x7f05000a; 274 | public static final int abc_dropdownitem_text_padding_right = 0x7f05000b; 275 | public static final int abc_panel_menu_list_width = 0x7f050007; 276 | public static final int abc_search_view_preferred_width = 0x7f050009; 277 | public static final int abc_search_view_text_min_width = 0x7f050008; 278 | public static final int abc_text_size_body_1_material = 0x7f050026; 279 | public static final int abc_text_size_body_2_material = 0x7f050025; 280 | public static final int abc_text_size_button_material = 0x7f050028; 281 | public static final int abc_text_size_caption_material = 0x7f050027; 282 | public static final int abc_text_size_display_1_material = 0x7f050020; 283 | public static final int abc_text_size_display_2_material = 0x7f05001f; 284 | public static final int abc_text_size_display_3_material = 0x7f05001e; 285 | public static final int abc_text_size_display_4_material = 0x7f05001d; 286 | public static final int abc_text_size_headline_material = 0x7f050021; 287 | public static final int abc_text_size_large_material = 0x7f050029; 288 | public static final int abc_text_size_medium_material = 0x7f05002a; 289 | public static final int abc_text_size_menu_material = 0x7f050024; 290 | public static final int abc_text_size_small_material = 0x7f05002b; 291 | public static final int abc_text_size_subhead_material = 0x7f050023; 292 | public static final int abc_text_size_subtitle_material_toolbar = 0x7f050014; 293 | public static final int abc_text_size_title_material = 0x7f050022; 294 | public static final int abc_text_size_title_material_toolbar = 0x7f050013; 295 | public static final int dialog_fixed_height_major = 0x7f05000f; 296 | public static final int dialog_fixed_height_minor = 0x7f050010; 297 | public static final int dialog_fixed_width_major = 0x7f05000d; 298 | public static final int dialog_fixed_width_minor = 0x7f05000e; 299 | public static final int disabled_alpha_material_dark = 0x7f050002; 300 | public static final int disabled_alpha_material_light = 0x7f050001; 301 | } 302 | public static final class drawable { 303 | public static final int abc_ab_share_pack_holo_dark = 0x7f020000; 304 | public static final int abc_ab_share_pack_holo_light = 0x7f020001; 305 | public static final int abc_btn_check_material = 0x7f020002; 306 | public static final int abc_btn_check_to_on_mtrl_000 = 0x7f020003; 307 | public static final int abc_btn_check_to_on_mtrl_015 = 0x7f020004; 308 | public static final int abc_btn_radio_material = 0x7f020005; 309 | public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f020006; 310 | public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f020007; 311 | public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f020008; 312 | public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f020009; 313 | public static final int abc_cab_background_internal_bg = 0x7f02000a; 314 | public static final int abc_cab_background_top_material = 0x7f02000b; 315 | public static final int abc_cab_background_top_mtrl_alpha = 0x7f02000c; 316 | public static final int abc_edit_text_material = 0x7f02000d; 317 | public static final int abc_ic_ab_back_mtrl_am_alpha = 0x7f02000e; 318 | public static final int abc_ic_clear_mtrl_alpha = 0x7f02000f; 319 | public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f020010; 320 | public static final int abc_ic_go_search_api_mtrl_alpha = 0x7f020011; 321 | public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f020012; 322 | public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f020013; 323 | public static final int abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f020014; 324 | public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f020015; 325 | public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f020016; 326 | public static final int abc_ic_menu_share_mtrl_alpha = 0x7f020017; 327 | public static final int abc_ic_search_api_mtrl_alpha = 0x7f020018; 328 | public static final int abc_ic_voice_search_api_mtrl_alpha = 0x7f020019; 329 | public static final int abc_item_background_holo_dark = 0x7f02001a; 330 | public static final int abc_item_background_holo_light = 0x7f02001b; 331 | public static final int abc_list_divider_mtrl_alpha = 0x7f02001c; 332 | public static final int abc_list_focused_holo = 0x7f02001d; 333 | public static final int abc_list_longpressed_holo = 0x7f02001e; 334 | public static final int abc_list_pressed_holo_dark = 0x7f02001f; 335 | public static final int abc_list_pressed_holo_light = 0x7f020020; 336 | public static final int abc_list_selector_background_transition_holo_dark = 0x7f020021; 337 | public static final int abc_list_selector_background_transition_holo_light = 0x7f020022; 338 | public static final int abc_list_selector_disabled_holo_dark = 0x7f020023; 339 | public static final int abc_list_selector_disabled_holo_light = 0x7f020024; 340 | public static final int abc_list_selector_holo_dark = 0x7f020025; 341 | public static final int abc_list_selector_holo_light = 0x7f020026; 342 | public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f020027; 343 | public static final int abc_popup_background_mtrl_mult = 0x7f020028; 344 | public static final int abc_spinner_mtrl_am_alpha = 0x7f020029; 345 | public static final int abc_switch_thumb_material = 0x7f02002a; 346 | public static final int abc_switch_track_mtrl_alpha = 0x7f02002b; 347 | public static final int abc_tab_indicator_material = 0x7f02002c; 348 | public static final int abc_tab_indicator_mtrl_alpha = 0x7f02002d; 349 | public static final int abc_textfield_activated_mtrl_alpha = 0x7f02002e; 350 | public static final int abc_textfield_default_mtrl_alpha = 0x7f02002f; 351 | public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f020030; 352 | public static final int abc_textfield_search_default_mtrl_alpha = 0x7f020031; 353 | public static final int abc_textfield_search_material = 0x7f020032; 354 | } 355 | public static final class id { 356 | public static final int action_bar = 0x7f090042; 357 | public static final int action_bar_activity_content = 0x7f090003; 358 | public static final int action_bar_container = 0x7f090041; 359 | public static final int action_bar_root = 0x7f09003d; 360 | public static final int action_bar_spinner = 0x7f090002; 361 | public static final int action_bar_subtitle = 0x7f090030; 362 | public static final int action_bar_title = 0x7f09002f; 363 | public static final int action_context_bar = 0x7f090043; 364 | public static final int action_menu_divider = 0x7f090005; 365 | public static final int action_menu_presenter = 0x7f090006; 366 | public static final int action_mode_bar = 0x7f09003f; 367 | public static final int action_mode_bar_stub = 0x7f09003e; 368 | public static final int action_mode_close_button = 0x7f090031; 369 | public static final int activity_chooser_view_content = 0x7f090032; 370 | public static final int always = 0x7f090026; 371 | public static final int beginning = 0x7f09002d; 372 | public static final int checkbox = 0x7f09003a; 373 | public static final int collapseActionView = 0x7f090027; 374 | public static final int decor_content_parent = 0x7f090040; 375 | public static final int default_activity_button = 0x7f090035; 376 | public static final int dialog = 0x7f09002b; 377 | public static final int disableHome = 0x7f09001f; 378 | public static final int dropdown = 0x7f09002c; 379 | public static final int edit_query = 0x7f090044; 380 | public static final int end = 0x7f090013; 381 | public static final int expand_activities_button = 0x7f090033; 382 | public static final int expanded_menu = 0x7f090039; 383 | public static final int home = 0x7f090000; 384 | public static final int homeAsUp = 0x7f090020; 385 | public static final int icon = 0x7f090037; 386 | public static final int ifRoom = 0x7f090028; 387 | public static final int image = 0x7f090034; 388 | public static final int listMode = 0x7f09001c; 389 | public static final int list_item = 0x7f090036; 390 | public static final int middle = 0x7f09002e; 391 | public static final int never = 0x7f090029; 392 | public static final int none = 0x7f090021; 393 | public static final int normal = 0x7f09001d; 394 | public static final int progress_circular = 0x7f090007; 395 | public static final int progress_horizontal = 0x7f090008; 396 | public static final int radio = 0x7f09003c; 397 | public static final int search_badge = 0x7f090046; 398 | public static final int search_bar = 0x7f090045; 399 | public static final int search_button = 0x7f090047; 400 | public static final int search_close_btn = 0x7f09004c; 401 | public static final int search_edit_frame = 0x7f090048; 402 | public static final int search_go_btn = 0x7f09004e; 403 | public static final int search_mag_icon = 0x7f090049; 404 | public static final int search_plate = 0x7f09004a; 405 | public static final int search_src_text = 0x7f09004b; 406 | public static final int search_voice_btn = 0x7f09004f; 407 | public static final int shortcut = 0x7f09003b; 408 | public static final int showCustom = 0x7f090022; 409 | public static final int showHome = 0x7f090023; 410 | public static final int showTitle = 0x7f090024; 411 | public static final int split_action_bar = 0x7f090004; 412 | public static final int submit_area = 0x7f09004d; 413 | public static final int tabMode = 0x7f09001e; 414 | public static final int title = 0x7f090038; 415 | public static final int up = 0x7f090001; 416 | public static final int useLogo = 0x7f090025; 417 | public static final int withText = 0x7f09002a; 418 | public static final int wrap_content = 0x7f09001b; 419 | } 420 | public static final class integer { 421 | public static final int abc_max_action_buttons = 0x7f080000; 422 | } 423 | public static final class layout { 424 | public static final int abc_action_bar_title_item = 0x7f030000; 425 | public static final int abc_action_bar_up_container = 0x7f030001; 426 | public static final int abc_action_bar_view_list_nav_layout = 0x7f030002; 427 | public static final int abc_action_menu_item_layout = 0x7f030003; 428 | public static final int abc_action_menu_layout = 0x7f030004; 429 | public static final int abc_action_mode_bar = 0x7f030005; 430 | public static final int abc_action_mode_close_item_material = 0x7f030006; 431 | public static final int abc_activity_chooser_view = 0x7f030007; 432 | public static final int abc_activity_chooser_view_include = 0x7f030008; 433 | public static final int abc_activity_chooser_view_list_item = 0x7f030009; 434 | public static final int abc_expanded_menu_layout = 0x7f03000a; 435 | public static final int abc_list_menu_item_checkbox = 0x7f03000b; 436 | public static final int abc_list_menu_item_icon = 0x7f03000c; 437 | public static final int abc_list_menu_item_layout = 0x7f03000d; 438 | public static final int abc_list_menu_item_radio = 0x7f03000e; 439 | public static final int abc_popup_menu_item_layout = 0x7f03000f; 440 | public static final int abc_screen_content_include = 0x7f030010; 441 | public static final int abc_screen_simple = 0x7f030011; 442 | public static final int abc_screen_simple_overlay_action_mode = 0x7f030012; 443 | public static final int abc_screen_toolbar = 0x7f030013; 444 | public static final int abc_search_dropdown_item_icons_2line = 0x7f030014; 445 | public static final int abc_search_view = 0x7f030015; 446 | public static final int abc_simple_dropdown_hint = 0x7f030016; 447 | public static final int support_simple_spinner_dropdown_item = 0x7f03001a; 448 | } 449 | public static final class string { 450 | public static final int abc_action_bar_home_description = 0x7f0a0001; 451 | public static final int abc_action_bar_home_description_format = 0x7f0a0005; 452 | public static final int abc_action_bar_home_subtitle_description_format = 0x7f0a0006; 453 | public static final int abc_action_bar_up_description = 0x7f0a0002; 454 | public static final int abc_action_menu_overflow_description = 0x7f0a0003; 455 | public static final int abc_action_mode_done = 0x7f0a0000; 456 | public static final int abc_activity_chooser_view_see_all = 0x7f0a000d; 457 | public static final int abc_activitychooserview_choose_application = 0x7f0a000c; 458 | public static final int abc_searchview_description_clear = 0x7f0a0009; 459 | public static final int abc_searchview_description_query = 0x7f0a0008; 460 | public static final int abc_searchview_description_search = 0x7f0a0007; 461 | public static final int abc_searchview_description_submit = 0x7f0a000a; 462 | public static final int abc_searchview_description_voice = 0x7f0a000b; 463 | public static final int abc_shareactionprovider_share_with = 0x7f0a000f; 464 | public static final int abc_shareactionprovider_share_with_application = 0x7f0a000e; 465 | public static final int abc_toolbar_collapse_description = 0x7f0a0004; 466 | } 467 | public static final class style { 468 | public static final int Base_TextAppearance_AppCompat = 0x7f0b0098; 469 | public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0b00a3; 470 | public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0b00a2; 471 | public static final int Base_TextAppearance_AppCompat_Button = 0x7f0b00a6; 472 | public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0b00a4; 473 | public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0b009c; 474 | public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0b009b; 475 | public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0b009a; 476 | public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0b0099; 477 | public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0b009d; 478 | public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0b00a7; 479 | public static final int Base_TextAppearance_AppCompat_Large = 0x7f0b00a8; 480 | public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0b00a9; 481 | public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b0085; 482 | public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b0086; 483 | public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0b00aa; 484 | public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0b00ab; 485 | public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0b00a5; 486 | public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0b0087; 487 | public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b0089; 488 | public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0b0088; 489 | public static final int Base_TextAppearance_AppCompat_Small = 0x7f0b00ac; 490 | public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0b00ad; 491 | public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0b00a0; 492 | public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0b00a1; 493 | public static final int Base_TextAppearance_AppCompat_Title = 0x7f0b009e; 494 | public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0b009f; 495 | public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0070; 496 | public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0072; 497 | public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0074; 498 | public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0071; 499 | public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0073; 500 | public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b006f; 501 | public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b006e; 502 | public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b007b; 503 | public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0083; 504 | public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b0084; 505 | public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0b0097; 506 | public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b007c; 507 | public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0b0092; 508 | public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0b0091; 509 | public static final int Base_ThemeOverlay_AppCompat = 0x7f0b00da; 510 | public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0b00dd; 511 | public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0b00dc; 512 | public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0b00de; 513 | public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0b00db; 514 | public static final int Base_Theme_AppCompat = 0x7f0b00cf; 515 | public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0b00d2; 516 | public static final int Base_Theme_AppCompat_Dialog = 0x7f0b00d4; 517 | public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0b00d8; 518 | public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0b00d6; 519 | public static final int Base_Theme_AppCompat_Light = 0x7f0b00d0; 520 | public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0b00d1; 521 | public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0b00d5; 522 | public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b00d9; 523 | public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0b00d7; 524 | public static final int Base_V11_Theme_AppCompat = 0x7f0b00df; 525 | public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0b00e1; 526 | public static final int Base_V11_Theme_AppCompat_Light = 0x7f0b00e0; 527 | public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0b00e2; 528 | public static final int Base_V14_Theme_AppCompat = 0x7f0b00e3; 529 | public static final int Base_V14_Theme_AppCompat_Dialog = 0x7f0b00e5; 530 | public static final int Base_V14_Theme_AppCompat_Light = 0x7f0b00e4; 531 | public static final int Base_V14_Theme_AppCompat_Light_Dialog = 0x7f0b00e6; 532 | public static final int Base_V21_Theme_AppCompat = 0x7f0b00e7; 533 | public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0b00e9; 534 | public static final int Base_V21_Theme_AppCompat_Light = 0x7f0b00e8; 535 | public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0b00ea; 536 | public static final int Base_V7_Theme_AppCompat = 0x7f0b00cd; 537 | public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0b00d3; 538 | public static final int Base_V7_Theme_AppCompat_Light = 0x7f0b00ce; 539 | public static final int Base_Widget_AppCompat_ActionBar = 0x7f0b005f; 540 | public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0b0061; 541 | public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0b0066; 542 | public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0b006a; 543 | public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0b0068; 544 | public static final int Base_Widget_AppCompat_ActionButton = 0x7f0b0063; 545 | public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0b0064; 546 | public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0b0065; 547 | public static final int Base_Widget_AppCompat_ActionMode = 0x7f0b006d; 548 | public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0b008c; 549 | public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0b008a; 550 | public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0b0096; 551 | public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0b0095; 552 | public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0b0079; 553 | public static final int Base_Widget_AppCompat_EditText = 0x7f0b0094; 554 | public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0b0060; 555 | public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0062; 556 | public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b0067; 557 | public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b006b; 558 | public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b006c; 559 | public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b0069; 560 | public static final int Base_Widget_AppCompat_Light_ActivityChooserView = 0x7f0b008d; 561 | public static final int Base_Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b008b; 562 | public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0b0082; 563 | public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0b0080; 564 | public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0b007e; 565 | public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0b007a; 566 | public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0b007d; 567 | public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0b0081; 568 | public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0b007f; 569 | public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0b008e; 570 | public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0b0076; 571 | public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0075; 572 | public static final int Base_Widget_AppCompat_SearchView = 0x7f0b0093; 573 | public static final int Base_Widget_AppCompat_Spinner = 0x7f0b0077; 574 | public static final int Base_Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b0078; 575 | public static final int Base_Widget_AppCompat_Toolbar = 0x7f0b008f; 576 | public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b0090; 577 | public static final int Platform_AppCompat = 0x7f0b00c9; 578 | public static final int Platform_AppCompat_Dialog = 0x7f0b00cb; 579 | public static final int Platform_AppCompat_Light = 0x7f0b00ca; 580 | public static final int Platform_AppCompat_Light_Dialog = 0x7f0b00cc; 581 | public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0b00b4; 582 | public static final int RtlOverlay_Widget_AppCompat_ActionButton_CloseMode = 0x7f0b00b5; 583 | public static final int RtlOverlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0b00b6; 584 | public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0b00b7; 585 | public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0b00b8; 586 | public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0b00b9; 587 | public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0b00ae; 588 | public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0b00af; 589 | public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0b00b1; 590 | public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0b00b2; 591 | public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0b00b0; 592 | public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0b00b3; 593 | public static final int TextAppearance_AppCompat = 0x7f0b0038; 594 | public static final int TextAppearance_AppCompat_Body1 = 0x7f0b0043; 595 | public static final int TextAppearance_AppCompat_Body2 = 0x7f0b0042; 596 | public static final int TextAppearance_AppCompat_Button = 0x7f0b004d; 597 | public static final int TextAppearance_AppCompat_Caption = 0x7f0b0044; 598 | public static final int TextAppearance_AppCompat_Display1 = 0x7f0b003c; 599 | public static final int TextAppearance_AppCompat_Display2 = 0x7f0b003b; 600 | public static final int TextAppearance_AppCompat_Display3 = 0x7f0b003a; 601 | public static final int TextAppearance_AppCompat_Display4 = 0x7f0b0039; 602 | public static final int TextAppearance_AppCompat_Headline = 0x7f0b003d; 603 | public static final int TextAppearance_AppCompat_Inverse = 0x7f0b0046; 604 | public static final int TextAppearance_AppCompat_Large = 0x7f0b0047; 605 | public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0b0048; 606 | public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0b0053; 607 | public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0b0052; 608 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0b0029; 609 | public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0b002a; 610 | public static final int TextAppearance_AppCompat_Medium = 0x7f0b0049; 611 | public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0b004a; 612 | public static final int TextAppearance_AppCompat_Menu = 0x7f0b0045; 613 | public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0b002c; 614 | public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0b002b; 615 | public static final int TextAppearance_AppCompat_Small = 0x7f0b004b; 616 | public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0b004c; 617 | public static final int TextAppearance_AppCompat_Subhead = 0x7f0b0040; 618 | public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0b0041; 619 | public static final int TextAppearance_AppCompat_Title = 0x7f0b003e; 620 | public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0b003f; 621 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0b0015; 622 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0b0005; 623 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0b0007; 624 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0b0004; 625 | public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0b0006; 626 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0b0018; 627 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0b0056; 628 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0b0017; 629 | public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0b0055; 630 | public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0b0019; 631 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0b0027; 632 | public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0b0028; 633 | public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0b004e; 634 | public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0b001f; 635 | public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0b0037; 636 | public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0b0036; 637 | public static final int ThemeOverlay_AppCompat = 0x7f0b00c4; 638 | public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0b00c7; 639 | public static final int ThemeOverlay_AppCompat_Dark = 0x7f0b00c6; 640 | public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0b00c8; 641 | public static final int ThemeOverlay_AppCompat_Light = 0x7f0b00c5; 642 | public static final int Theme_AppCompat = 0x7f0b00ba; 643 | public static final int Theme_AppCompat_CompactMenu = 0x7f0b00c3; 644 | public static final int Theme_AppCompat_Dialog = 0x7f0b00c1; 645 | public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0b00bf; 646 | public static final int Theme_AppCompat_Light = 0x7f0b00bb; 647 | public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0b00bc; 648 | public static final int Theme_AppCompat_Light_Dialog = 0x7f0b00c2; 649 | public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0b00c0; 650 | public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0b00be; 651 | public static final int Theme_AppCompat_NoActionBar = 0x7f0b00bd; 652 | public static final int Widget_AppCompat_ActionBar = 0x7f0b0000; 653 | public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0b0002; 654 | public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0b000d; 655 | public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0b0011; 656 | public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0b000f; 657 | public static final int Widget_AppCompat_ActionButton = 0x7f0b000a; 658 | public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0b000b; 659 | public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0b000c; 660 | public static final int Widget_AppCompat_ActionMode = 0x7f0b0016; 661 | public static final int Widget_AppCompat_ActivityChooserView = 0x7f0b002f; 662 | public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0b002d; 663 | public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0b0033; 664 | public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0b0012; 665 | public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0b001d; 666 | public static final int Widget_AppCompat_EditText = 0x7f0b0032; 667 | public static final int Widget_AppCompat_Light_ActionBar = 0x7f0b0001; 668 | public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0b0003; 669 | public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0b004f; 670 | public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0b000e; 671 | public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0b0050; 672 | public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0b0013; 673 | public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0b0014; 674 | public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0b0010; 675 | public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0b0051; 676 | public static final int Widget_AppCompat_Light_ActionButton = 0x7f0b0059; 677 | public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0b005b; 678 | public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0b005a; 679 | public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0b0054; 680 | public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0b0030; 681 | public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0b002e; 682 | public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0b0057; 683 | public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0b005e; 684 | public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0b005d; 685 | public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0b0024; 686 | public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0b0022; 687 | public static final int Widget_AppCompat_Light_SearchView = 0x7f0b0058; 688 | public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0b005c; 689 | public static final int Widget_AppCompat_ListPopupWindow = 0x7f0b0020; 690 | public static final int Widget_AppCompat_ListView_DropDown = 0x7f0b001e; 691 | public static final int Widget_AppCompat_ListView_Menu = 0x7f0b0025; 692 | public static final int Widget_AppCompat_PopupMenu = 0x7f0b0023; 693 | public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0b0021; 694 | public static final int Widget_AppCompat_PopupWindow = 0x7f0b0026; 695 | public static final int Widget_AppCompat_ProgressBar = 0x7f0b0009; 696 | public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0b0008; 697 | public static final int Widget_AppCompat_SearchView = 0x7f0b0031; 698 | public static final int Widget_AppCompat_Spinner = 0x7f0b001a; 699 | public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0b001b; 700 | public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0b001c; 701 | public static final int Widget_AppCompat_Toolbar = 0x7f0b0034; 702 | public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0b0035; 703 | } 704 | public static final class styleable { 705 | public static final int[] ActionBar = { 0x7f01000e, 0x7f01000f, 0x7f01003a, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a }; 706 | public static final int[] ActionBarLayout = { 0x010100b3 }; 707 | public static final int ActionBarLayout_android_layout_gravity = 0; 708 | public static final int ActionBar_background = 11; 709 | public static final int ActionBar_backgroundSplit = 13; 710 | public static final int ActionBar_backgroundStacked = 12; 711 | public static final int ActionBar_contentInsetEnd = 22; 712 | public static final int ActionBar_contentInsetLeft = 23; 713 | public static final int ActionBar_contentInsetRight = 24; 714 | public static final int ActionBar_contentInsetStart = 21; 715 | public static final int ActionBar_customNavigationLayout = 14; 716 | public static final int ActionBar_displayOptions = 4; 717 | public static final int ActionBar_divider = 10; 718 | public static final int ActionBar_elevation = 25; 719 | public static final int ActionBar_height = 1; 720 | public static final int ActionBar_hideOnContentScroll = 20; 721 | public static final int ActionBar_homeAsUpIndicator = 2; 722 | public static final int ActionBar_homeLayout = 15; 723 | public static final int ActionBar_icon = 8; 724 | public static final int ActionBar_indeterminateProgressStyle = 17; 725 | public static final int ActionBar_itemPadding = 19; 726 | public static final int ActionBar_logo = 9; 727 | public static final int ActionBar_navigationMode = 3; 728 | public static final int ActionBar_popupTheme = 26; 729 | public static final int ActionBar_progressBarPadding = 18; 730 | public static final int ActionBar_progressBarStyle = 16; 731 | public static final int ActionBar_subtitle = 5; 732 | public static final int ActionBar_subtitleTextStyle = 7; 733 | public static final int ActionBar_title = 0; 734 | public static final int ActionBar_titleTextStyle = 6; 735 | public static final int[] ActionMenuItemView = { 0x0101013f }; 736 | public static final int ActionMenuItemView_android_minWidth = 0; 737 | public static final int[] ActionMenuView = { }; 738 | public static final int[] ActionMode = { 0x7f01000f, 0x7f010066, 0x7f010067, 0x7f01006b, 0x7f01006d, 0x7f01007b }; 739 | public static final int ActionMode_background = 3; 740 | public static final int ActionMode_backgroundSplit = 4; 741 | public static final int ActionMode_closeItemLayout = 5; 742 | public static final int ActionMode_height = 0; 743 | public static final int ActionMode_subtitleTextStyle = 2; 744 | public static final int ActionMode_titleTextStyle = 1; 745 | public static final int[] ActivityChooserView = { 0x7f010092, 0x7f010093 }; 746 | public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; 747 | public static final int ActivityChooserView_initialActivityCount = 0; 748 | public static final int[] CompatTextView = { 0x7f010094 }; 749 | public static final int CompatTextView_textAllCaps = 0; 750 | public static final int[] DrawerArrowToggle = { 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae }; 751 | public static final int DrawerArrowToggle_barSize = 6; 752 | public static final int DrawerArrowToggle_color = 0; 753 | public static final int DrawerArrowToggle_drawableSize = 2; 754 | public static final int DrawerArrowToggle_gapBetweenBars = 3; 755 | public static final int DrawerArrowToggle_middleBarArrowSize = 5; 756 | public static final int DrawerArrowToggle_spinBars = 1; 757 | public static final int DrawerArrowToggle_thickness = 7; 758 | public static final int DrawerArrowToggle_topBottomBarArrowSize = 4; 759 | public static final int[] LinearLayoutCompat = { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01006a, 0x7f010095, 0x7f010096, 0x7f010097 }; 760 | public static final int[] LinearLayoutCompat_Layout = { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }; 761 | public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; 762 | public static final int LinearLayoutCompat_Layout_android_layout_height = 2; 763 | public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; 764 | public static final int LinearLayoutCompat_Layout_android_layout_width = 1; 765 | public static final int LinearLayoutCompat_android_baselineAligned = 2; 766 | public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; 767 | public static final int LinearLayoutCompat_android_gravity = 0; 768 | public static final int LinearLayoutCompat_android_orientation = 1; 769 | public static final int LinearLayoutCompat_android_weightSum = 4; 770 | public static final int LinearLayoutCompat_divider = 5; 771 | public static final int LinearLayoutCompat_dividerPadding = 8; 772 | public static final int LinearLayoutCompat_measureWithLargestChild = 6; 773 | public static final int LinearLayoutCompat_showDividers = 7; 774 | public static final int[] ListPopupWindow = { 0x010102ac, 0x010102ad }; 775 | public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; 776 | public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; 777 | public static final int[] MenuGroup = { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }; 778 | public static final int MenuGroup_android_checkableBehavior = 5; 779 | public static final int MenuGroup_android_enabled = 0; 780 | public static final int MenuGroup_android_id = 1; 781 | public static final int MenuGroup_android_menuCategory = 3; 782 | public static final int MenuGroup_android_orderInCategory = 4; 783 | public static final int MenuGroup_android_visible = 2; 784 | public static final int[] MenuItem = { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082 }; 785 | public static final int MenuItem_actionLayout = 14; 786 | public static final int MenuItem_actionProviderClass = 16; 787 | public static final int MenuItem_actionViewClass = 15; 788 | public static final int MenuItem_android_alphabeticShortcut = 9; 789 | public static final int MenuItem_android_checkable = 11; 790 | public static final int MenuItem_android_checked = 3; 791 | public static final int MenuItem_android_enabled = 1; 792 | public static final int MenuItem_android_icon = 0; 793 | public static final int MenuItem_android_id = 2; 794 | public static final int MenuItem_android_menuCategory = 5; 795 | public static final int MenuItem_android_numericShortcut = 10; 796 | public static final int MenuItem_android_onClick = 12; 797 | public static final int MenuItem_android_orderInCategory = 6; 798 | public static final int MenuItem_android_title = 7; 799 | public static final int MenuItem_android_titleCondensed = 8; 800 | public static final int MenuItem_android_visible = 4; 801 | public static final int MenuItem_showAsAction = 13; 802 | public static final int[] MenuView = { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01007e }; 803 | public static final int MenuView_android_headerBackground = 4; 804 | public static final int MenuView_android_horizontalDivider = 2; 805 | public static final int MenuView_android_itemBackground = 5; 806 | public static final int MenuView_android_itemIconDisabledAlpha = 6; 807 | public static final int MenuView_android_itemTextAppearance = 1; 808 | public static final int MenuView_android_verticalDivider = 3; 809 | public static final int MenuView_android_windowAnimationStyle = 0; 810 | public static final int MenuView_preserveIconSpacing = 7; 811 | public static final int[] PopupWindow = { 0x01010176, 0x7f0100a6 }; 812 | public static final int[] PopupWindowBackgroundState = { 0x7f0100a5 }; 813 | public static final int PopupWindowBackgroundState_state_above_anchor = 0; 814 | public static final int PopupWindow_android_popupBackground = 0; 815 | public static final int PopupWindow_overlapAnchor = 1; 816 | public static final int[] SearchView = { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091 }; 817 | public static final int SearchView_android_focusable = 0; 818 | public static final int SearchView_android_imeOptions = 3; 819 | public static final int SearchView_android_inputType = 2; 820 | public static final int SearchView_android_maxWidth = 1; 821 | public static final int SearchView_closeIcon = 7; 822 | public static final int SearchView_commitIcon = 11; 823 | public static final int SearchView_goIcon = 8; 824 | public static final int SearchView_iconifiedByDefault = 5; 825 | public static final int SearchView_layout = 4; 826 | public static final int SearchView_queryBackground = 13; 827 | public static final int SearchView_queryHint = 6; 828 | public static final int SearchView_searchIcon = 9; 829 | public static final int SearchView_submitBackground = 14; 830 | public static final int SearchView_suggestionRowLayout = 12; 831 | public static final int SearchView_voiceIcon = 10; 832 | public static final int[] Spinner = { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086 }; 833 | public static final int Spinner_android_background = 1; 834 | public static final int Spinner_android_dropDownHorizontalOffset = 5; 835 | public static final int Spinner_android_dropDownSelector = 2; 836 | public static final int Spinner_android_dropDownVerticalOffset = 6; 837 | public static final int Spinner_android_dropDownWidth = 4; 838 | public static final int Spinner_android_gravity = 0; 839 | public static final int Spinner_android_popupBackground = 3; 840 | public static final int Spinner_disableChildrenWhenDisabled = 10; 841 | public static final int Spinner_popupPromptView = 9; 842 | public static final int Spinner_prompt = 7; 843 | public static final int Spinner_spinnerMode = 8; 844 | public static final int[] SwitchCompat = { 0x01010124, 0x01010125, 0x01010142, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6 }; 845 | public static final int SwitchCompat_android_textOff = 1; 846 | public static final int SwitchCompat_android_textOn = 0; 847 | public static final int SwitchCompat_android_thumb = 2; 848 | public static final int SwitchCompat_showText = 9; 849 | public static final int SwitchCompat_splitTrack = 8; 850 | public static final int SwitchCompat_switchMinWidth = 6; 851 | public static final int SwitchCompat_switchPadding = 7; 852 | public static final int SwitchCompat_switchTextAppearance = 5; 853 | public static final int SwitchCompat_thumbTextPadding = 4; 854 | public static final int SwitchCompat_track = 3; 855 | public static final int[] Theme = { 0x01010057, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062 }; 856 | public static final int Theme_actionBarDivider = 19; 857 | public static final int Theme_actionBarItemBackground = 20; 858 | public static final int Theme_actionBarPopupTheme = 13; 859 | public static final int Theme_actionBarSize = 18; 860 | public static final int Theme_actionBarSplitStyle = 15; 861 | public static final int Theme_actionBarStyle = 14; 862 | public static final int Theme_actionBarTabBarStyle = 9; 863 | public static final int Theme_actionBarTabStyle = 8; 864 | public static final int Theme_actionBarTabTextStyle = 10; 865 | public static final int Theme_actionBarTheme = 16; 866 | public static final int Theme_actionBarWidgetTheme = 17; 867 | public static final int Theme_actionButtonStyle = 43; 868 | public static final int Theme_actionDropDownStyle = 38; 869 | public static final int Theme_actionMenuTextAppearance = 21; 870 | public static final int Theme_actionMenuTextColor = 22; 871 | public static final int Theme_actionModeBackground = 25; 872 | public static final int Theme_actionModeCloseButtonStyle = 24; 873 | public static final int Theme_actionModeCloseDrawable = 27; 874 | public static final int Theme_actionModeCopyDrawable = 29; 875 | public static final int Theme_actionModeCutDrawable = 28; 876 | public static final int Theme_actionModeFindDrawable = 33; 877 | public static final int Theme_actionModePasteDrawable = 30; 878 | public static final int Theme_actionModePopupWindowStyle = 35; 879 | public static final int Theme_actionModeSelectAllDrawable = 31; 880 | public static final int Theme_actionModeShareDrawable = 32; 881 | public static final int Theme_actionModeSplitBackground = 26; 882 | public static final int Theme_actionModeStyle = 23; 883 | public static final int Theme_actionModeWebSearchDrawable = 34; 884 | public static final int Theme_actionOverflowButtonStyle = 11; 885 | public static final int Theme_actionOverflowMenuStyle = 12; 886 | public static final int Theme_activityChooserViewStyle = 50; 887 | public static final int Theme_android_windowIsFloating = 0; 888 | public static final int Theme_buttonBarButtonStyle = 45; 889 | public static final int Theme_buttonBarStyle = 44; 890 | public static final int Theme_colorAccent = 77; 891 | public static final int Theme_colorButtonNormal = 81; 892 | public static final int Theme_colorControlActivated = 79; 893 | public static final int Theme_colorControlHighlight = 80; 894 | public static final int Theme_colorControlNormal = 78; 895 | public static final int Theme_colorPrimary = 75; 896 | public static final int Theme_colorPrimaryDark = 76; 897 | public static final int Theme_colorSwitchThumbNormal = 82; 898 | public static final int Theme_dividerHorizontal = 49; 899 | public static final int Theme_dividerVertical = 48; 900 | public static final int Theme_dropDownListViewStyle = 67; 901 | public static final int Theme_dropdownListPreferredItemHeight = 39; 902 | public static final int Theme_editTextBackground = 56; 903 | public static final int Theme_editTextColor = 55; 904 | public static final int Theme_homeAsUpIndicator = 42; 905 | public static final int Theme_listChoiceBackgroundIndicator = 74; 906 | public static final int Theme_listPopupWindowStyle = 68; 907 | public static final int Theme_listPreferredItemHeight = 62; 908 | public static final int Theme_listPreferredItemHeightLarge = 64; 909 | public static final int Theme_listPreferredItemHeightSmall = 63; 910 | public static final int Theme_listPreferredItemPaddingLeft = 65; 911 | public static final int Theme_listPreferredItemPaddingRight = 66; 912 | public static final int Theme_panelBackground = 71; 913 | public static final int Theme_panelMenuListTheme = 73; 914 | public static final int Theme_panelMenuListWidth = 72; 915 | public static final int Theme_popupMenuStyle = 53; 916 | public static final int Theme_popupWindowStyle = 54; 917 | public static final int Theme_searchViewStyle = 61; 918 | public static final int Theme_selectableItemBackground = 46; 919 | public static final int Theme_selectableItemBackgroundBorderless = 47; 920 | public static final int Theme_spinnerDropDownItemStyle = 41; 921 | public static final int Theme_spinnerStyle = 40; 922 | public static final int Theme_switchStyle = 57; 923 | public static final int Theme_textAppearanceLargePopupMenu = 36; 924 | public static final int Theme_textAppearanceListItem = 69; 925 | public static final int Theme_textAppearanceListItemSmall = 70; 926 | public static final int Theme_textAppearanceSearchResultSubtitle = 59; 927 | public static final int Theme_textAppearanceSearchResultTitle = 58; 928 | public static final int Theme_textAppearanceSmallPopupMenu = 37; 929 | public static final int Theme_textColorSearchUrl = 60; 930 | public static final int Theme_toolbarNavigationButtonStyle = 52; 931 | public static final int Theme_toolbarStyle = 51; 932 | public static final int Theme_windowActionBar = 1; 933 | public static final int Theme_windowActionBarOverlay = 2; 934 | public static final int Theme_windowActionModeOverlay = 3; 935 | public static final int Theme_windowFixedHeightMajor = 7; 936 | public static final int Theme_windowFixedHeightMinor = 5; 937 | public static final int Theme_windowFixedWidthMajor = 4; 938 | public static final int Theme_windowFixedWidthMinor = 6; 939 | public static final int[] Toolbar = { 0x010100af, 0x01010140, 0x7f01000e, 0x7f010065, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f01007a, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4 }; 940 | public static final int Toolbar_android_gravity = 0; 941 | public static final int Toolbar_android_minHeight = 1; 942 | public static final int Toolbar_collapseContentDescription = 19; 943 | public static final int Toolbar_collapseIcon = 18; 944 | public static final int Toolbar_contentInsetEnd = 5; 945 | public static final int Toolbar_contentInsetLeft = 6; 946 | public static final int Toolbar_contentInsetRight = 7; 947 | public static final int Toolbar_contentInsetStart = 4; 948 | public static final int Toolbar_maxButtonHeight = 16; 949 | public static final int Toolbar_navigationContentDescription = 21; 950 | public static final int Toolbar_navigationIcon = 20; 951 | public static final int Toolbar_popupTheme = 8; 952 | public static final int Toolbar_subtitle = 3; 953 | public static final int Toolbar_subtitleTextAppearance = 10; 954 | public static final int Toolbar_theme = 17; 955 | public static final int Toolbar_title = 2; 956 | public static final int Toolbar_titleMarginBottom = 15; 957 | public static final int Toolbar_titleMarginEnd = 13; 958 | public static final int Toolbar_titleMarginStart = 12; 959 | public static final int Toolbar_titleMarginTop = 14; 960 | public static final int Toolbar_titleMargins = 11; 961 | public static final int Toolbar_titleTextAppearance = 9; 962 | public static final int[] View = { 0x010100da, 0x7f01007c, 0x7f01007d }; 963 | public static final int[] ViewStubCompat = { 0x010100d0, 0x010100f2, 0x010100f3 }; 964 | public static final int ViewStubCompat_android_id = 0; 965 | public static final int ViewStubCompat_android_inflatedId = 2; 966 | public static final int ViewStubCompat_android_layout = 1; 967 | public static final int View_android_focusable = 0; 968 | public static final int View_paddingEnd = 2; 969 | public static final int View_paddingStart = 1; 970 | } 971 | } 972 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/gen/android/support/v7/gridlayout/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.gridlayout; 8 | 9 | public final class R { 10 | public static final class attr { 11 | public static final int alignmentMode = 0x7f010004; 12 | public static final int columnCount = 0x7f010002; 13 | public static final int columnOrderPreserved = 0x7f010006; 14 | public static final int layout_column = 0x7f01000a; 15 | public static final int layout_columnSpan = 0x7f01000b; 16 | public static final int layout_columnWeight = 0x7f01000c; 17 | public static final int layout_gravity = 0x7f01000d; 18 | public static final int layout_row = 0x7f010007; 19 | public static final int layout_rowSpan = 0x7f010008; 20 | public static final int layout_rowWeight = 0x7f010009; 21 | public static final int orientation = 0x7f010000; 22 | public static final int rowCount = 0x7f010001; 23 | public static final int rowOrderPreserved = 0x7f010005; 24 | public static final int useDefaultMargins = 0x7f010003; 25 | } 26 | public static final class dimen { 27 | public static final int default_gap = 0x7f050000; 28 | } 29 | public static final class id { 30 | public static final int alignBounds = 0x7f09000b; 31 | public static final int alignMargins = 0x7f09000c; 32 | public static final int bottom = 0x7f09000d; 33 | public static final int center = 0x7f09000e; 34 | public static final int center_horizontal = 0x7f09000f; 35 | public static final int center_vertical = 0x7f090010; 36 | public static final int clip_horizontal = 0x7f090011; 37 | public static final int clip_vertical = 0x7f090012; 38 | public static final int end = 0x7f090013; 39 | public static final int fill = 0x7f090014; 40 | public static final int fill_horizontal = 0x7f090015; 41 | public static final int fill_vertical = 0x7f090016; 42 | public static final int horizontal = 0x7f090009; 43 | public static final int left = 0x7f090017; 44 | public static final int right = 0x7f090018; 45 | public static final int start = 0x7f090019; 46 | public static final int top = 0x7f09001a; 47 | public static final int vertical = 0x7f09000a; 48 | } 49 | public static final class styleable { 50 | public static final int[] GridLayout = { 0x7f010000, 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006 }; 51 | public static final int[] GridLayout_Layout = { 0x010100f4, 0x010100f5, 0x010100f6, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d }; 52 | public static final int GridLayout_Layout_android_layout_height = 1; 53 | public static final int GridLayout_Layout_android_layout_margin = 2; 54 | public static final int GridLayout_Layout_android_layout_marginBottom = 6; 55 | public static final int GridLayout_Layout_android_layout_marginLeft = 3; 56 | public static final int GridLayout_Layout_android_layout_marginRight = 5; 57 | public static final int GridLayout_Layout_android_layout_marginTop = 4; 58 | public static final int GridLayout_Layout_android_layout_width = 0; 59 | public static final int GridLayout_Layout_layout_column = 10; 60 | public static final int GridLayout_Layout_layout_columnSpan = 11; 61 | public static final int GridLayout_Layout_layout_columnWeight = 12; 62 | public static final int GridLayout_Layout_layout_gravity = 13; 63 | public static final int GridLayout_Layout_layout_row = 7; 64 | public static final int GridLayout_Layout_layout_rowSpan = 8; 65 | public static final int GridLayout_Layout_layout_rowWeight = 9; 66 | public static final int GridLayout_alignmentMode = 4; 67 | public static final int GridLayout_columnCount = 2; 68 | public static final int GridLayout_columnOrderPreserved = 6; 69 | public static final int GridLayout_orientation = 0; 70 | public static final int GridLayout_rowCount = 1; 71 | public static final int GridLayout_rowOrderPreserved = 5; 72 | public static final int GridLayout_useDefaultMargins = 3; 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/gen/com/ahmaadssb/androidwebservices/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.ahmaadssb.androidwebservices; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Android Project/Android Web Services/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/ic_launcher-web.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Android Project/Android Web Services/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 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/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-21 15 | android.library.reference.1=../appcompat_v7 16 | android.library.reference.2=../gridlayout_v7 17 | -------------------------------------------------------------------------------- /Android Project/Android Web Services/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmadssb/Android-PHP-MySQL-JSON-Tutorial/faa749eeb01f788d766d66649dbc740f67c66925/Android Project/Android Web Services/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Project/Android Web Services/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 24 | 25 | 32 | 33 | 40 | 41 | 42 | 43 | 44 | 51 | 52 | 60 | 61 | 65 | 66 |