├── Client.apk ├── Client ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── Client.apk │ ├── 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 │ │ └── com │ │ │ └── example │ │ │ └── client │ │ │ ├── BuildConfig.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity$ClientAsyncTask.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 │ ├── dexedLibs │ │ ├── android-support-v4-0131180b4fa77264a63c4f561b6509c8.jar │ │ ├── android-support-v7-appcompat-542251fa48d244d9965069beee8f8ead.jar │ │ └── appcompat_v7-1ede82d65729435f0623f5ff38b07c3b.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── com │ │ └── example │ │ └── client │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── 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 │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── client │ └── MainActivity.java ├── LICENSE ├── README.md ├── Server.apk └── Server ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin ├── AndroidManifest.xml ├── R.txt ├── Server.apk ├── classes.dex ├── classes │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ └── com │ │ └── example │ │ └── server │ │ ├── BuildConfig.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity$2.class │ │ ├── MainActivity$ServerAsyncTask.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 ├── dexedLibs │ ├── android-support-v4-0131180b4fa77264a63c4f561b6509c8.jar │ ├── android-support-v7-appcompat-542251fa48d244d9965069beee8f8ead.jar │ └── appcompat_v7-1ede82d65729435f0623f5ff38b07c3b.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png └── resources.ap_ ├── gen ├── android │ └── support │ │ └── v7 │ │ └── appcompat │ │ └── R.java └── com │ └── example │ └── server │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── 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 ├── menu │ └── main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── example └── server └── MainActivity.java /Client.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client.apk -------------------------------------------------------------------------------- /Client/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Client/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Client 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 | -------------------------------------------------------------------------------- /Client/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Client/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Client/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 21 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Client/bin/Client.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/Client.apk -------------------------------------------------------------------------------- /Client/bin/R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f040000 2 | int anim abc_fade_out 0x7f040001 3 | int anim abc_grow_fade_in_from_bottom 0x7f040002 4 | int anim abc_popup_enter 0x7f040003 5 | int anim abc_popup_exit 0x7f040004 6 | int anim abc_shrink_fade_out_from_bottom 0x7f040005 7 | int anim abc_slide_in_bottom 0x7f040006 8 | int anim abc_slide_in_top 0x7f040007 9 | int anim abc_slide_out_bottom 0x7f040008 10 | int anim abc_slide_out_top 0x7f040009 11 | int attr actionBarDivider 0x7f010018 12 | int attr actionBarItemBackground 0x7f010019 13 | int attr actionBarPopupTheme 0x7f010012 14 | int attr actionBarSize 0x7f010017 15 | int attr actionBarSplitStyle 0x7f010014 16 | int attr actionBarStyle 0x7f010013 17 | int attr actionBarTabBarStyle 0x7f01000e 18 | int attr actionBarTabStyle 0x7f01000d 19 | int attr actionBarTabTextStyle 0x7f01000f 20 | int attr actionBarTheme 0x7f010015 21 | int attr actionBarWidgetTheme 0x7f010016 22 | int attr actionButtonStyle 0x7f010032 23 | int attr actionDropDownStyle 0x7f01002e 24 | int attr actionLayout 0x7f01008b 25 | int attr actionMenuTextAppearance 0x7f01001a 26 | int attr actionMenuTextColor 0x7f01001b 27 | int attr actionModeBackground 0x7f01001e 28 | int attr actionModeCloseButtonStyle 0x7f01001d 29 | int attr actionModeCloseDrawable 0x7f010020 30 | int attr actionModeCopyDrawable 0x7f010022 31 | int attr actionModeCutDrawable 0x7f010021 32 | int attr actionModeFindDrawable 0x7f010026 33 | int attr actionModePasteDrawable 0x7f010023 34 | int attr actionModePopupWindowStyle 0x7f010028 35 | int attr actionModeSelectAllDrawable 0x7f010024 36 | int attr actionModeShareDrawable 0x7f010025 37 | int attr actionModeSplitBackground 0x7f01001f 38 | int attr actionModeStyle 0x7f01001c 39 | int attr actionModeWebSearchDrawable 0x7f010027 40 | int attr actionOverflowButtonStyle 0x7f010010 41 | int attr actionOverflowMenuStyle 0x7f010011 42 | int attr actionProviderClass 0x7f01008d 43 | int attr actionViewClass 0x7f01008c 44 | int attr activityChooserViewStyle 0x7f010039 45 | int attr alertDialogButtonGroupStyle 0x7f01005a 46 | int attr alertDialogCenterButtons 0x7f01005b 47 | int attr alertDialogStyle 0x7f010059 48 | int attr alertDialogTheme 0x7f01005c 49 | int attr autoCompleteTextViewStyle 0x7f010061 50 | int attr background 0x7f010073 51 | int attr backgroundSplit 0x7f010075 52 | int attr backgroundStacked 0x7f010074 53 | int attr backgroundTint 0x7f010087 54 | int attr backgroundTintMode 0x7f010088 55 | int attr barSize 0x7f0100b8 56 | int attr buttonBarButtonStyle 0x7f010034 57 | int attr buttonBarNegativeButtonStyle 0x7f01005f 58 | int attr buttonBarNeutralButtonStyle 0x7f010060 59 | int attr buttonBarPositiveButtonStyle 0x7f01005e 60 | int attr buttonBarStyle 0x7f010033 61 | int attr buttonPanelSideLayout 0x7f0100c2 62 | int attr buttonStyle 0x7f010062 63 | int attr buttonStyleSmall 0x7f010063 64 | int attr checkboxStyle 0x7f010064 65 | int attr checkedTextViewStyle 0x7f010065 66 | int attr closeIcon 0x7f010095 67 | int attr closeItemLayout 0x7f010083 68 | int attr collapseContentDescription 0x7f0100ad 69 | int attr collapseIcon 0x7f0100ac 70 | int attr color 0x7f0100b2 71 | int attr colorAccent 0x7f010053 72 | int attr colorButtonNormal 0x7f010057 73 | int attr colorControlActivated 0x7f010055 74 | int attr colorControlHighlight 0x7f010056 75 | int attr colorControlNormal 0x7f010054 76 | int attr colorPrimary 0x7f010051 77 | int attr colorPrimaryDark 0x7f010052 78 | int attr colorSwitchThumbNormal 0x7f010058 79 | int attr commitIcon 0x7f01009a 80 | int attr contentInsetEnd 0x7f01007e 81 | int attr contentInsetLeft 0x7f01007f 82 | int attr contentInsetRight 0x7f010080 83 | int attr contentInsetStart 0x7f01007d 84 | int attr customNavigationLayout 0x7f010076 85 | int attr dialogPreferredPadding 0x7f01002c 86 | int attr dialogTheme 0x7f01002b 87 | int attr disableChildrenWhenDisabled 0x7f010091 88 | int attr displayOptions 0x7f01006c 89 | int attr divider 0x7f010072 90 | int attr dividerHorizontal 0x7f010038 91 | int attr dividerPadding 0x7f0100a3 92 | int attr dividerVertical 0x7f010037 93 | int attr drawableSize 0x7f0100b4 94 | int attr drawerArrowStyle 0x7f0100ba 95 | int attr dropDownListViewStyle 0x7f010049 96 | int attr dropdownListPreferredItemHeight 0x7f01002f 97 | int attr editTextBackground 0x7f01003f 98 | int attr editTextColor 0x7f01003e 99 | int attr editTextStyle 0x7f010066 100 | int attr elevation 0x7f010081 101 | int attr expandActivityOverflowButtonDrawable 0x7f01009f 102 | int attr gapBetweenBars 0x7f0100b5 103 | int attr goIcon 0x7f010096 104 | int attr height 0x7f010001 105 | int attr hideOnContentScroll 0x7f01007c 106 | int attr homeAsUpIndicator 0x7f010031 107 | int attr homeLayout 0x7f010077 108 | int attr icon 0x7f010070 109 | int attr iconifiedByDefault 0x7f010093 110 | int attr indeterminateProgressStyle 0x7f010079 111 | int attr initialActivityCount 0x7f01009e 112 | int attr isLightTheme 0x7f010002 113 | int attr itemPadding 0x7f01007b 114 | int attr layout 0x7f010092 115 | int attr listChoiceBackgroundIndicator 0x7f010050 116 | int attr listDividerAlertDialog 0x7f01002d 117 | int attr listItemLayout 0x7f0100c6 118 | int attr listLayout 0x7f0100c3 119 | int attr listPopupWindowStyle 0x7f01004a 120 | int attr listPreferredItemHeight 0x7f010044 121 | int attr listPreferredItemHeightLarge 0x7f010046 122 | int attr listPreferredItemHeightSmall 0x7f010045 123 | int attr listPreferredItemPaddingLeft 0x7f010047 124 | int attr listPreferredItemPaddingRight 0x7f010048 125 | int attr logo 0x7f010071 126 | int attr maxButtonHeight 0x7f0100ab 127 | int attr measureWithLargestChild 0x7f0100a1 128 | int attr middleBarArrowSize 0x7f0100b7 129 | int attr multiChoiceItemLayout 0x7f0100c4 130 | int attr navigationContentDescription 0x7f0100af 131 | int attr navigationIcon 0x7f0100ae 132 | int attr navigationMode 0x7f01006b 133 | int attr overlapAnchor 0x7f0100b1 134 | int attr paddingEnd 0x7f010085 135 | int attr paddingStart 0x7f010084 136 | int attr panelBackground 0x7f01004d 137 | int attr panelMenuListTheme 0x7f01004f 138 | int attr panelMenuListWidth 0x7f01004e 139 | int attr popupMenuStyle 0x7f01003c 140 | int attr popupPromptView 0x7f010090 141 | int attr popupTheme 0x7f010082 142 | int attr popupWindowStyle 0x7f01003d 143 | int attr preserveIconSpacing 0x7f010089 144 | int attr progressBarPadding 0x7f01007a 145 | int attr progressBarStyle 0x7f010078 146 | int attr prompt 0x7f01008e 147 | int attr queryBackground 0x7f01009c 148 | int attr queryHint 0x7f010094 149 | int attr radioButtonStyle 0x7f010067 150 | int attr ratingBarStyle 0x7f010068 151 | int attr searchHintIcon 0x7f010098 152 | int attr searchIcon 0x7f010097 153 | int attr searchViewStyle 0x7f010043 154 | int attr selectableItemBackground 0x7f010035 155 | int attr selectableItemBackgroundBorderless 0x7f010036 156 | int attr showAsAction 0x7f01008a 157 | int attr showDividers 0x7f0100a2 158 | int attr showText 0x7f0100c1 159 | int attr singleChoiceItemLayout 0x7f0100c5 160 | int attr spinBars 0x7f0100b3 161 | int attr spinnerDropDownItemStyle 0x7f010030 162 | int attr spinnerMode 0x7f01008f 163 | int attr spinnerStyle 0x7f010069 164 | int attr splitTrack 0x7f0100c0 165 | int attr state_above_anchor 0x7f0100b0 166 | int attr submitBackground 0x7f01009d 167 | int attr subtitle 0x7f01006d 168 | int attr subtitleTextAppearance 0x7f0100a5 169 | int attr subtitleTextStyle 0x7f01006f 170 | int attr suggestionRowLayout 0x7f01009b 171 | int attr switchMinWidth 0x7f0100be 172 | int attr switchPadding 0x7f0100bf 173 | int attr switchStyle 0x7f01006a 174 | int attr switchTextAppearance 0x7f0100bd 175 | int attr textAllCaps 0x7f0100a0 176 | int attr textAppearanceLargePopupMenu 0x7f010029 177 | int attr textAppearanceListItem 0x7f01004b 178 | int attr textAppearanceListItemSmall 0x7f01004c 179 | int attr textAppearanceSearchResultSubtitle 0x7f010041 180 | int attr textAppearanceSearchResultTitle 0x7f010040 181 | int attr textAppearanceSmallPopupMenu 0x7f01002a 182 | int attr textColorAlertDialogListItem 0x7f01005d 183 | int attr textColorSearchUrl 0x7f010042 184 | int attr theme 0x7f010086 185 | int attr thickness 0x7f0100b9 186 | int attr thumbTextPadding 0x7f0100bc 187 | int attr title 0x7f010000 188 | int attr titleMarginBottom 0x7f0100aa 189 | int attr titleMarginEnd 0x7f0100a8 190 | int attr titleMarginStart 0x7f0100a7 191 | int attr titleMarginTop 0x7f0100a9 192 | int attr titleMargins 0x7f0100a6 193 | int attr titleTextAppearance 0x7f0100a4 194 | int attr titleTextStyle 0x7f01006e 195 | int attr toolbarNavigationButtonStyle 0x7f01003b 196 | int attr toolbarStyle 0x7f01003a 197 | int attr topBottomBarArrowSize 0x7f0100b6 198 | int attr track 0x7f0100bb 199 | int attr voiceIcon 0x7f010099 200 | int attr windowActionBar 0x7f010003 201 | int attr windowActionBarOverlay 0x7f010005 202 | int attr windowActionModeOverlay 0x7f010006 203 | int attr windowFixedHeightMajor 0x7f01000a 204 | int attr windowFixedHeightMinor 0x7f010008 205 | int attr windowFixedWidthMajor 0x7f010007 206 | int attr windowFixedWidthMinor 0x7f010009 207 | int attr windowMinWidthMajor 0x7f01000b 208 | int attr windowMinWidthMinor 0x7f01000c 209 | int attr windowNoTitle 0x7f010004 210 | int bool abc_action_bar_embed_tabs 0x7f050000 211 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f050001 212 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f050002 213 | int bool abc_config_actionMenuItemAllCaps 0x7f050005 214 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f050004 215 | int bool abc_config_closeDialogWhenTouchOutside 0x7f050006 216 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050003 217 | int color abc_background_cache_hint_selector_material_dark 0x7f060033 218 | int color abc_background_cache_hint_selector_material_light 0x7f060034 219 | int color abc_input_method_navigation_guard 0x7f060003 220 | int color abc_primary_text_disable_only_material_dark 0x7f060035 221 | int color abc_primary_text_disable_only_material_light 0x7f060036 222 | int color abc_primary_text_material_dark 0x7f060037 223 | int color abc_primary_text_material_light 0x7f060038 224 | int color abc_search_url_text 0x7f060039 225 | int color abc_search_url_text_normal 0x7f060000 226 | int color abc_search_url_text_pressed 0x7f060002 227 | int color abc_search_url_text_selected 0x7f060001 228 | int color abc_secondary_text_material_dark 0x7f06003a 229 | int color abc_secondary_text_material_light 0x7f06003b 230 | int color accent_material_dark 0x7f06000f 231 | int color accent_material_light 0x7f06000e 232 | int color background_floating_material_dark 0x7f060006 233 | int color background_floating_material_light 0x7f060007 234 | int color background_material_dark 0x7f060004 235 | int color background_material_light 0x7f060005 236 | int color bright_foreground_disabled_material_dark 0x7f060018 237 | int color bright_foreground_disabled_material_light 0x7f060019 238 | int color bright_foreground_inverse_material_dark 0x7f06001a 239 | int color bright_foreground_inverse_material_light 0x7f06001b 240 | int color bright_foreground_material_dark 0x7f060016 241 | int color bright_foreground_material_light 0x7f060017 242 | int color button_material_dark 0x7f060010 243 | int color button_material_light 0x7f060011 244 | int color dim_foreground_disabled_material_dark 0x7f06001e 245 | int color dim_foreground_disabled_material_light 0x7f06001f 246 | int color dim_foreground_material_dark 0x7f06001c 247 | int color dim_foreground_material_light 0x7f06001d 248 | int color highlighted_text_material_dark 0x7f060022 249 | int color highlighted_text_material_light 0x7f060023 250 | int color hint_foreground_material_dark 0x7f060020 251 | int color hint_foreground_material_light 0x7f060021 252 | int color link_text_material_dark 0x7f060024 253 | int color link_text_material_light 0x7f060025 254 | int color material_blue_grey_800 0x7f060030 255 | int color material_blue_grey_900 0x7f060031 256 | int color material_blue_grey_950 0x7f060032 257 | int color material_deep_teal_200 0x7f06002e 258 | int color material_deep_teal_500 0x7f06002f 259 | int color primary_dark_material_dark 0x7f06000a 260 | int color primary_dark_material_light 0x7f06000b 261 | int color primary_material_dark 0x7f060008 262 | int color primary_material_light 0x7f060009 263 | int color primary_text_default_material_dark 0x7f060028 264 | int color primary_text_default_material_light 0x7f060026 265 | int color primary_text_disabled_material_dark 0x7f06002c 266 | int color primary_text_disabled_material_light 0x7f06002a 267 | int color ripple_material_dark 0x7f06000c 268 | int color ripple_material_light 0x7f06000d 269 | int color secondary_text_default_material_dark 0x7f060029 270 | int color secondary_text_default_material_light 0x7f060027 271 | int color secondary_text_disabled_material_dark 0x7f06002d 272 | int color secondary_text_disabled_material_light 0x7f06002b 273 | int color switch_thumb_disabled_material_dark 0x7f060014 274 | int color switch_thumb_disabled_material_light 0x7f060015 275 | int color switch_thumb_material_dark 0x7f06003c 276 | int color switch_thumb_material_light 0x7f06003d 277 | int color switch_thumb_normal_material_dark 0x7f060012 278 | int color switch_thumb_normal_material_light 0x7f060013 279 | int dimen abc_action_bar_content_inset_material 0x7f070025 280 | int dimen abc_action_bar_default_height_material 0x7f070023 281 | int dimen abc_action_bar_default_padding_material 0x7f070024 282 | int dimen abc_action_bar_icon_vertical_padding_material 0x7f070028 283 | int dimen abc_action_bar_navigation_padding_start_material 0x7f070026 284 | int dimen abc_action_bar_overflow_padding_end_material 0x7f070027 285 | int dimen abc_action_bar_overflow_padding_start_material 0x7f07002c 286 | int dimen abc_action_bar_progress_bar_size 0x7f070005 287 | int dimen abc_action_bar_stacked_max_height 0x7f070004 288 | int dimen abc_action_bar_stacked_tab_max_width 0x7f070003 289 | int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07002a 290 | int dimen abc_action_bar_subtitle_top_margin_material 0x7f070029 291 | int dimen abc_action_button_min_height_material 0x7f07002f 292 | int dimen abc_action_button_min_width_material 0x7f07002e 293 | int dimen abc_action_button_min_width_overflow_material 0x7f07002d 294 | int dimen abc_alert_dialog_button_bar_height 0x7f07001d 295 | int dimen abc_button_inset_horizontal_material 0x7f070011 296 | int dimen abc_button_inset_vertical_material 0x7f070010 297 | int dimen abc_button_padding_horizontal_material 0x7f070013 298 | int dimen abc_button_padding_vertical_material 0x7f070012 299 | int dimen abc_config_prefDialogWidth 0x7f070002 300 | int dimen abc_control_corner_material 0x7f070016 301 | int dimen abc_control_inset_material 0x7f070014 302 | int dimen abc_control_padding_material 0x7f070015 303 | int dimen abc_dialog_list_padding_vertical_material 0x7f07001e 304 | int dimen abc_dialog_min_width_major 0x7f07001f 305 | int dimen abc_dialog_min_width_minor 0x7f070020 306 | int dimen abc_dialog_padding_material 0x7f07001b 307 | int dimen abc_dialog_padding_top_material 0x7f07001c 308 | int dimen abc_disabled_alpha_material_dark 0x7f070041 309 | int dimen abc_disabled_alpha_material_light 0x7f070040 310 | int dimen abc_dropdownitem_icon_width 0x7f07000b 311 | int dimen abc_dropdownitem_text_padding_left 0x7f070009 312 | int dimen abc_dropdownitem_text_padding_right 0x7f07000a 313 | int dimen abc_edit_text_inset_bottom_material 0x7f070019 314 | int dimen abc_edit_text_inset_horizontal_material 0x7f070017 315 | int dimen abc_edit_text_inset_top_material 0x7f070018 316 | int dimen abc_floating_window_z 0x7f07003f 317 | int dimen abc_list_item_padding_horizontal_material 0x7f07002b 318 | int dimen abc_panel_menu_list_width 0x7f070006 319 | int dimen abc_search_view_preferred_width 0x7f070008 320 | int dimen abc_search_view_text_min_width 0x7f070007 321 | int dimen abc_switch_padding 0x7f07001a 322 | int dimen abc_text_size_body_1_material 0x7f070039 323 | int dimen abc_text_size_body_2_material 0x7f070038 324 | int dimen abc_text_size_button_material 0x7f07003b 325 | int dimen abc_text_size_caption_material 0x7f07003a 326 | int dimen abc_text_size_display_1_material 0x7f070033 327 | int dimen abc_text_size_display_2_material 0x7f070032 328 | int dimen abc_text_size_display_3_material 0x7f070031 329 | int dimen abc_text_size_display_4_material 0x7f070030 330 | int dimen abc_text_size_headline_material 0x7f070034 331 | int dimen abc_text_size_large_material 0x7f07003c 332 | int dimen abc_text_size_medium_material 0x7f07003d 333 | int dimen abc_text_size_menu_material 0x7f070037 334 | int dimen abc_text_size_small_material 0x7f07003e 335 | int dimen abc_text_size_subhead_material 0x7f070036 336 | int dimen abc_text_size_subtitle_material_toolbar 0x7f070022 337 | int dimen abc_text_size_title_material 0x7f070035 338 | int dimen abc_text_size_title_material_toolbar 0x7f070021 339 | int dimen activity_horizontal_margin 0x7f070042 340 | int dimen activity_vertical_margin 0x7f070043 341 | int dimen dialog_fixed_height_major 0x7f07000e 342 | int dimen dialog_fixed_height_minor 0x7f07000f 343 | int dimen dialog_fixed_width_major 0x7f07000c 344 | int dimen dialog_fixed_width_minor 0x7f07000d 345 | int dimen disabled_alpha_material_dark 0x7f070001 346 | int dimen disabled_alpha_material_light 0x7f070000 347 | int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000 348 | int drawable abc_btn_borderless_material 0x7f020001 349 | int drawable abc_btn_check_material 0x7f020002 350 | int drawable abc_btn_check_to_on_mtrl_000 0x7f020003 351 | int drawable abc_btn_check_to_on_mtrl_015 0x7f020004 352 | int drawable abc_btn_default_mtrl_shape 0x7f020005 353 | int drawable abc_btn_radio_material 0x7f020006 354 | int drawable abc_btn_radio_to_on_mtrl_000 0x7f020007 355 | int drawable abc_btn_radio_to_on_mtrl_015 0x7f020008 356 | int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f020009 357 | int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000a 358 | int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000b 359 | int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000c 360 | int drawable abc_cab_background_internal_bg 0x7f02000d 361 | int drawable abc_cab_background_top_material 0x7f02000e 362 | int drawable abc_cab_background_top_mtrl_alpha 0x7f02000f 363 | int drawable abc_dialog_material_background_dark 0x7f020010 364 | int drawable abc_dialog_material_background_light 0x7f020011 365 | int drawable abc_edit_text_material 0x7f020012 366 | int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020013 367 | int drawable abc_ic_clear_mtrl_alpha 0x7f020014 368 | int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020015 369 | int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020016 370 | int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020017 371 | int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020018 372 | int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020019 373 | int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001a 374 | int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001b 375 | int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001c 376 | int drawable abc_ic_search_api_mtrl_alpha 0x7f02001d 377 | int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f02001e 378 | int drawable abc_item_background_holo_dark 0x7f02001f 379 | int drawable abc_item_background_holo_light 0x7f020020 380 | int drawable abc_list_divider_mtrl_alpha 0x7f020021 381 | int drawable abc_list_focused_holo 0x7f020022 382 | int drawable abc_list_longpressed_holo 0x7f020023 383 | int drawable abc_list_pressed_holo_dark 0x7f020024 384 | int drawable abc_list_pressed_holo_light 0x7f020025 385 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020026 386 | int drawable abc_list_selector_background_transition_holo_light 0x7f020027 387 | int drawable abc_list_selector_disabled_holo_dark 0x7f020028 388 | int drawable abc_list_selector_disabled_holo_light 0x7f020029 389 | int drawable abc_list_selector_holo_dark 0x7f02002a 390 | int drawable abc_list_selector_holo_light 0x7f02002b 391 | int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002c 392 | int drawable abc_popup_background_mtrl_mult 0x7f02002d 393 | int drawable abc_ratingbar_full_material 0x7f02002e 394 | int drawable abc_spinner_mtrl_am_alpha 0x7f02002f 395 | int drawable abc_spinner_textfield_background_material 0x7f020030 396 | int drawable abc_switch_thumb_material 0x7f020031 397 | int drawable abc_switch_track_mtrl_alpha 0x7f020032 398 | int drawable abc_tab_indicator_material 0x7f020033 399 | int drawable abc_tab_indicator_mtrl_alpha 0x7f020034 400 | int drawable abc_text_cursor_mtrl_alpha 0x7f020035 401 | int drawable abc_textfield_activated_mtrl_alpha 0x7f020036 402 | int drawable abc_textfield_default_mtrl_alpha 0x7f020037 403 | int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020038 404 | int drawable abc_textfield_search_default_mtrl_alpha 0x7f020039 405 | int drawable abc_textfield_search_material 0x7f02003a 406 | int drawable ic_launcher 0x7f02003b 407 | int id action_bar 0x7f090040 408 | int id action_bar_activity_content 0x7f090003 409 | int id action_bar_container 0x7f09003f 410 | int id action_bar_root 0x7f09003b 411 | int id action_bar_spinner 0x7f090002 412 | int id action_bar_subtitle 0x7f090024 413 | int id action_bar_title 0x7f090023 414 | int id action_context_bar 0x7f090041 415 | int id action_menu_divider 0x7f090005 416 | int id action_menu_presenter 0x7f090006 417 | int id action_mode_bar 0x7f09003d 418 | int id action_mode_bar_stub 0x7f09003c 419 | int id action_mode_close_button 0x7f090025 420 | int id action_settings 0x7f090055 421 | int id activity_chooser_view_content 0x7f090026 422 | int id alertTitle 0x7f090030 423 | int id always 0x7f090019 424 | int id beginning 0x7f090020 425 | int id button1 0x7f090054 426 | int id buttonPanel 0x7f090036 427 | int id checkbox 0x7f090038 428 | int id collapseActionView 0x7f09001a 429 | int id container 0x7f09004f 430 | int id contentPanel 0x7f090031 431 | int id custom 0x7f090035 432 | int id customPanel 0x7f090034 433 | int id decor_content_parent 0x7f09003e 434 | int id default_activity_button 0x7f090029 435 | int id dialog 0x7f09001e 436 | int id disableHome 0x7f09000d 437 | int id dropdown 0x7f09001f 438 | int id editText1 0x7f090052 439 | int id edit_query 0x7f090042 440 | int id end 0x7f090021 441 | int id expand_activities_button 0x7f090027 442 | int id expanded_menu 0x7f090037 443 | int id home 0x7f090000 444 | int id homeAsUp 0x7f09000e 445 | int id icon 0x7f09002b 446 | int id ifRoom 0x7f09001b 447 | int id image 0x7f090028 448 | int id listMode 0x7f09000a 449 | int id list_item 0x7f09002a 450 | int id middle 0x7f090022 451 | int id multiply 0x7f090014 452 | int id never 0x7f09001c 453 | int id none 0x7f09000f 454 | int id normal 0x7f09000b 455 | int id parentPanel 0x7f09002d 456 | int id progress_circular 0x7f090007 457 | int id progress_horizontal 0x7f090008 458 | int id radio 0x7f09003a 459 | int id screen 0x7f090015 460 | int id scrollView 0x7f090032 461 | int id search_badge 0x7f090044 462 | int id search_bar 0x7f090043 463 | int id search_button 0x7f090045 464 | int id search_close_btn 0x7f09004a 465 | int id search_edit_frame 0x7f090046 466 | int id search_go_btn 0x7f09004c 467 | int id search_mag_icon 0x7f090047 468 | int id search_plate 0x7f090048 469 | int id search_src_text 0x7f090049 470 | int id search_voice_btn 0x7f09004d 471 | int id select_dialog_listview 0x7f09004e 472 | int id shortcut 0x7f090039 473 | int id showCustom 0x7f090010 474 | int id showHome 0x7f090011 475 | int id showTitle 0x7f090012 476 | int id split_action_bar 0x7f090004 477 | int id src_atop 0x7f090016 478 | int id src_in 0x7f090017 479 | int id src_over 0x7f090018 480 | int id submit_area 0x7f09004b 481 | int id tabMode 0x7f09000c 482 | int id textSpacerNoButtons 0x7f090033 483 | int id textView2 0x7f090051 484 | int id textViewServerMessage 0x7f090053 485 | int id textViewsrvrMsg 0x7f090050 486 | int id title 0x7f09002c 487 | int id title_template 0x7f09002f 488 | int id topPanel 0x7f09002e 489 | int id up 0x7f090001 490 | int id useLogo 0x7f090013 491 | int id withText 0x7f09001d 492 | int id wrap_content 0x7f090009 493 | int integer abc_config_activityDefaultDur 0x7f080001 494 | int integer abc_config_activityShortDur 0x7f080000 495 | int integer abc_max_action_buttons 0x7f080002 496 | int layout abc_action_bar_title_item 0x7f030000 497 | int layout abc_action_bar_up_container 0x7f030001 498 | int layout abc_action_bar_view_list_nav_layout 0x7f030002 499 | int layout abc_action_menu_item_layout 0x7f030003 500 | int layout abc_action_menu_layout 0x7f030004 501 | int layout abc_action_mode_bar 0x7f030005 502 | int layout abc_action_mode_close_item_material 0x7f030006 503 | int layout abc_activity_chooser_view 0x7f030007 504 | int layout abc_activity_chooser_view_list_item 0x7f030008 505 | int layout abc_alert_dialog_material 0x7f030009 506 | int layout abc_dialog_title_material 0x7f03000a 507 | int layout abc_expanded_menu_layout 0x7f03000b 508 | int layout abc_list_menu_item_checkbox 0x7f03000c 509 | int layout abc_list_menu_item_icon 0x7f03000d 510 | int layout abc_list_menu_item_layout 0x7f03000e 511 | int layout abc_list_menu_item_radio 0x7f03000f 512 | int layout abc_popup_menu_item_layout 0x7f030010 513 | int layout abc_screen_content_include 0x7f030011 514 | int layout abc_screen_simple 0x7f030012 515 | int layout abc_screen_simple_overlay_action_mode 0x7f030013 516 | int layout abc_screen_toolbar 0x7f030014 517 | int layout abc_search_dropdown_item_icons_2line 0x7f030015 518 | int layout abc_search_view 0x7f030016 519 | int layout abc_select_dialog_material 0x7f030017 520 | int layout abc_simple_dropdown_hint 0x7f030018 521 | int layout activity_main 0x7f030019 522 | int layout select_dialog_item_material 0x7f03001a 523 | int layout select_dialog_multichoice_material 0x7f03001b 524 | int layout select_dialog_singlechoice_material 0x7f03001c 525 | int layout support_simple_spinner_dropdown_item 0x7f03001d 526 | int menu main 0x7f0c0000 527 | int string abc_action_bar_home_description 0x7f0a0001 528 | int string abc_action_bar_home_description_format 0x7f0a0005 529 | int string abc_action_bar_home_subtitle_description_format 0x7f0a0006 530 | int string abc_action_bar_up_description 0x7f0a0002 531 | int string abc_action_menu_overflow_description 0x7f0a0003 532 | int string abc_action_mode_done 0x7f0a0000 533 | int string abc_activity_chooser_view_see_all 0x7f0a000e 534 | int string abc_activitychooserview_choose_application 0x7f0a000d 535 | int string abc_search_hint 0x7f0a0008 536 | int string abc_searchview_description_clear 0x7f0a000a 537 | int string abc_searchview_description_query 0x7f0a0009 538 | int string abc_searchview_description_search 0x7f0a0007 539 | int string abc_searchview_description_submit 0x7f0a000b 540 | int string abc_searchview_description_voice 0x7f0a000c 541 | int string abc_shareactionprovider_share_with 0x7f0a0010 542 | int string abc_shareactionprovider_share_with_application 0x7f0a000f 543 | int string abc_toolbar_collapse_description 0x7f0a0004 544 | int string action_settings 0x7f0a0013 545 | int string app_name 0x7f0a0011 546 | int string hello_world 0x7f0a0012 547 | int style AlertDialog_AppCompat 0x7f0b0040 548 | int style AlertDialog_AppCompat_Light 0x7f0b0041 549 | int style Animation_AppCompat_Dialog 0x7f0b0046 550 | int style Animation_AppCompat_DropDownUp 0x7f0b0047 551 | int style AppBaseTheme 0x7f0b011b 552 | int style AppTheme 0x7f0b011c 553 | int style Base_AlertDialog_AppCompat 0x7f0b00bd 554 | int style Base_AlertDialog_AppCompat_Light 0x7f0b00be 555 | int style Base_Animation_AppCompat_Dialog 0x7f0b00b9 556 | int style Base_Animation_AppCompat_DropDownUp 0x7f0b00bc 557 | int style Base_DialogWindowTitle_AppCompat 0x7f0b00b8 558 | int style Base_DialogWindowTitleBackground_AppCompat 0x7f0b00b7 559 | int style Base_TextAppearance_AppCompat 0x7f0b00bf 560 | int style Base_TextAppearance_AppCompat_Body1 0x7f0b00ca 561 | int style Base_TextAppearance_AppCompat_Body2 0x7f0b00c9 562 | int style Base_TextAppearance_AppCompat_Button 0x7f0b00cd 563 | int style Base_TextAppearance_AppCompat_Caption 0x7f0b00cb 564 | int style Base_TextAppearance_AppCompat_Display1 0x7f0b00c3 565 | int style Base_TextAppearance_AppCompat_Display2 0x7f0b00c2 566 | int style Base_TextAppearance_AppCompat_Display3 0x7f0b00c1 567 | int style Base_TextAppearance_AppCompat_Display4 0x7f0b00c0 568 | int style Base_TextAppearance_AppCompat_Headline 0x7f0b00c4 569 | int style Base_TextAppearance_AppCompat_Inverse 0x7f0b00ce 570 | int style Base_TextAppearance_AppCompat_Large 0x7f0b00cf 571 | int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0b00d0 572 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b009a 573 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b009b 574 | int style Base_TextAppearance_AppCompat_Medium 0x7f0b00d1 575 | int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0b00d2 576 | int style Base_TextAppearance_AppCompat_Menu 0x7f0b00cc 577 | int style Base_TextAppearance_AppCompat_SearchResult 0x7f0b009c 578 | int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b009e 579 | int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0b009d 580 | int style Base_TextAppearance_AppCompat_Small 0x7f0b00d3 581 | int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0b00d4 582 | int style Base_TextAppearance_AppCompat_Subhead 0x7f0b00c7 583 | int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0b00c8 584 | int style Base_TextAppearance_AppCompat_Title 0x7f0b00c5 585 | int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0b00c6 586 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0083 587 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0085 588 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0087 589 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0084 590 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0086 591 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b0082 592 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b0081 593 | int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0090 594 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0098 595 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0099 596 | int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0b00ae 597 | int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b00b6 598 | int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0091 599 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b00a5 600 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b00a4 601 | int style Base_Theme_AppCompat 0x7f0b00f8 602 | int style Base_Theme_AppCompat_CompactMenu 0x7f0b00fb 603 | int style Base_Theme_AppCompat_Dialog 0x7f0b00fe 604 | int style Base_Theme_AppCompat_Dialog_Alert 0x7f0b0100 605 | int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0b0104 606 | int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0b0102 607 | int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0b0106 608 | int style Base_Theme_AppCompat_Light 0x7f0b00f9 609 | int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0b00fa 610 | int style Base_Theme_AppCompat_Light_Dialog 0x7f0b00ff 611 | int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0b0101 612 | int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0b0105 613 | int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0103 614 | int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0107 615 | int style Base_ThemeOverlay_AppCompat 0x7f0b0108 616 | int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0b010d 617 | int style Base_ThemeOverlay_AppCompat_Dark 0x7f0b010c 618 | int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b010e 619 | int style Base_ThemeOverlay_AppCompat_Light 0x7f0b010b 620 | int style Base_V11_Theme_AppCompat_Dialog 0x7f0b0111 621 | int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0b0112 622 | int style Base_V21_Theme_AppCompat 0x7f0b0117 623 | int style Base_V21_Theme_AppCompat_Dialog 0x7f0b0119 624 | int style Base_V21_Theme_AppCompat_Light 0x7f0b0118 625 | int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0b011a 626 | int style Base_V7_Theme_AppCompat 0x7f0b00f6 627 | int style Base_V7_Theme_AppCompat_Dialog 0x7f0b00fc 628 | int style Base_V7_Theme_AppCompat_Light 0x7f0b00f7 629 | int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0b00fd 630 | int style Base_Widget_AppCompat_ActionBar 0x7f0b0072 631 | int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0b0074 632 | int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0b0079 633 | int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0b007d 634 | int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0b007b 635 | int style Base_Widget_AppCompat_ActionButton 0x7f0b0076 636 | int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0b0077 637 | int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0b0078 638 | int style Base_Widget_AppCompat_ActionMode 0x7f0b0080 639 | int style Base_Widget_AppCompat_ActivityChooserView 0x7f0b00a0 640 | int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0b009f 641 | int style Base_Widget_AppCompat_Button 0x7f0b00b0 642 | int style Base_Widget_AppCompat_Button_Borderless 0x7f0b00b2 643 | int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0b00b3 644 | int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b00b4 645 | int style Base_Widget_AppCompat_Button_Small 0x7f0b00b1 646 | int style Base_Widget_AppCompat_ButtonBar 0x7f0b00ba 647 | int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b00bb 648 | int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0b00ab 649 | int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0b00ac 650 | int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0b00ad 651 | int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0b00aa 652 | int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0b00a9 653 | int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0b008d 654 | int style Base_Widget_AppCompat_EditText 0x7f0b00a8 655 | int style Base_Widget_AppCompat_Light_ActionBar 0x7f0b0073 656 | int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0075 657 | int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b007a 658 | int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0b007e 659 | int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b007f 660 | int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0b007c 661 | int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0b0097 662 | int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b0095 663 | int style Base_Widget_AppCompat_ListPopupWindow 0x7f0b0093 664 | int style Base_Widget_AppCompat_ListView 0x7f0b008e 665 | int style Base_Widget_AppCompat_ListView_DropDown 0x7f0b008f 666 | int style Base_Widget_AppCompat_ListView_Menu 0x7f0b0092 667 | int style Base_Widget_AppCompat_PopupMenu 0x7f0b0096 668 | int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0b0094 669 | int style Base_Widget_AppCompat_PopupWindow 0x7f0b00a1 670 | int style Base_Widget_AppCompat_ProgressBar 0x7f0b0089 671 | int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0088 672 | int style Base_Widget_AppCompat_RatingBar 0x7f0b00af 673 | int style Base_Widget_AppCompat_SearchView 0x7f0b00a6 674 | int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0b00a7 675 | int style Base_Widget_AppCompat_Spinner 0x7f0b008a 676 | int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b008c 677 | int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0b008b 678 | int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0b00b5 679 | int style Base_Widget_AppCompat_Toolbar 0x7f0b00a2 680 | int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b00a3 681 | int style Platform_AppCompat 0x7f0b00f4 682 | int style Platform_AppCompat_Light 0x7f0b00f5 683 | int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0b0109 684 | int style Platform_ThemeOverlay_AppCompat_Light 0x7f0b010a 685 | int style Platform_V11_AppCompat 0x7f0b010f 686 | int style Platform_V11_AppCompat_Light 0x7f0b0110 687 | int style Platform_V12_AppCompat 0x7f0b0113 688 | int style Platform_V12_AppCompat_Light 0x7f0b0114 689 | int style Platform_V14_AppCompat 0x7f0b0115 690 | int style Platform_V14_AppCompat_Light 0x7f0b0116 691 | int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0b00db 692 | int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f0b00dc 693 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0b00dd 694 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0b00de 695 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0b00df 696 | int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0b00d6 697 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0b00d8 698 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0b00d9 699 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0b00d7 700 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0b00da 701 | int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0b00d5 702 | int style RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b00e0 703 | int style TextAppearance_AppCompat 0x7f0b0048 704 | int style TextAppearance_AppCompat_Body1 0x7f0b0053 705 | int style TextAppearance_AppCompat_Body2 0x7f0b0052 706 | int style TextAppearance_AppCompat_Button 0x7f0b005d 707 | int style TextAppearance_AppCompat_Caption 0x7f0b0054 708 | int style TextAppearance_AppCompat_Display1 0x7f0b004c 709 | int style TextAppearance_AppCompat_Display2 0x7f0b004b 710 | int style TextAppearance_AppCompat_Display3 0x7f0b004a 711 | int style TextAppearance_AppCompat_Display4 0x7f0b0049 712 | int style TextAppearance_AppCompat_Headline 0x7f0b004d 713 | int style TextAppearance_AppCompat_Inverse 0x7f0b0056 714 | int style TextAppearance_AppCompat_Large 0x7f0b0057 715 | int style TextAppearance_AppCompat_Large_Inverse 0x7f0b0058 716 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0064 717 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0063 718 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b002b 719 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b002c 720 | int style TextAppearance_AppCompat_Medium 0x7f0b0059 721 | int style TextAppearance_AppCompat_Medium_Inverse 0x7f0b005a 722 | int style TextAppearance_AppCompat_Menu 0x7f0b0055 723 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b002e 724 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b002d 725 | int style TextAppearance_AppCompat_Small 0x7f0b005b 726 | int style TextAppearance_AppCompat_Small_Inverse 0x7f0b005c 727 | int style TextAppearance_AppCompat_Subhead 0x7f0b0050 728 | int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0b0051 729 | int style TextAppearance_AppCompat_Title 0x7f0b004e 730 | int style TextAppearance_AppCompat_Title_Inverse 0x7f0b004f 731 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0015 732 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0005 733 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0007 734 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0004 735 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0006 736 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b0018 737 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0067 738 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b0017 739 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b0066 740 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0019 741 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0029 742 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b002a 743 | int style TextAppearance_AppCompat_Widget_Switch 0x7f0b005e 744 | int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b005f 745 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0021 746 | int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0045 747 | int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0044 748 | int style Theme_AppCompat 0x7f0b00e1 749 | int style Theme_AppCompat_CompactMenu 0x7f0b00ee 750 | int style Theme_AppCompat_Dialog 0x7f0b00e8 751 | int style Theme_AppCompat_Dialog_Alert 0x7f0b00ea 752 | int style Theme_AppCompat_Dialog_MinWidth 0x7f0b00ec 753 | int style Theme_AppCompat_DialogWhenLarge 0x7f0b00e6 754 | int style Theme_AppCompat_Light 0x7f0b00e2 755 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b00e3 756 | int style Theme_AppCompat_Light_Dialog 0x7f0b00e9 757 | int style Theme_AppCompat_Light_Dialog_Alert 0x7f0b00eb 758 | int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b00ed 759 | int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b00e7 760 | int style Theme_AppCompat_Light_NoActionBar 0x7f0b00e5 761 | int style Theme_AppCompat_NoActionBar 0x7f0b00e4 762 | int style ThemeOverlay_AppCompat 0x7f0b00ef 763 | int style ThemeOverlay_AppCompat_ActionBar 0x7f0b00f2 764 | int style ThemeOverlay_AppCompat_Dark 0x7f0b00f1 765 | int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b00f3 766 | int style ThemeOverlay_AppCompat_Light 0x7f0b00f0 767 | int style Widget_AppCompat_ActionBar 0x7f0b0000 768 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002 769 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b000d 770 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0011 771 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b000f 772 | int style Widget_AppCompat_ActionButton 0x7f0b000a 773 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000b 774 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000c 775 | int style Widget_AppCompat_ActionMode 0x7f0b0016 776 | int style Widget_AppCompat_ActivityChooserView 0x7f0b0030 777 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b002f 778 | int style Widget_AppCompat_Button 0x7f0b0038 779 | int style Widget_AppCompat_Button_Borderless 0x7f0b003a 780 | int style Widget_AppCompat_Button_Borderless_Colored 0x7f0b003b 781 | int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b003c 782 | int style Widget_AppCompat_Button_Small 0x7f0b0039 783 | int style Widget_AppCompat_ButtonBar 0x7f0b003d 784 | int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b003e 785 | int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0b0035 786 | int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0b0036 787 | int style Widget_AppCompat_CompoundButton_Switch 0x7f0b0034 788 | int style Widget_AppCompat_DrawerArrowToggle 0x7f0b0012 789 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b001e 790 | int style Widget_AppCompat_EditText 0x7f0b0033 791 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001 792 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003 793 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b0060 794 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b000e 795 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0061 796 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0013 797 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0014 798 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0010 799 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0062 800 | int style Widget_AppCompat_Light_ActionButton 0x7f0b006a 801 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b006c 802 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b006b 803 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0065 804 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0071 805 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b0070 806 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0068 807 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b006f 808 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b006e 809 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b0026 810 | int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b0024 811 | int style Widget_AppCompat_Light_SearchView 0x7f0b0069 812 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b006d 813 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0022 814 | int style Widget_AppCompat_ListView 0x7f0b001f 815 | int style Widget_AppCompat_ListView_DropDown 0x7f0b0020 816 | int style Widget_AppCompat_ListView_Menu 0x7f0b0027 817 | int style Widget_AppCompat_PopupMenu 0x7f0b0025 818 | int style Widget_AppCompat_PopupMenu_Overflow 0x7f0b0023 819 | int style Widget_AppCompat_PopupWindow 0x7f0b0028 820 | int style Widget_AppCompat_ProgressBar 0x7f0b0009 821 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0008 822 | int style Widget_AppCompat_RatingBar 0x7f0b0037 823 | int style Widget_AppCompat_SearchView 0x7f0b0031 824 | int style Widget_AppCompat_SearchView_ActionBar 0x7f0b0032 825 | int style Widget_AppCompat_Spinner 0x7f0b001a 826 | int style Widget_AppCompat_Spinner_DropDown 0x7f0b001c 827 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b001d 828 | int style Widget_AppCompat_Spinner_Underlined 0x7f0b001b 829 | int style Widget_AppCompat_TextView_SpinnerItem 0x7f0b003f 830 | int style Widget_AppCompat_Toolbar 0x7f0b0042 831 | int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0043 832 | int[] styleable ActionBar { 0x7f010000, 0x7f010001, 0x7f010031, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082 } 833 | int styleable ActionBar_background 11 834 | int styleable ActionBar_backgroundSplit 13 835 | int styleable ActionBar_backgroundStacked 12 836 | int styleable ActionBar_contentInsetEnd 22 837 | int styleable ActionBar_contentInsetLeft 23 838 | int styleable ActionBar_contentInsetRight 24 839 | int styleable ActionBar_contentInsetStart 21 840 | int styleable ActionBar_customNavigationLayout 14 841 | int styleable ActionBar_displayOptions 4 842 | int styleable ActionBar_divider 10 843 | int styleable ActionBar_elevation 25 844 | int styleable ActionBar_height 1 845 | int styleable ActionBar_hideOnContentScroll 20 846 | int styleable ActionBar_homeAsUpIndicator 2 847 | int styleable ActionBar_homeLayout 15 848 | int styleable ActionBar_icon 8 849 | int styleable ActionBar_indeterminateProgressStyle 17 850 | int styleable ActionBar_itemPadding 19 851 | int styleable ActionBar_logo 9 852 | int styleable ActionBar_navigationMode 3 853 | int styleable ActionBar_popupTheme 26 854 | int styleable ActionBar_progressBarPadding 18 855 | int styleable ActionBar_progressBarStyle 16 856 | int styleable ActionBar_subtitle 5 857 | int styleable ActionBar_subtitleTextStyle 7 858 | int styleable ActionBar_title 0 859 | int styleable ActionBar_titleTextStyle 6 860 | int[] styleable ActionBarLayout { 0x010100b3 } 861 | int styleable ActionBarLayout_android_layout_gravity 0 862 | int[] styleable ActionMenuItemView { 0x0101013f } 863 | int styleable ActionMenuItemView_android_minWidth 0 864 | int[] styleable ActionMenuView { } 865 | int[] styleable ActionMode { 0x7f010001, 0x7f01006e, 0x7f01006f, 0x7f010073, 0x7f010075, 0x7f010083 } 866 | int styleable ActionMode_background 3 867 | int styleable ActionMode_backgroundSplit 4 868 | int styleable ActionMode_closeItemLayout 5 869 | int styleable ActionMode_height 0 870 | int styleable ActionMode_subtitleTextStyle 2 871 | int styleable ActionMode_titleTextStyle 1 872 | int[] styleable ActivityChooserView { 0x7f01009e, 0x7f01009f } 873 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 874 | int styleable ActivityChooserView_initialActivityCount 0 875 | int[] styleable AlertDialog { 0x010100f2, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6 } 876 | int styleable AlertDialog_android_layout 0 877 | int styleable AlertDialog_buttonPanelSideLayout 1 878 | int styleable AlertDialog_listItemLayout 5 879 | int styleable AlertDialog_listLayout 2 880 | int styleable AlertDialog_multiChoiceItemLayout 3 881 | int styleable AlertDialog_singleChoiceItemLayout 4 882 | int[] styleable AppCompatTextView { 0x01010034, 0x7f0100a0 } 883 | int styleable AppCompatTextView_android_textAppearance 0 884 | int styleable AppCompatTextView_textAllCaps 1 885 | int[] styleable DrawerArrowToggle { 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9 } 886 | int styleable DrawerArrowToggle_barSize 6 887 | int styleable DrawerArrowToggle_color 0 888 | int styleable DrawerArrowToggle_drawableSize 2 889 | int styleable DrawerArrowToggle_gapBetweenBars 3 890 | int styleable DrawerArrowToggle_middleBarArrowSize 5 891 | int styleable DrawerArrowToggle_spinBars 1 892 | int styleable DrawerArrowToggle_thickness 7 893 | int styleable DrawerArrowToggle_topBottomBarArrowSize 4 894 | int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f010072, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3 } 895 | int styleable LinearLayoutCompat_android_baselineAligned 2 896 | int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 897 | int styleable LinearLayoutCompat_android_gravity 0 898 | int styleable LinearLayoutCompat_android_orientation 1 899 | int styleable LinearLayoutCompat_android_weightSum 4 900 | int styleable LinearLayoutCompat_divider 5 901 | int styleable LinearLayoutCompat_dividerPadding 8 902 | int styleable LinearLayoutCompat_measureWithLargestChild 6 903 | int styleable LinearLayoutCompat_showDividers 7 904 | int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } 905 | int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 906 | int styleable LinearLayoutCompat_Layout_android_layout_height 2 907 | int styleable LinearLayoutCompat_Layout_android_layout_weight 3 908 | int styleable LinearLayoutCompat_Layout_android_layout_width 1 909 | int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } 910 | int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 911 | int styleable ListPopupWindow_android_dropDownVerticalOffset 1 912 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 913 | int styleable MenuGroup_android_checkableBehavior 5 914 | int styleable MenuGroup_android_enabled 0 915 | int styleable MenuGroup_android_id 1 916 | int styleable MenuGroup_android_menuCategory 3 917 | int styleable MenuGroup_android_orderInCategory 4 918 | int styleable MenuGroup_android_visible 2 919 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d } 920 | int styleable MenuItem_actionLayout 14 921 | int styleable MenuItem_actionProviderClass 16 922 | int styleable MenuItem_actionViewClass 15 923 | int styleable MenuItem_android_alphabeticShortcut 9 924 | int styleable MenuItem_android_checkable 11 925 | int styleable MenuItem_android_checked 3 926 | int styleable MenuItem_android_enabled 1 927 | int styleable MenuItem_android_icon 0 928 | int styleable MenuItem_android_id 2 929 | int styleable MenuItem_android_menuCategory 5 930 | int styleable MenuItem_android_numericShortcut 10 931 | int styleable MenuItem_android_onClick 12 932 | int styleable MenuItem_android_orderInCategory 6 933 | int styleable MenuItem_android_title 7 934 | int styleable MenuItem_android_titleCondensed 8 935 | int styleable MenuItem_android_visible 4 936 | int styleable MenuItem_showAsAction 13 937 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010089 } 938 | int styleable MenuView_android_headerBackground 4 939 | int styleable MenuView_android_horizontalDivider 2 940 | int styleable MenuView_android_itemBackground 5 941 | int styleable MenuView_android_itemIconDisabledAlpha 6 942 | int styleable MenuView_android_itemTextAppearance 1 943 | int styleable MenuView_android_verticalDivider 3 944 | int styleable MenuView_android_windowAnimationStyle 0 945 | int styleable MenuView_preserveIconSpacing 7 946 | int[] styleable PopupWindow { 0x01010176, 0x7f0100b1 } 947 | int styleable PopupWindow_android_popupBackground 0 948 | int styleable PopupWindow_overlapAnchor 1 949 | int[] styleable PopupWindowBackgroundState { 0x7f0100b0 } 950 | int styleable PopupWindowBackgroundState_state_above_anchor 0 951 | int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d } 952 | int styleable SearchView_android_focusable 0 953 | int styleable SearchView_android_imeOptions 3 954 | int styleable SearchView_android_inputType 2 955 | int styleable SearchView_android_maxWidth 1 956 | int styleable SearchView_closeIcon 7 957 | int styleable SearchView_commitIcon 12 958 | int styleable SearchView_goIcon 8 959 | int styleable SearchView_iconifiedByDefault 5 960 | int styleable SearchView_layout 4 961 | int styleable SearchView_queryBackground 14 962 | int styleable SearchView_queryHint 6 963 | int styleable SearchView_searchHintIcon 10 964 | int styleable SearchView_searchIcon 9 965 | int styleable SearchView_submitBackground 15 966 | int styleable SearchView_suggestionRowLayout 13 967 | int styleable SearchView_voiceIcon 11 968 | int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091 } 969 | int styleable Spinner_android_background 1 970 | int styleable Spinner_android_dropDownHorizontalOffset 5 971 | int styleable Spinner_android_dropDownSelector 2 972 | int styleable Spinner_android_dropDownVerticalOffset 6 973 | int styleable Spinner_android_dropDownWidth 4 974 | int styleable Spinner_android_gravity 0 975 | int styleable Spinner_android_popupBackground 3 976 | int styleable Spinner_disableChildrenWhenDisabled 10 977 | int styleable Spinner_popupPromptView 9 978 | int styleable Spinner_prompt 7 979 | int styleable Spinner_spinnerMode 8 980 | int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1 } 981 | int styleable SwitchCompat_android_textOff 1 982 | int styleable SwitchCompat_android_textOn 0 983 | int styleable SwitchCompat_android_thumb 2 984 | int styleable SwitchCompat_showText 9 985 | int styleable SwitchCompat_splitTrack 8 986 | int styleable SwitchCompat_switchMinWidth 6 987 | int styleable SwitchCompat_switchPadding 7 988 | int styleable SwitchCompat_switchTextAppearance 5 989 | int styleable SwitchCompat_thumbTextPadding 4 990 | int styleable SwitchCompat_track 3 991 | int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x7f0100a0 } 992 | int styleable TextAppearance_android_textColor 3 993 | int styleable TextAppearance_android_textSize 0 994 | int styleable TextAppearance_android_textStyle 2 995 | int styleable TextAppearance_android_typeface 1 996 | int styleable TextAppearance_textAllCaps 4 997 | int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 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, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a } 998 | int styleable Theme_actionBarDivider 23 999 | int styleable Theme_actionBarItemBackground 24 1000 | int styleable Theme_actionBarPopupTheme 17 1001 | int styleable Theme_actionBarSize 22 1002 | int styleable Theme_actionBarSplitStyle 19 1003 | int styleable Theme_actionBarStyle 18 1004 | int styleable Theme_actionBarTabBarStyle 13 1005 | int styleable Theme_actionBarTabStyle 12 1006 | int styleable Theme_actionBarTabTextStyle 14 1007 | int styleable Theme_actionBarTheme 20 1008 | int styleable Theme_actionBarWidgetTheme 21 1009 | int styleable Theme_actionButtonStyle 49 1010 | int styleable Theme_actionDropDownStyle 45 1011 | int styleable Theme_actionMenuTextAppearance 25 1012 | int styleable Theme_actionMenuTextColor 26 1013 | int styleable Theme_actionModeBackground 29 1014 | int styleable Theme_actionModeCloseButtonStyle 28 1015 | int styleable Theme_actionModeCloseDrawable 31 1016 | int styleable Theme_actionModeCopyDrawable 33 1017 | int styleable Theme_actionModeCutDrawable 32 1018 | int styleable Theme_actionModeFindDrawable 37 1019 | int styleable Theme_actionModePasteDrawable 34 1020 | int styleable Theme_actionModePopupWindowStyle 39 1021 | int styleable Theme_actionModeSelectAllDrawable 35 1022 | int styleable Theme_actionModeShareDrawable 36 1023 | int styleable Theme_actionModeSplitBackground 30 1024 | int styleable Theme_actionModeStyle 27 1025 | int styleable Theme_actionModeWebSearchDrawable 38 1026 | int styleable Theme_actionOverflowButtonStyle 15 1027 | int styleable Theme_actionOverflowMenuStyle 16 1028 | int styleable Theme_activityChooserViewStyle 56 1029 | int styleable Theme_alertDialogButtonGroupStyle 89 1030 | int styleable Theme_alertDialogCenterButtons 90 1031 | int styleable Theme_alertDialogStyle 88 1032 | int styleable Theme_alertDialogTheme 91 1033 | int styleable Theme_android_windowAnimationStyle 1 1034 | int styleable Theme_android_windowIsFloating 0 1035 | int styleable Theme_autoCompleteTextViewStyle 96 1036 | int styleable Theme_buttonBarButtonStyle 51 1037 | int styleable Theme_buttonBarNegativeButtonStyle 94 1038 | int styleable Theme_buttonBarNeutralButtonStyle 95 1039 | int styleable Theme_buttonBarPositiveButtonStyle 93 1040 | int styleable Theme_buttonBarStyle 50 1041 | int styleable Theme_buttonStyle 97 1042 | int styleable Theme_buttonStyleSmall 98 1043 | int styleable Theme_checkboxStyle 99 1044 | int styleable Theme_checkedTextViewStyle 100 1045 | int styleable Theme_colorAccent 82 1046 | int styleable Theme_colorButtonNormal 86 1047 | int styleable Theme_colorControlActivated 84 1048 | int styleable Theme_colorControlHighlight 85 1049 | int styleable Theme_colorControlNormal 83 1050 | int styleable Theme_colorPrimary 80 1051 | int styleable Theme_colorPrimaryDark 81 1052 | int styleable Theme_colorSwitchThumbNormal 87 1053 | int styleable Theme_dialogPreferredPadding 43 1054 | int styleable Theme_dialogTheme 42 1055 | int styleable Theme_dividerHorizontal 55 1056 | int styleable Theme_dividerVertical 54 1057 | int styleable Theme_dropDownListViewStyle 72 1058 | int styleable Theme_dropdownListPreferredItemHeight 46 1059 | int styleable Theme_editTextBackground 62 1060 | int styleable Theme_editTextColor 61 1061 | int styleable Theme_editTextStyle 101 1062 | int styleable Theme_homeAsUpIndicator 48 1063 | int styleable Theme_listChoiceBackgroundIndicator 79 1064 | int styleable Theme_listDividerAlertDialog 44 1065 | int styleable Theme_listPopupWindowStyle 73 1066 | int styleable Theme_listPreferredItemHeight 67 1067 | int styleable Theme_listPreferredItemHeightLarge 69 1068 | int styleable Theme_listPreferredItemHeightSmall 68 1069 | int styleable Theme_listPreferredItemPaddingLeft 70 1070 | int styleable Theme_listPreferredItemPaddingRight 71 1071 | int styleable Theme_panelBackground 76 1072 | int styleable Theme_panelMenuListTheme 78 1073 | int styleable Theme_panelMenuListWidth 77 1074 | int styleable Theme_popupMenuStyle 59 1075 | int styleable Theme_popupWindowStyle 60 1076 | int styleable Theme_radioButtonStyle 102 1077 | int styleable Theme_ratingBarStyle 103 1078 | int styleable Theme_searchViewStyle 66 1079 | int styleable Theme_selectableItemBackground 52 1080 | int styleable Theme_selectableItemBackgroundBorderless 53 1081 | int styleable Theme_spinnerDropDownItemStyle 47 1082 | int styleable Theme_spinnerStyle 104 1083 | int styleable Theme_switchStyle 105 1084 | int styleable Theme_textAppearanceLargePopupMenu 40 1085 | int styleable Theme_textAppearanceListItem 74 1086 | int styleable Theme_textAppearanceListItemSmall 75 1087 | int styleable Theme_textAppearanceSearchResultSubtitle 64 1088 | int styleable Theme_textAppearanceSearchResultTitle 63 1089 | int styleable Theme_textAppearanceSmallPopupMenu 41 1090 | int styleable Theme_textColorAlertDialogListItem 92 1091 | int styleable Theme_textColorSearchUrl 65 1092 | int styleable Theme_toolbarNavigationButtonStyle 58 1093 | int styleable Theme_toolbarStyle 57 1094 | int styleable Theme_windowActionBar 2 1095 | int styleable Theme_windowActionBarOverlay 4 1096 | int styleable Theme_windowActionModeOverlay 5 1097 | int styleable Theme_windowFixedHeightMajor 9 1098 | int styleable Theme_windowFixedHeightMinor 7 1099 | int styleable Theme_windowFixedWidthMajor 6 1100 | int styleable Theme_windowFixedWidthMinor 8 1101 | int styleable Theme_windowMinWidthMajor 10 1102 | int styleable Theme_windowMinWidthMinor 11 1103 | int styleable Theme_windowNoTitle 3 1104 | int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010000, 0x7f01006d, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010082, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af } 1105 | int styleable Toolbar_android_gravity 0 1106 | int styleable Toolbar_android_minHeight 1 1107 | int styleable Toolbar_collapseContentDescription 18 1108 | int styleable Toolbar_collapseIcon 17 1109 | int styleable Toolbar_contentInsetEnd 5 1110 | int styleable Toolbar_contentInsetLeft 6 1111 | int styleable Toolbar_contentInsetRight 7 1112 | int styleable Toolbar_contentInsetStart 4 1113 | int styleable Toolbar_maxButtonHeight 16 1114 | int styleable Toolbar_navigationContentDescription 20 1115 | int styleable Toolbar_navigationIcon 19 1116 | int styleable Toolbar_popupTheme 8 1117 | int styleable Toolbar_subtitle 3 1118 | int styleable Toolbar_subtitleTextAppearance 10 1119 | int styleable Toolbar_title 2 1120 | int styleable Toolbar_titleMarginBottom 15 1121 | int styleable Toolbar_titleMarginEnd 13 1122 | int styleable Toolbar_titleMarginStart 12 1123 | int styleable Toolbar_titleMarginTop 14 1124 | int styleable Toolbar_titleMargins 11 1125 | int styleable Toolbar_titleTextAppearance 9 1126 | int[] styleable View { 0x01010000, 0x010100da, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088 } 1127 | int styleable View_android_focusable 1 1128 | int styleable View_android_theme 0 1129 | int styleable View_backgroundTint 5 1130 | int styleable View_backgroundTintMode 6 1131 | int styleable View_paddingEnd 3 1132 | int styleable View_paddingStart 2 1133 | int styleable View_theme 4 1134 | int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } 1135 | int styleable ViewStubCompat_android_id 0 1136 | int styleable ViewStubCompat_android_inflatedId 2 1137 | int styleable ViewStubCompat_android_layout 1 1138 | -------------------------------------------------------------------------------- /Client/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes.dex -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /Client/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/BuildConfig.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/MainActivity$1.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/MainActivity$ClientAsyncTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/MainActivity$ClientAsyncTask.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/MainActivity.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$anim.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$attr.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$bool.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$color.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$dimen.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$drawable.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$id.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$integer.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$layout.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$menu.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$string.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$style.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R$styleable.class -------------------------------------------------------------------------------- /Client/bin/classes/com/example/client/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/classes/com/example/client/R.class -------------------------------------------------------------------------------- /Client/bin/dexedLibs/android-support-v4-0131180b4fa77264a63c4f561b6509c8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/dexedLibs/android-support-v4-0131180b4fa77264a63c4f561b6509c8.jar -------------------------------------------------------------------------------- /Client/bin/dexedLibs/android-support-v7-appcompat-542251fa48d244d9965069beee8f8ead.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/dexedLibs/android-support-v7-appcompat-542251fa48d244d9965069beee8f8ead.jar -------------------------------------------------------------------------------- /Client/bin/dexedLibs/appcompat_v7-1ede82d65729435f0623f5ff38b07c3b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/dexedLibs/appcompat_v7-1ede82d65729435f0623f5ff38b07c3b.jar -------------------------------------------------------------------------------- /Client/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /Client/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/bin/resources.ap_ -------------------------------------------------------------------------------- /Client/gen/com/example/client/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.client; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Client/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/ic_launcher-web.png -------------------------------------------------------------------------------- /Client/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 | -------------------------------------------------------------------------------- /Client/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-22 15 | android.library.reference.1=../appcompat_v7 16 | -------------------------------------------------------------------------------- /Client/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingspp/Android-TCP-IP-Socket/e80e423e76888d3e0b4231950f677c490716e32d/Client/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Client/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | 15 | 23 | 24 | 32 | 33 | 34 | 35 | 36 | 43 | 44 |