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