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