├── .gitignore ├── KeepCountdownView ├── KeepCountdownView.iml ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── KeepCountdownView │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ └── debug │ │ │ ├── android │ │ │ └── support │ │ │ │ ├── compat │ │ │ │ └── R.java │ │ │ │ ├── coreui │ │ │ │ └── R.java │ │ │ │ ├── coreutils │ │ │ │ └── R.java │ │ │ │ ├── fragment │ │ │ │ └── R.java │ │ │ │ ├── graphics │ │ │ │ └── drawable │ │ │ │ │ ├── R.java │ │ │ │ │ └── animated │ │ │ │ │ └── R.java │ │ │ │ ├── mediacompat │ │ │ │ └── R.java │ │ │ │ ├── v4 │ │ │ │ └── R.java │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ └── R.java │ │ │ └── com │ │ │ └── KeepCountdownView │ │ │ └── R.java │ ├── intermediates │ │ ├── attr │ │ │ └── R.txt │ │ ├── bundles │ │ │ └── debug │ │ │ │ ├── R.txt │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── classes │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ ├── compat │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreui │ │ │ │ │ └── R.class │ │ │ │ │ ├── coreutils │ │ │ │ │ └── R.class │ │ │ │ │ ├── fragment │ │ │ │ │ └── R.class │ │ │ │ │ ├── graphics │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ └── animated │ │ │ │ │ │ └── R.class │ │ │ │ │ ├── mediacompat │ │ │ │ │ └── R.class │ │ │ │ │ ├── v4 │ │ │ │ │ └── R.class │ │ │ │ │ └── v7 │ │ │ │ │ └── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── com │ │ │ │ └── KeepCountdownView │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── KeepCountdownView$1.class │ │ │ │ ├── KeepCountdownView$2.class │ │ │ │ ├── KeepCountdownView$3.class │ │ │ │ ├── KeepCountdownView$4.class │ │ │ │ ├── KeepCountdownView$5.class │ │ │ │ ├── KeepCountdownView$6.class │ │ │ │ ├── KeepCountdownView$7.class │ │ │ │ ├── KeepCountdownView$CountdownListener.class │ │ │ │ ├── KeepCountdownView.class │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── debug-mergeJniLibs │ │ │ │ └── merge-state │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugJniLibFolders │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ └── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ ├── intermediate-jars │ │ │ └── debug │ │ │ │ ├── classes.jar │ │ │ │ └── res.jar │ │ ├── javaPrecompile │ │ │ └── debug │ │ │ │ └── annotationProcessors.json │ │ ├── manifests │ │ │ ├── aapt │ │ │ │ └── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── output.json │ │ │ └── full │ │ │ │ └── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── output.json │ │ ├── res │ │ │ ├── debug │ │ │ │ └── output.json │ │ │ └── symbol-table-with-package │ │ │ │ └── debug │ │ │ │ └── package-aware-r.txt │ │ └── transforms │ │ │ └── mergeJniLibs │ │ │ └── debug │ │ │ └── __content__.json │ └── outputs │ │ └── logs │ │ └── manifest-merger-debug-report.txt ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── KeepCountdownView │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── KeepCountdownView │ │ │ └── KeepCountdownView.java │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── KeepCountdownView │ └── ExampleUnitTest.java ├── README.md └── dosbi-gbms4.gif /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio Navigation editor temp files 30 | .navigation/ 31 | 32 | # Android Studio captures folder 33 | captures/ 34 | 35 | # IntelliJ 36 | *.iml 37 | .idea/workspace.xml 38 | .idea/tasks.xml 39 | .idea/gradle.xml 40 | .idea/assetWizardSettings.xml 41 | .idea/dictionaries 42 | .idea/libraries 43 | .idea/caches 44 | 45 | # Keystore files 46 | # Uncomment the following line if you do not want to check your keystore files in. 47 | #*.jks 48 | 49 | # External native build folder generated in Android Studio 2.2 and later 50 | .externalNativeBuild 51 | 52 | # Google Services (e.g. APIs or Firebase) 53 | google-services.json 54 | 55 | # Freeline 56 | freeline.py 57 | freeline/ 58 | freeline_project_description.json 59 | 60 | # fastlane 61 | fastlane/report.xml 62 | fastlane/Preview.html 63 | fastlane/screenshots 64 | fastlane/test_output 65 | fastlane/readme.md 66 | -------------------------------------------------------------------------------- /KeepCountdownView/KeepCountdownView.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | -------------------------------------------------------------------------------- /KeepCountdownView/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 25 5 | 6 | 7 | 8 | defaultConfig { 9 | minSdkVersion 19 10 | targetSdkVersion 25 11 | versionCode 1 12 | versionName "1.0" 13 | 14 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 15 | 16 | } 17 | 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | 25 | } 26 | 27 | dependencies { 28 | implementation fileTree(dir: 'libs', include: ['*.jar']) 29 | 30 | implementation 'com.android.support:appcompat-v7:25.3.1' 31 | } 32 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/buildConfig/debug/com/KeepCountdownView/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Automatically generated file. DO NOT MODIFY 3 | */ 4 | package com.KeepCountdownView; 5 | 6 | public final class BuildConfig { 7 | public static final boolean DEBUG = Boolean.parseBoolean("true"); 8 | public static final String APPLICATION_ID = "com.KeepCountdownView"; 9 | public static final String BUILD_TYPE = "debug"; 10 | public static final String FLAVOR = ""; 11 | public static final int VERSION_CODE = 1; 12 | public static final String VERSION_NAME = "1.0"; 13 | } 14 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/compat/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.compat; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/coreui/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.coreui; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/coreutils/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.coreutils; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/fragment/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.fragment; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/graphics/drawable/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.graphics.drawable; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/graphics/drawable/animated/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.graphics.drawable.animated; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/mediacompat/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.mediacompat; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/generated/source/r/debug/android/support/v4/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * gradle plugin from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | package android.support.v4; 8 | 9 | public final class R { 10 | } 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/attr/R.txt: -------------------------------------------------------------------------------- 1 | int attr absListViewStyle 0x0101006a 2 | int attr accessibilityEventTypes 0x01010380 3 | int attr accessibilityFeedbackType 0x01010382 4 | int attr accessibilityFlags 0x01010384 5 | int attr accessibilityLiveRegion 0x010103ee 6 | int attr accessibilityTraversalAfter 0x010104d2 7 | int attr accessibilityTraversalBefore 0x010104d1 8 | int attr accountPreferences 0x0101029f 9 | int attr accountType 0x0101028f 10 | int attr action 0x0101002d 11 | int attr actionBarDivider 0x0101039b 12 | int attr actionBarItemBackground 0x0101039c 13 | int attr actionBarPopupTheme 0x0101048d 14 | int attr actionBarSize 0x010102eb 15 | int attr actionBarSplitStyle 0x01010388 16 | int attr actionBarStyle 0x010102ce 17 | int attr actionBarTabBarStyle 0x010102f4 18 | int attr actionBarTabStyle 0x010102f3 19 | int attr actionBarTabTextStyle 0x010102f5 20 | int attr actionBarTheme 0x01010431 21 | int attr actionBarWidgetTheme 0x01010397 22 | int attr actionButtonStyle 0x010102d8 23 | int attr actionDropDownStyle 0x010102d7 24 | int attr actionLayout 0x010102fb 25 | int attr actionMenuTextAppearance 0x01010360 26 | int attr actionMenuTextColor 0x01010361 27 | int attr actionModeBackground 0x010102db 28 | int attr actionModeCloseButtonStyle 0x010102f7 29 | int attr actionModeCloseDrawable 0x010102dc 30 | int attr actionModeCopyDrawable 0x01010312 31 | int attr actionModeCutDrawable 0x01010311 32 | int attr actionModeFindDrawable 0x0101047a 33 | int attr actionModePasteDrawable 0x01010313 34 | int attr actionModeSelectAllDrawable 0x0101037e 35 | int attr actionModeShareDrawable 0x01010479 36 | int attr actionModeSplitBackground 0x0101039d 37 | int attr actionModeStyle 0x01010394 38 | int attr actionModeWebSearchDrawable 0x0101047b 39 | int attr actionOverflowButtonStyle 0x010102f6 40 | int attr actionOverflowMenuStyle 0x01010444 41 | int attr actionProviderClass 0x01010389 42 | int attr actionViewClass 0x010102fc 43 | int attr activatedBackgroundIndicator 0x010102fd 44 | int attr activityCloseEnterAnimation 0x010100ba 45 | int attr activityCloseExitAnimation 0x010100bb 46 | int attr activityOpenEnterAnimation 0x010100b8 47 | int attr activityOpenExitAnimation 0x010100b9 48 | int attr addPrintersActivity 0x010103e6 49 | int attr addStatesFromChildren 0x010100f0 50 | int attr adjustViewBounds 0x0101011e 51 | int attr advancedPrintOptionsActivity 0x010103f1 52 | int attr alertDialogIcon 0x01010355 53 | int attr alertDialogStyle 0x0101005d 54 | int attr alertDialogTheme 0x01010309 55 | int attr alignmentMode 0x0101037a 56 | int attr allContactsName 0x010102cc 57 | int attr allowBackup 0x01010280 58 | int attr allowClearUserData 0x01010005 59 | int attr allowEmbedded 0x010103f5 60 | int attr allowParallelSyncs 0x01010332 61 | int attr allowSingleTap 0x01010259 62 | int attr allowTaskReparenting 0x01010204 63 | int attr allowUndo 0x010104df 64 | int attr alpha 0x0101031f 65 | int attr alphabeticShortcut 0x010101e3 66 | int attr alwaysDrawnWithCache 0x010100ef 67 | int attr alwaysRetainTaskState 0x01010203 68 | int attr amPmBackgroundColor 0x010104a5 69 | int attr amPmTextColor 0x010104a4 70 | int attr ambientShadowAlpha 0x010104be 71 | int attr angle 0x010101a0 72 | int attr animateFirstView 0x010102d5 73 | int attr animateLayoutChanges 0x010102f2 74 | int attr animateOnClick 0x0101025c 75 | int attr animation 0x010101cd 76 | int attr animationCache 0x010100ed 77 | int attr animationDuration 0x01010112 78 | int attr animationOrder 0x010101ce 79 | int attr animationResolution 0x0101031a 80 | int attr antialias 0x0101011a 81 | int attr anyDensity 0x0101026c 82 | int attr apduServiceBanner 0x010103ed 83 | int attr apiKey 0x01010211 84 | int attr author 0x010102b4 85 | int attr authorities 0x01010018 86 | int attr autoAdvanceViewId 0x0101030f 87 | int attr autoCompleteTextViewStyle 0x0101006b 88 | int attr autoLink 0x010100b0 89 | int attr autoMirrored 0x010103ea 90 | int attr autoRemoveFromRecents 0x01010447 91 | int attr autoStart 0x010102b5 92 | int attr autoText 0x0101016a 93 | int attr autoUrlDetect 0x0101028c 94 | int attr autoVerify 0x010104ee 95 | int attr background 0x010100d4 96 | int attr backgroundDimAmount 0x01010032 97 | int attr backgroundDimEnabled 0x0101021f 98 | int attr backgroundSplit 0x0101038b 99 | int attr backgroundStacked 0x0101038a 100 | int attr backgroundTint 0x0101046b 101 | int attr backgroundTintMode 0x0101046c 102 | int attr backupAgent 0x0101027f 103 | int attr backupInForeground 0x0101051a 104 | int attr banner 0x010103f2 105 | int attr baseline 0x0101031c 106 | int attr baselineAlignBottom 0x01010122 107 | int attr baselineAligned 0x01010126 108 | int attr baselineAlignedChildIndex 0x01010127 109 | int attr bitmap 0x01010516 110 | int attr borderlessButtonStyle 0x0101032b 111 | int attr bottom 0x010101b0 112 | int attr bottomBright 0x010100cd 113 | int attr bottomDark 0x010100c9 114 | int attr bottomLeftRadius 0x010101ab 115 | int attr bottomMedium 0x010100ce 116 | int attr bottomOffset 0x01010257 117 | int attr bottomRightRadius 0x010101ac 118 | int attr breadCrumbShortTitle 0x01010304 119 | int attr breadCrumbTitle 0x01010303 120 | int attr breakStrategy 0x010104dd 121 | int attr bufferType 0x0101014e 122 | int attr button 0x01010107 123 | int attr buttonBarButtonStyle 0x0101032f 124 | int attr buttonBarNegativeButtonStyle 0x0101048b 125 | int attr buttonBarNeutralButtonStyle 0x0101048a 126 | int attr buttonBarPositiveButtonStyle 0x01010489 127 | int attr buttonBarStyle 0x0101032e 128 | int attr buttonGravity 0x010104fe 129 | int attr buttonStyle 0x01010048 130 | int attr buttonStyleInset 0x0101004a 131 | int attr buttonStyleSmall 0x01010049 132 | int attr buttonStyleToggle 0x0101004b 133 | int attr buttonTint 0x0101046f 134 | int attr buttonTintMode 0x01010470 135 | int attr cacheColorHint 0x01010101 136 | int attr calendarTextColor 0x0101049b 137 | int attr calendarViewShown 0x0101034c 138 | int attr calendarViewStyle 0x0101035d 139 | int attr canControlMagnification 0x01010507 140 | int attr canPerformGestures 0x0101050d 141 | int attr canRecord 0x0101051c 142 | int attr canRequestEnhancedWebAccessibility 0x010103d8 143 | int attr canRequestFilterKeyEvents 0x010103d9 144 | int attr canRequestTouchExplorationMode 0x010103d7 145 | int attr canRetrieveWindowContent 0x01010385 146 | int attr candidatesTextStyleSpans 0x01010230 147 | int attr capitalize 0x01010169 148 | int attr category 0x010103e8 149 | int attr centerBright 0x010100cc 150 | int attr centerColor 0x0101020b 151 | int attr centerDark 0x010100c8 152 | int attr centerMedium 0x010100cf 153 | int attr centerX 0x010101a2 154 | int attr centerY 0x010101a3 155 | int attr checkBoxPreferenceStyle 0x0101008f 156 | int attr checkMark 0x01010108 157 | int attr checkMarkTint 0x010104a7 158 | int attr checkMarkTintMode 0x010104a8 159 | int attr checkable 0x010101e5 160 | int attr checkableBehavior 0x010101e0 161 | int attr checkboxStyle 0x0101006c 162 | int attr checked 0x01010106 163 | int attr checkedButton 0x01010148 164 | int attr checkedTextViewStyle 0x010103c8 165 | int attr childDivider 0x01010111 166 | int attr childIndicator 0x0101010c 167 | int attr childIndicatorEnd 0x010103d4 168 | int attr childIndicatorLeft 0x0101010f 169 | int attr childIndicatorRight 0x01010110 170 | int attr childIndicatorStart 0x010103d3 171 | int attr choiceMode 0x0101012b 172 | int attr clearTaskOnLaunch 0x01010015 173 | int attr clickable 0x010100e5 174 | int attr clipChildren 0x010100ea 175 | int attr clipOrientation 0x0101020a 176 | int attr clipToPadding 0x010100eb 177 | int attr closeIcon 0x01010481 178 | int attr codes 0x01010242 179 | int attr collapseColumns 0x0101014b 180 | int attr collapseContentDescription 0x010104d0 181 | int attr collapseIcon 0x010104ff 182 | int attr color 0x010101a5 183 | int attr colorAccent 0x01010435 184 | int attr colorActivatedHighlight 0x01010390 185 | int attr colorBackground 0x01010031 186 | int attr colorBackgroundCacheHint 0x010102ab 187 | int attr colorBackgroundFloating 0x010104e2 188 | int attr colorButtonNormal 0x0101042b 189 | int attr colorControlActivated 0x0101042a 190 | int attr colorControlHighlight 0x0101042c 191 | int attr colorControlNormal 0x01010429 192 | int attr colorEdgeEffect 0x010104ce 193 | int attr colorFocusedHighlight 0x0101038f 194 | int attr colorForeground 0x01010030 195 | int attr colorForegroundInverse 0x01010206 196 | int attr colorLongPressedHighlight 0x0101038e 197 | int attr colorMultiSelectHighlight 0x01010391 198 | int attr colorPressedHighlight 0x0101038d 199 | int attr colorPrimary 0x01010433 200 | int attr colorPrimaryDark 0x01010434 201 | int attr colorSecondary 0x01010530 202 | int attr columnCount 0x01010377 203 | int attr columnDelay 0x010101cf 204 | int attr columnOrderPreserved 0x01010378 205 | int attr columnWidth 0x01010117 206 | int attr commitIcon 0x01010485 207 | int attr compatibleWidthLimitDp 0x01010365 208 | int attr completionHint 0x01010172 209 | int attr completionHintView 0x01010173 210 | int attr completionThreshold 0x01010174 211 | int attr configChanges 0x0101001f 212 | int attr configure 0x0101025d 213 | int attr constantSize 0x01010196 214 | int attr content 0x0101025b 215 | int attr contentAgeHint 0x010104b9 216 | int attr contentAuthority 0x01010290 217 | int attr contentDescription 0x01010273 218 | int attr contentInsetEnd 0x01010454 219 | int attr contentInsetEndWithActions 0x01010523 220 | int attr contentInsetLeft 0x01010455 221 | int attr contentInsetRight 0x01010456 222 | int attr contentInsetStart 0x01010453 223 | int attr contentInsetStartWithNavigation 0x01010522 224 | int attr contextClickable 0x010104e7 225 | int attr contextDescription 0x0101052e 226 | int attr contextPopupMenuStyle 0x01010501 227 | int attr contextUri 0x0101052d 228 | int attr controlX1 0x010103fc 229 | int attr controlX2 0x010103fe 230 | int attr controlY1 0x010103fd 231 | int attr controlY2 0x010103ff 232 | int attr countDown 0x0101051b 233 | int attr country 0x010104ba 234 | int attr cropToPadding 0x01010123 235 | int attr cursorVisible 0x01010152 236 | int attr customNavigationLayout 0x010102d2 237 | int attr customTokens 0x0101033b 238 | int attr cycles 0x010101d4 239 | int attr dashGap 0x010101a7 240 | int attr dashWidth 0x010101a6 241 | int attr data 0x0101002e 242 | int attr datePickerDialogTheme 0x010104ac 243 | int attr datePickerMode 0x010104b3 244 | int attr datePickerStyle 0x0101035c 245 | int attr dateTextAppearance 0x01010349 246 | int attr dayOfWeekBackground 0x01010494 247 | int attr dayOfWeekTextAppearance 0x01010495 248 | int attr debuggable 0x0101000f 249 | int attr defaultHeight 0x010104f5 250 | int attr defaultToDeviceProtectedStorage 0x01010504 251 | int attr defaultValue 0x010101ed 252 | int attr defaultWidth 0x010104f4 253 | int attr delay 0x010101cc 254 | int attr dependency 0x010101ec 255 | int attr descendantFocusability 0x010100f1 256 | int attr description 0x01010020 257 | int attr detachWallpaper 0x010102a6 258 | int attr detailColumn 0x010102a3 259 | int attr detailSocialSummary 0x010102a4 260 | int attr detailsElementBackground 0x0101034e 261 | int attr dial 0x01010102 262 | int attr dialogIcon 0x010101f4 263 | int attr dialogLayout 0x010101f7 264 | int attr dialogMessage 0x010101f3 265 | int attr dialogPreferenceStyle 0x01010091 266 | int attr dialogPreferredPadding 0x010104d3 267 | int attr dialogTheme 0x01010308 268 | int attr dialogTitle 0x010101f2 269 | int attr digits 0x01010166 270 | int attr directBootAware 0x01010505 271 | int attr direction 0x010101d1 272 | int attr directionDescriptions 0x010103a1 273 | int attr directionPriority 0x010101d2 274 | int attr disableDependentsState 0x010101f1 275 | int attr disabledAlpha 0x01010033 276 | int attr displayOptions 0x010102d0 277 | int attr dither 0x0101011c 278 | int attr divider 0x01010129 279 | int attr dividerHeight 0x0101012a 280 | int attr dividerHorizontal 0x0101032c 281 | int attr dividerPadding 0x0101032a 282 | int attr dividerVertical 0x0101030a 283 | int attr documentLaunchMode 0x01010445 284 | int attr drawSelectorOnTop 0x010100fc 285 | int attr drawable 0x01010199 286 | int attr drawableBottom 0x0101016e 287 | int attr drawableEnd 0x01010393 288 | int attr drawableLeft 0x0101016f 289 | int attr drawablePadding 0x01010171 290 | int attr drawableRight 0x01010170 291 | int attr drawableStart 0x01010392 292 | int attr drawableTint 0x010104d6 293 | int attr drawableTintMode 0x010104d7 294 | int attr drawableTop 0x0101016d 295 | int attr drawingCacheQuality 0x010100e8 296 | int attr dropDownAnchor 0x01010263 297 | int attr dropDownHeight 0x01010283 298 | int attr dropDownHintAppearance 0x01010088 299 | int attr dropDownHorizontalOffset 0x010102ac 300 | int attr dropDownItemStyle 0x01010086 301 | int attr dropDownListViewStyle 0x0101006d 302 | int attr dropDownSelector 0x01010175 303 | int attr dropDownSpinnerStyle 0x010102d6 304 | int attr dropDownVerticalOffset 0x010102ad 305 | int attr dropDownWidth 0x01010262 306 | int attr duplicateParentState 0x010100e9 307 | int attr duration 0x01010198 308 | int attr editTextBackground 0x01010352 309 | int attr editTextColor 0x01010351 310 | int attr editTextPreferenceStyle 0x01010092 311 | int attr editTextStyle 0x0101006e 312 | int attr editable 0x0101016b 313 | int attr editorExtras 0x01010224 314 | int attr elegantTextHeight 0x0101045d 315 | int attr elevation 0x01010440 316 | int attr ellipsize 0x010100ab 317 | int attr ems 0x01010158 318 | int attr enableVrMode 0x01010525 319 | int attr enabled 0x0101000e 320 | int attr end 0x010104dc 321 | int attr endColor 0x0101019e 322 | int attr endX 0x01010512 323 | int attr endY 0x01010513 324 | int attr endYear 0x0101017d 325 | int attr enterFadeDuration 0x0101030c 326 | int attr entries 0x010100b2 327 | int attr entryValues 0x010101f8 328 | int attr eventsInterceptionEnabled 0x0101027d 329 | int attr excludeClass 0x01010442 330 | int attr excludeFromRecents 0x01010017 331 | int attr excludeId 0x01010441 332 | int attr excludeName 0x0101044e 333 | int attr exitFadeDuration 0x0101030d 334 | int attr expandableListPreferredChildIndicatorLeft 0x01010052 335 | int attr expandableListPreferredChildIndicatorRight 0x01010053 336 | int attr expandableListPreferredChildPaddingLeft 0x0101004f 337 | int attr expandableListPreferredItemIndicatorLeft 0x01010050 338 | int attr expandableListPreferredItemIndicatorRight 0x01010051 339 | int attr expandableListPreferredItemPaddingLeft 0x0101004e 340 | int attr expandableListViewStyle 0x0101006f 341 | int attr expandableListViewWhiteStyle 0x010102b6 342 | int attr exported 0x01010010 343 | int attr externalService 0x0101050e 344 | int attr extraTension 0x0101026b 345 | int attr extractNativeLibs 0x010104ea 346 | int attr factor 0x010101d3 347 | int attr fadeDuration 0x01010278 348 | int attr fadeEnabled 0x0101027e 349 | int attr fadeOffset 0x01010277 350 | int attr fadeScrollbars 0x010102aa 351 | int attr fadingEdge 0x010100df 352 | int attr fadingEdgeLength 0x010100e0 353 | int attr fadingMode 0x010103e1 354 | int attr fastScrollAlwaysVisible 0x01010335 355 | int attr fastScrollEnabled 0x01010226 356 | int attr fastScrollOverlayPosition 0x0101033a 357 | int attr fastScrollPreviewBackgroundLeft 0x01010337 358 | int attr fastScrollPreviewBackgroundRight 0x01010338 359 | int attr fastScrollStyle 0x010103f7 360 | int attr fastScrollTextColor 0x01010359 361 | int attr fastScrollThumbDrawable 0x01010336 362 | int attr fastScrollTrackDrawable 0x01010339 363 | int attr fillAfter 0x010101bd 364 | int attr fillAlpha 0x010104cc 365 | int attr fillBefore 0x010101bc 366 | int attr fillColor 0x01010404 367 | int attr fillEnabled 0x0101024f 368 | int attr fillType 0x0101051e 369 | int attr fillViewport 0x0101017a 370 | int attr filter 0x0101011b 371 | int attr filterTouchesWhenObscured 0x010102c4 372 | int attr fingerprintAuthDrawable 0x010104e8 373 | int attr finishOnCloseSystemDialogs 0x010102a7 374 | int attr finishOnTaskLaunch 0x01010014 375 | int attr firstDayOfWeek 0x0101033d 376 | int attr fitsSystemWindows 0x010100dd 377 | int attr flipInterval 0x01010179 378 | int attr focusable 0x010100da 379 | int attr focusableInTouchMode 0x010100db 380 | int attr focusedMonthDateColor 0x01010343 381 | int attr fontFamily 0x010103ac 382 | int attr fontFeatureSettings 0x010104b7 383 | int attr footerDividersEnabled 0x0101022f 384 | int attr forceHasOverlappingRendering 0x01010521 385 | int attr foreground 0x01010109 386 | int attr foregroundGravity 0x01010200 387 | int attr foregroundTint 0x0101046d 388 | int attr foregroundTintMode 0x0101046e 389 | int attr format 0x01010105 390 | int attr format12Hour 0x010103ca 391 | int attr format24Hour 0x010103cb 392 | int attr fraction 0x010104d8 393 | int attr fragment 0x010102e3 394 | int attr fragmentAllowEnterTransitionOverlap 0x010104c8 395 | int attr fragmentAllowReturnTransitionOverlap 0x010104c9 396 | int attr fragmentCloseEnterAnimation 0x010102e7 397 | int attr fragmentCloseExitAnimation 0x010102e8 398 | int attr fragmentEnterTransition 0x010104c3 399 | int attr fragmentExitTransition 0x010104c2 400 | int attr fragmentFadeEnterAnimation 0x010102e9 401 | int attr fragmentFadeExitAnimation 0x010102ea 402 | int attr fragmentOpenEnterAnimation 0x010102e5 403 | int attr fragmentOpenExitAnimation 0x010102e6 404 | int attr fragmentReenterTransition 0x010104c7 405 | int attr fragmentReturnTransition 0x010104c5 406 | int attr fragmentSharedElementEnterTransition 0x010104c4 407 | int attr fragmentSharedElementReturnTransition 0x010104c6 408 | int attr freezesText 0x0101016c 409 | int attr fromAlpha 0x010101ca 410 | int attr fromDegrees 0x010101b3 411 | int attr fromId 0x0101044a 412 | int attr fromScene 0x010103dd 413 | int attr fromXDelta 0x010101c6 414 | int attr fromXScale 0x010101c2 415 | int attr fromYDelta 0x010101c8 416 | int attr fromYScale 0x010101c4 417 | int attr fullBackupContent 0x010104eb 418 | int attr fullBackupOnly 0x01010473 419 | int attr fullBright 0x010100ca 420 | int attr fullDark 0x010100c6 421 | int attr functionalTest 0x01010023 422 | int attr galleryItemBackground 0x0101004c 423 | int attr galleryStyle 0x01010070 424 | int attr gestureColor 0x01010275 425 | int attr gestureStrokeAngleThreshold 0x0101027c 426 | int attr gestureStrokeLengthThreshold 0x0101027a 427 | int attr gestureStrokeSquarenessThreshold 0x0101027b 428 | int attr gestureStrokeType 0x01010279 429 | int attr gestureStrokeWidth 0x01010274 430 | int attr glEsVersion 0x01010281 431 | int attr goIcon 0x01010482 432 | int attr gradientRadius 0x010101a4 433 | int attr grantUriPermissions 0x0101001b 434 | int attr gravity 0x010100af 435 | int attr gridViewStyle 0x01010071 436 | int attr groupIndicator 0x0101010b 437 | int attr hand_hour 0x01010103 438 | int attr hand_minute 0x01010104 439 | int attr handle 0x0101025a 440 | int attr handleProfiling 0x01010022 441 | int attr hapticFeedbackEnabled 0x0101025e 442 | int attr hardwareAccelerated 0x010102d3 443 | int attr hasCode 0x0101000c 444 | int attr headerAmPmTextAppearance 0x010104a0 445 | int attr headerBackground 0x0101012f 446 | int attr headerDayOfMonthTextAppearance 0x01010497 447 | int attr headerDividersEnabled 0x0101022e 448 | int attr headerMonthTextAppearance 0x01010496 449 | int attr headerTimeTextAppearance 0x0101049f 450 | int attr headerYearTextAppearance 0x01010498 451 | int attr height 0x01010155 452 | int attr hideOnContentScroll 0x01010443 453 | int attr hint 0x01010150 454 | int attr homeAsUpIndicator 0x0101030b 455 | int attr homeLayout 0x0101031d 456 | int attr horizontalDivider 0x0101012d 457 | int attr horizontalGap 0x0101023f 458 | int attr horizontalScrollViewStyle 0x01010353 459 | int attr horizontalSpacing 0x01010114 460 | int attr host 0x01010028 461 | int attr hotSpotX 0x01010517 462 | int attr hotSpotY 0x01010518 463 | int attr hyphenationFrequency 0x010104de 464 | int attr icon 0x01010002 465 | int attr iconPreview 0x01010249 466 | int attr iconifiedByDefault 0x010102fa 467 | int attr id 0x010100d0 468 | int attr ignoreGravity 0x010101ff 469 | int attr imageButtonStyle 0x01010072 470 | int attr imageWellStyle 0x01010073 471 | int attr imeActionId 0x01010266 472 | int attr imeActionLabel 0x01010265 473 | int attr imeExtractEnterAnimation 0x01010268 474 | int attr imeExtractExitAnimation 0x01010269 475 | int attr imeFullscreenBackground 0x0101022c 476 | int attr imeOptions 0x01010264 477 | int attr imeSubtypeExtraValue 0x010102ee 478 | int attr imeSubtypeLocale 0x010102ec 479 | int attr imeSubtypeMode 0x010102ed 480 | int attr immersive 0x010102c0 481 | int attr importantForAccessibility 0x010103aa 482 | int attr inAnimation 0x01010177 483 | int attr includeFontPadding 0x0101015f 484 | int attr includeInGlobalSearch 0x0101026e 485 | int attr indeterminate 0x01010139 486 | int attr indeterminateBehavior 0x0101013e 487 | int attr indeterminateDrawable 0x0101013b 488 | int attr indeterminateDuration 0x0101013d 489 | int attr indeterminateOnly 0x0101013a 490 | int attr indeterminateProgressStyle 0x01010318 491 | int attr indeterminateTint 0x01010469 492 | int attr indeterminateTintMode 0x0101046a 493 | int attr indicatorEnd 0x010103d2 494 | int attr indicatorLeft 0x0101010d 495 | int attr indicatorRight 0x0101010e 496 | int attr indicatorStart 0x010103d1 497 | int attr inflatedId 0x010100f3 498 | int attr initOrder 0x0101001a 499 | int attr initialKeyguardLayout 0x010103c2 500 | int attr initialLayout 0x01010251 501 | int attr innerRadius 0x0101025f 502 | int attr innerRadiusRatio 0x0101019b 503 | int attr inputMethod 0x01010168 504 | int attr inputType 0x01010220 505 | int attr inset 0x010104b5 506 | int attr insetBottom 0x010101ba 507 | int attr insetLeft 0x010101b7 508 | int attr insetRight 0x010101b8 509 | int attr insetTop 0x010101b9 510 | int attr installLocation 0x010102b7 511 | int attr interpolator 0x01010141 512 | int attr isAlwaysSyncable 0x01010333 513 | int attr isAsciiCapable 0x010103e9 514 | int attr isAuxiliary 0x0101037f 515 | int attr isDefault 0x01010221 516 | int attr isGame 0x010103f4 517 | int attr isIndicator 0x01010147 518 | int attr isModifier 0x01010246 519 | int attr isRepeatable 0x01010248 520 | int attr isScrollContainer 0x0101024e 521 | int attr isSticky 0x01010247 522 | int attr isolatedProcess 0x010103a9 523 | int attr itemBackground 0x01010130 524 | int attr itemIconDisabledAlpha 0x01010131 525 | int attr itemPadding 0x0101032d 526 | int attr itemTextAppearance 0x0101012c 527 | int attr keepScreenOn 0x01010216 528 | int attr key 0x010101e8 529 | int attr keyBackground 0x01010233 530 | int attr keyEdgeFlags 0x01010245 531 | int attr keyHeight 0x0101023e 532 | int attr keyIcon 0x0101024c 533 | int attr keyLabel 0x0101024b 534 | int attr keyOutputText 0x0101024a 535 | int attr keyPreviewHeight 0x01010239 536 | int attr keyPreviewLayout 0x01010237 537 | int attr keyPreviewOffset 0x01010238 538 | int attr keySet 0x010103db 539 | int attr keyTextColor 0x01010236 540 | int attr keyTextSize 0x01010234 541 | int attr keyWidth 0x0101023d 542 | int attr keyboardLayout 0x010103ab 543 | int attr keyboardMode 0x0101024d 544 | int attr keycode 0x010100c5 545 | int attr killAfterRestore 0x0101029c 546 | int attr label 0x01010001 547 | int attr labelFor 0x010103c6 548 | int attr labelTextSize 0x01010235 549 | int attr languageTag 0x01010508 550 | int attr largeHeap 0x0101035a 551 | int attr largeScreens 0x01010286 552 | int attr largestWidthLimitDp 0x01010366 553 | int attr launchMode 0x0101001d 554 | int attr launchTaskBehindSourceAnimation 0x01010492 555 | int attr launchTaskBehindTargetAnimation 0x01010491 556 | int attr layerType 0x01010354 557 | int attr layout 0x010100f2 558 | int attr layoutAnimation 0x010100ec 559 | int attr layoutDirection 0x010103b2 560 | int attr layoutMode 0x010103da 561 | int attr layout_above 0x01010184 562 | int attr layout_alignBaseline 0x01010186 563 | int attr layout_alignBottom 0x0101018a 564 | int attr layout_alignEnd 0x010103ba 565 | int attr layout_alignLeft 0x01010187 566 | int attr layout_alignParentBottom 0x0101018e 567 | int attr layout_alignParentEnd 0x010103bc 568 | int attr layout_alignParentLeft 0x0101018b 569 | int attr layout_alignParentRight 0x0101018d 570 | int attr layout_alignParentStart 0x010103bb 571 | int attr layout_alignParentTop 0x0101018c 572 | int attr layout_alignRight 0x01010189 573 | int attr layout_alignStart 0x010103b9 574 | int attr layout_alignTop 0x01010188 575 | int attr layout_alignWithParentIfMissing 0x01010192 576 | int attr layout_below 0x01010185 577 | int attr layout_centerHorizontal 0x01010190 578 | int attr layout_centerInParent 0x0101018f 579 | int attr layout_centerVertical 0x01010191 580 | int attr layout_column 0x0101014c 581 | int attr layout_columnSpan 0x0101037d 582 | int attr layout_columnWeight 0x01010459 583 | int attr layout_gravity 0x010100b3 584 | int attr layout_height 0x010100f5 585 | int attr layout_margin 0x010100f6 586 | int attr layout_marginBottom 0x010100fa 587 | int attr layout_marginEnd 0x010103b6 588 | int attr layout_marginLeft 0x010100f7 589 | int attr layout_marginRight 0x010100f9 590 | int attr layout_marginStart 0x010103b5 591 | int attr layout_marginTop 0x010100f8 592 | int attr layout_row 0x0101037b 593 | int attr layout_rowSpan 0x0101037c 594 | int attr layout_rowWeight 0x01010458 595 | int attr layout_scale 0x01010193 596 | int attr layout_span 0x0101014d 597 | int attr layout_toEndOf 0x010103b8 598 | int attr layout_toLeftOf 0x01010182 599 | int attr layout_toRightOf 0x01010183 600 | int attr layout_toStartOf 0x010103b7 601 | int attr layout_weight 0x01010181 602 | int attr layout_width 0x010100f4 603 | int attr layout_x 0x0101017f 604 | int attr layout_y 0x01010180 605 | int attr left 0x010101ad 606 | int attr letterSpacing 0x010104b6 607 | int attr level 0x01010500 608 | int attr lineSpacingExtra 0x01010217 609 | int attr lineSpacingMultiplier 0x01010218 610 | int attr lines 0x01010154 611 | int attr linksClickable 0x010100b1 612 | int attr listChoiceBackgroundIndicator 0x010102f0 613 | int attr listChoiceIndicatorMultiple 0x0101021a 614 | int attr listChoiceIndicatorSingle 0x01010219 615 | int attr listDivider 0x01010214 616 | int attr listDividerAlertDialog 0x01010305 617 | int attr listMenuViewStyle 0x010104f2 618 | int attr listPopupWindowStyle 0x010102ff 619 | int attr listPreferredItemHeight 0x0101004d 620 | int attr listPreferredItemHeightLarge 0x01010386 621 | int attr listPreferredItemHeightSmall 0x01010387 622 | int attr listPreferredItemPaddingEnd 0x010103be 623 | int attr listPreferredItemPaddingLeft 0x010103a3 624 | int attr listPreferredItemPaddingRight 0x010103a4 625 | int attr listPreferredItemPaddingStart 0x010103bd 626 | int attr listSelector 0x010100fb 627 | int attr listSeparatorTextViewStyle 0x01010208 628 | int attr listViewStyle 0x01010074 629 | int attr listViewWhiteStyle 0x01010075 630 | int attr lockTaskMode 0x010104ed 631 | int attr logo 0x010102be 632 | int attr logoDescription 0x010104e9 633 | int attr longClickable 0x010100e6 634 | int attr loopViews 0x01010307 635 | int attr manageSpaceActivity 0x01010004 636 | int attr mapViewStyle 0x0101008a 637 | int attr marqueeRepeatLimit 0x0101021d 638 | int attr matchOrder 0x0101044f 639 | int attr max 0x01010136 640 | int attr maxButtonHeight 0x010104fd 641 | int attr maxDate 0x01010340 642 | int attr maxEms 0x01010157 643 | int attr maxHeight 0x01010120 644 | int attr maxItemsPerRow 0x01010134 645 | int attr maxLength 0x01010160 646 | int attr maxLevel 0x010101b2 647 | int attr maxLines 0x01010153 648 | int attr maxRecents 0x01010446 649 | int attr maxRows 0x01010133 650 | int attr maxSdkVersion 0x01010271 651 | int attr maxWidth 0x0101011f 652 | int attr maximumAngle 0x0101047f 653 | int attr measureAllChildren 0x0101010a 654 | int attr measureWithLargestChild 0x010102d4 655 | int attr mediaRouteButtonStyle 0x010103ad 656 | int attr mediaRouteTypes 0x010103ae 657 | int attr menuCategory 0x010101de 658 | int attr mimeType 0x01010026 659 | int attr minDate 0x0101033f 660 | int attr minEms 0x0101015a 661 | int attr minHeight 0x01010140 662 | int attr minLevel 0x010101b1 663 | int attr minLines 0x01010156 664 | int attr minResizeHeight 0x01010396 665 | int attr minResizeWidth 0x01010395 666 | int attr minSdkVersion 0x0101020c 667 | int attr minWidth 0x0101013f 668 | int attr minimumHorizontalAngle 0x0101047d 669 | int attr minimumVerticalAngle 0x0101047e 670 | int attr mipMap 0x010103cd 671 | int attr mirrorForRtl 0x010103ce 672 | int attr mode 0x0101017e 673 | int attr moreIcon 0x01010135 674 | int attr multiArch 0x0101048e 675 | int attr multiprocess 0x01010013 676 | int attr name 0x01010003 677 | int attr navigationBarColor 0x01010452 678 | int attr navigationContentDescription 0x010104c1 679 | int attr navigationIcon 0x010104c0 680 | int attr navigationMode 0x010102cf 681 | int attr negativeButtonText 0x010101f6 682 | int attr nestedScrollingEnabled 0x01010436 683 | int attr networkSecurityConfig 0x01010527 684 | int attr nextFocusDown 0x010100e4 685 | int attr nextFocusForward 0x0101033c 686 | int attr nextFocusLeft 0x010100e1 687 | int attr nextFocusRight 0x010100e2 688 | int attr nextFocusUp 0x010100e3 689 | int attr noHistory 0x0101022d 690 | int attr normalScreens 0x01010285 691 | int attr notificationTimeout 0x01010383 692 | int attr numColumns 0x01010118 693 | int attr numStars 0x01010144 694 | int attr numberPickerStyle 0x01010524 695 | int attr numbersBackgroundColor 0x010104a2 696 | int attr numbersInnerTextColor 0x010104e1 697 | int attr numbersSelectorColor 0x010104a3 698 | int attr numbersTextColor 0x010104a1 699 | int attr numeric 0x01010165 700 | int attr numericShortcut 0x010101e4 701 | int attr offset 0x01010514 702 | int attr onClick 0x0101026f 703 | int attr oneshot 0x01010197 704 | int attr opacity 0x0101031e 705 | int attr order 0x010101ea 706 | int attr orderInCategory 0x010101df 707 | int attr ordering 0x010102e2 708 | int attr orderingFromXml 0x010101e7 709 | int attr orientation 0x010100c4 710 | int attr outAnimation 0x01010178 711 | int attr outlineProvider 0x010104b8 712 | int attr overScrollFooter 0x010102c3 713 | int attr overScrollHeader 0x010102c2 714 | int attr overScrollMode 0x010102c1 715 | int attr overlapAnchor 0x01010462 716 | int attr overridesImplicitlyEnabledSubtype 0x010103a2 717 | int attr packageNames 0x01010381 718 | int attr padding 0x010100d5 719 | int attr paddingBottom 0x010100d9 720 | int attr paddingEnd 0x010103b4 721 | int attr paddingLeft 0x010100d6 722 | int attr paddingMode 0x01010457 723 | int attr paddingRight 0x010100d8 724 | int attr paddingStart 0x010103b3 725 | int attr paddingTop 0x010100d7 726 | int attr panelBackground 0x0101005e 727 | int attr panelColorBackground 0x01010061 728 | int attr panelColorForeground 0x01010060 729 | int attr panelFullBackground 0x0101005f 730 | int attr panelTextAppearance 0x01010062 731 | int attr parentActivityName 0x010103a7 732 | int attr password 0x0101015c 733 | int attr path 0x0101002a 734 | int attr pathData 0x01010405 735 | int attr pathPattern 0x0101002c 736 | int attr pathPrefix 0x0101002b 737 | int attr patternPathData 0x010104ca 738 | int attr permission 0x01010006 739 | int attr permissionFlags 0x010103c7 740 | int attr permissionGroup 0x0101000a 741 | int attr permissionGroupFlags 0x010103c5 742 | int attr persistableMode 0x0101042d 743 | int attr persistent 0x0101000d 744 | int attr persistentDrawingCache 0x010100ee 745 | int attr phoneNumber 0x01010167 746 | int attr pivotX 0x010101b5 747 | int attr pivotY 0x010101b6 748 | int attr pointerIcon 0x01010509 749 | int attr popupAnimationStyle 0x010102c9 750 | int attr popupBackground 0x01010176 751 | int attr popupCharacters 0x01010244 752 | int attr popupElevation 0x0101048c 753 | int attr popupEnterTransition 0x0101051f 754 | int attr popupExitTransition 0x01010520 755 | int attr popupKeyboard 0x01010243 756 | int attr popupLayout 0x0101023b 757 | int attr popupMenuStyle 0x01010300 758 | int attr popupTheme 0x010104a9 759 | int attr popupWindowStyle 0x01010076 760 | int attr port 0x01010029 761 | int attr positiveButtonText 0x010101f5 762 | int attr preferenceCategoryStyle 0x0101008c 763 | int attr preferenceFragmentStyle 0x01010506 764 | int attr preferenceInformationStyle 0x0101008d 765 | int attr preferenceLayoutChild 0x01010094 766 | int attr preferenceScreenStyle 0x0101008b 767 | int attr preferenceStyle 0x0101008e 768 | int attr presentationTheme 0x010103c0 769 | int attr previewImage 0x010102da 770 | int attr priority 0x0101001c 771 | int attr privateImeOptions 0x01010223 772 | int attr process 0x01010011 773 | int attr progress 0x01010137 774 | int attr progressBackgroundTint 0x01010465 775 | int attr progressBackgroundTintMode 0x01010466 776 | int attr progressBarPadding 0x01010319 777 | int attr progressBarStyle 0x01010077 778 | int attr progressBarStyleHorizontal 0x01010078 779 | int attr progressBarStyleInverse 0x01010287 780 | int attr progressBarStyleLarge 0x0101007a 781 | int attr progressBarStyleLargeInverse 0x01010289 782 | int attr progressBarStyleSmall 0x01010079 783 | int attr progressBarStyleSmallInverse 0x01010288 784 | int attr progressBarStyleSmallTitle 0x0101020f 785 | int attr progressDrawable 0x0101013c 786 | int attr progressTint 0x01010463 787 | int attr progressTintMode 0x01010464 788 | int attr prompt 0x0101017b 789 | int attr propertyName 0x010102e1 790 | int attr propertyXName 0x01010474 791 | int attr propertyYName 0x01010475 792 | int attr protectionLevel 0x01010009 793 | int attr publicKey 0x010103a6 794 | int attr queryActionMsg 0x010101db 795 | int attr queryAfterZeroResults 0x01010282 796 | int attr queryBackground 0x01010487 797 | int attr queryHint 0x01010358 798 | int attr quickContactBadgeStyleSmallWindowLarge 0x010102b3 799 | int attr quickContactBadgeStyleSmallWindowMedium 0x010102b2 800 | int attr quickContactBadgeStyleSmallWindowSmall 0x010102b1 801 | int attr quickContactBadgeStyleWindowLarge 0x010102b0 802 | int attr quickContactBadgeStyleWindowMedium 0x010102af 803 | int attr quickContactBadgeStyleWindowSmall 0x010102ae 804 | int attr radioButtonStyle 0x0101007e 805 | int attr radius 0x010101a8 806 | int attr rating 0x01010145 807 | int attr ratingBarStyle 0x0101007c 808 | int attr ratingBarStyleIndicator 0x01010210 809 | int attr ratingBarStyleSmall 0x0101007d 810 | int attr readPermission 0x01010007 811 | int attr recognitionService 0x0101049c 812 | int attr relinquishTaskIdentity 0x01010476 813 | int attr reparent 0x010104bc 814 | int attr reparentWithOverlay 0x010104bd 815 | int attr repeatCount 0x010101bf 816 | int attr repeatMode 0x010101c0 817 | int attr reqFiveWayNav 0x01010232 818 | int attr reqHardKeyboard 0x01010229 819 | int attr reqKeyboardType 0x01010228 820 | int attr reqNavigation 0x0101022a 821 | int attr reqTouchScreen 0x01010227 822 | int attr requireDeviceUnlock 0x010103ec 823 | int attr required 0x0101028e 824 | int attr requiredAccountType 0x010103d6 825 | int attr requiredForAllUsers 0x010103d0 826 | int attr requiresFadingEdge 0x010103a5 827 | int attr requiresSmallestWidthDp 0x01010364 828 | int attr resizeClip 0x010104cf 829 | int attr resizeMode 0x01010363 830 | int attr resizeable 0x0101028d 831 | int attr resizeableActivity 0x010104f6 832 | int attr resource 0x01010025 833 | int attr restoreAnyVersion 0x010102ba 834 | int attr restoreNeedsApplication 0x0101029d 835 | int attr restrictedAccountType 0x010103d5 836 | int attr restrictionType 0x01010493 837 | int attr resumeWhilePausing 0x010104b2 838 | int attr reversible 0x0101044b 839 | int attr revisionCode 0x010104d5 840 | int attr right 0x010101af 841 | int attr ringtonePreferenceStyle 0x01010093 842 | int attr ringtoneType 0x010101f9 843 | int attr rotation 0x01010326 844 | int attr rotationX 0x01010327 845 | int attr rotationY 0x01010328 846 | int attr roundIcon 0x0101052c 847 | int attr rowCount 0x01010375 848 | int attr rowDelay 0x010101d0 849 | int attr rowEdgeFlags 0x01010241 850 | int attr rowHeight 0x01010132 851 | int attr rowOrderPreserved 0x01010376 852 | int attr saveEnabled 0x010100e7 853 | int attr scaleGravity 0x010101fe 854 | int attr scaleHeight 0x010101fd 855 | int attr scaleType 0x0101011d 856 | int attr scaleWidth 0x010101fc 857 | int attr scaleX 0x01010324 858 | int attr scaleY 0x01010325 859 | int attr scheme 0x01010027 860 | int attr screenDensity 0x010102cb 861 | int attr screenOrientation 0x0101001e 862 | int attr screenSize 0x010102ca 863 | int attr scrollHorizontally 0x0101015b 864 | int attr scrollIndicators 0x010104e6 865 | int attr scrollViewStyle 0x01010080 866 | int attr scrollX 0x010100d2 867 | int attr scrollY 0x010100d3 868 | int attr scrollbarAlwaysDrawHorizontalTrack 0x01010068 869 | int attr scrollbarAlwaysDrawVerticalTrack 0x01010069 870 | int attr scrollbarDefaultDelayBeforeFade 0x010102a9 871 | int attr scrollbarFadeDuration 0x010102a8 872 | int attr scrollbarSize 0x01010063 873 | int attr scrollbarStyle 0x0101007f 874 | int attr scrollbarThumbHorizontal 0x01010064 875 | int attr scrollbarThumbVertical 0x01010065 876 | int attr scrollbarTrackHorizontal 0x01010066 877 | int attr scrollbarTrackVertical 0x01010067 878 | int attr scrollbars 0x010100de 879 | int attr scrollingCache 0x010100fe 880 | int attr searchButtonText 0x01010205 881 | int attr searchHintIcon 0x010104d4 882 | int attr searchIcon 0x01010483 883 | int attr searchMode 0x010101d5 884 | int attr searchSettingsDescription 0x0101028a 885 | int attr searchSuggestAuthority 0x010101d6 886 | int attr searchSuggestIntentAction 0x010101d9 887 | int attr searchSuggestIntentData 0x010101da 888 | int attr searchSuggestPath 0x010101d7 889 | int attr searchSuggestSelection 0x010101d8 890 | int attr searchSuggestThreshold 0x0101026d 891 | int attr searchViewStyle 0x01010480 892 | int attr secondaryProgress 0x01010138 893 | int attr secondaryProgressTint 0x01010467 894 | int attr secondaryProgressTintMode 0x01010468 895 | int attr seekBarStyle 0x0101007b 896 | int attr segmentedButtonStyle 0x01010330 897 | int attr selectAllOnFocus 0x0101015e 898 | int attr selectable 0x010101e6 899 | int attr selectableItemBackground 0x0101030e 900 | int attr selectableItemBackgroundBorderless 0x0101045c 901 | int attr selectedDateVerticalBar 0x01010347 902 | int attr selectedWeekBackgroundColor 0x01010342 903 | int attr sessionService 0x0101043d 904 | int attr settingsActivity 0x01010225 905 | int attr setupActivity 0x010103f6 906 | int attr shadowColor 0x01010161 907 | int attr shadowDx 0x01010162 908 | int attr shadowDy 0x01010163 909 | int attr shadowRadius 0x01010164 910 | int attr shape 0x0101019a 911 | int attr shareInterpolator 0x010101bb 912 | int attr sharedUserId 0x0101000b 913 | int attr sharedUserLabel 0x01010261 914 | int attr shortcutDisabledMessage 0x0101052b 915 | int attr shortcutId 0x01010528 916 | int attr shortcutLongLabel 0x0101052a 917 | int attr shortcutShortLabel 0x01010529 918 | int attr shouldDisableView 0x010101ee 919 | int attr showAsAction 0x010102d9 920 | int attr showDefault 0x010101fa 921 | int attr showDividers 0x01010329 922 | int attr showForAllUsers 0x010104ef 923 | int attr showMetadataInPreview 0x0101052f 924 | int attr showOnLockScreen 0x010103c9 925 | int attr showSilent 0x010101fb 926 | int attr showText 0x010104ad 927 | int attr showWeekNumber 0x0101033e 928 | int attr shownWeekCount 0x01010341 929 | int attr shrinkColumns 0x0101014a 930 | int attr singleLine 0x0101015d 931 | int attr singleUser 0x010103bf 932 | int attr slideEdge 0x01010430 933 | int attr smallIcon 0x0101029e 934 | int attr smallScreens 0x01010284 935 | int attr smoothScrollbar 0x01010231 936 | int attr soundEffectsEnabled 0x01010215 937 | int attr spacing 0x01010113 938 | int attr spinnerDropDownItemStyle 0x01010087 939 | int attr spinnerItemStyle 0x01010089 940 | int attr spinnerMode 0x010102f1 941 | int attr spinnerStyle 0x01010081 942 | int attr spinnersShown 0x0101034b 943 | int attr splitMotionEvents 0x010102ef 944 | int attr splitTrack 0x0101044c 945 | int attr spotShadowAlpha 0x010104bf 946 | int attr src 0x01010119 947 | int attr ssp 0x010103e3 948 | int attr sspPattern 0x010103e5 949 | int attr sspPrefix 0x010103e4 950 | int attr stackFromBottom 0x010100fd 951 | int attr stackViewStyle 0x0101043e 952 | int attr starStyle 0x01010082 953 | int attr start 0x010104db 954 | int attr startColor 0x0101019d 955 | int attr startDelay 0x010103e2 956 | int attr startOffset 0x010101be 957 | int attr startX 0x01010510 958 | int attr startY 0x01010511 959 | int attr startYear 0x0101017c 960 | int attr stateListAnimator 0x01010448 961 | int attr stateNotNeeded 0x01010016 962 | int attr state_above_anchor 0x010100aa 963 | int attr state_accelerated 0x0101031b 964 | int attr state_activated 0x010102fe 965 | int attr state_active 0x010100a2 966 | int attr state_checkable 0x0101009f 967 | int attr state_checked 0x010100a0 968 | int attr state_drag_can_accept 0x01010368 969 | int attr state_drag_hovered 0x01010369 970 | int attr state_empty 0x010100a9 971 | int attr state_enabled 0x0101009e 972 | int attr state_expanded 0x010100a8 973 | int attr state_first 0x010100a4 974 | int attr state_focused 0x0101009c 975 | int attr state_hovered 0x01010367 976 | int attr state_last 0x010100a6 977 | int attr state_long_pressable 0x0101023c 978 | int attr state_middle 0x010100a5 979 | int attr state_multiline 0x0101034d 980 | int attr state_pressed 0x010100a7 981 | int attr state_selected 0x010100a1 982 | int attr state_single 0x010100a3 983 | int attr state_window_focused 0x0101009d 984 | int attr staticWallpaperPreview 0x01010331 985 | int attr statusBarColor 0x01010451 986 | int attr stepSize 0x01010146 987 | int attr stopWithTask 0x0101036a 988 | int attr streamType 0x01010209 989 | int attr stretchColumns 0x01010149 990 | int attr stretchMode 0x01010116 991 | int attr strokeAlpha 0x010104cb 992 | int attr strokeColor 0x01010406 993 | int attr strokeLineCap 0x0101040b 994 | int attr strokeLineJoin 0x0101040c 995 | int attr strokeMiterLimit 0x0101040d 996 | int attr strokeWidth 0x01010407 997 | int attr subMenuArrow 0x010104f3 998 | int attr submitBackground 0x01010488 999 | int attr subtitle 0x010102d1 1000 | int attr subtitleTextAppearance 0x0101042f 1001 | int attr subtitleTextColor 0x010104e4 1002 | int attr subtitleTextStyle 0x010102f9 1003 | int attr subtypeExtraValue 0x0101039a 1004 | int attr subtypeId 0x010103c1 1005 | int attr subtypeLocale 0x01010399 1006 | int attr suggestActionMsg 0x010101dc 1007 | int attr suggestActionMsgColumn 0x010101dd 1008 | int attr suggestionRowLayout 0x01010486 1009 | int attr summary 0x010101e9 1010 | int attr summaryColumn 0x010102a2 1011 | int attr summaryOff 0x010101f0 1012 | int attr summaryOn 0x010101ef 1013 | int attr supportsAssist 0x010104f0 1014 | int attr supportsLaunchVoiceAssistFromKeyguard 0x010104f1 1015 | int attr supportsLocalInteraction 0x0101050f 1016 | int attr supportsPictureInPicture 0x010104f7 1017 | int attr supportsRtl 0x010103af 1018 | int attr supportsSwitchingToNextInputMethod 0x010103eb 1019 | int attr supportsUploading 0x0101029b 1020 | int attr switchMinWidth 0x01010370 1021 | int attr switchPadding 0x01010371 1022 | int attr switchPreferenceStyle 0x0101036d 1023 | int attr switchStyle 0x0101043f 1024 | int attr switchTextAppearance 0x0101036e 1025 | int attr switchTextOff 0x0101036c 1026 | int attr switchTextOn 0x0101036b 1027 | int attr syncable 0x01010019 1028 | int attr tabStripEnabled 0x010102bd 1029 | int attr tabStripLeft 0x010102bb 1030 | int attr tabStripRight 0x010102bc 1031 | int attr tabWidgetStyle 0x01010083 1032 | int attr tag 0x010100d1 1033 | int attr targetActivity 0x01010202 1034 | int attr targetClass 0x0101002f 1035 | int attr targetDescriptions 0x010103a0 1036 | int attr targetId 0x010103dc 1037 | int attr targetName 0x0101044d 1038 | int attr targetPackage 0x01010021 1039 | int attr targetSdkVersion 0x01010270 1040 | int attr taskAffinity 0x01010012 1041 | int attr taskCloseEnterAnimation 0x010100be 1042 | int attr taskCloseExitAnimation 0x010100bf 1043 | int attr taskOpenEnterAnimation 0x010100bc 1044 | int attr taskOpenExitAnimation 0x010100bd 1045 | int attr taskToBackEnterAnimation 0x010100c2 1046 | int attr taskToBackExitAnimation 0x010100c3 1047 | int attr taskToFrontEnterAnimation 0x010100c0 1048 | int attr taskToFrontExitAnimation 0x010100c1 1049 | int attr tension 0x0101026a 1050 | int attr testOnly 0x01010272 1051 | int attr text 0x0101014f 1052 | int attr textAlignment 0x010103b1 1053 | int attr textAllCaps 0x0101038c 1054 | int attr textAppearance 0x01010034 1055 | int attr textAppearanceButton 0x01010207 1056 | int attr textAppearanceInverse 0x01010035 1057 | int attr textAppearanceLarge 0x01010040 1058 | int attr textAppearanceLargeInverse 0x01010043 1059 | int attr textAppearanceLargePopupMenu 0x01010301 1060 | int attr textAppearanceListItem 0x0101039e 1061 | int attr textAppearanceListItemSecondary 0x01010432 1062 | int attr textAppearanceListItemSmall 0x0101039f 1063 | int attr textAppearanceMedium 0x01010041 1064 | int attr textAppearanceMediumInverse 0x01010044 1065 | int attr textAppearancePopupMenuHeader 0x01010502 1066 | int attr textAppearanceSearchResultSubtitle 0x010102a0 1067 | int attr textAppearanceSearchResultTitle 0x010102a1 1068 | int attr textAppearanceSmall 0x01010042 1069 | int attr textAppearanceSmallInverse 0x01010045 1070 | int attr textAppearanceSmallPopupMenu 0x01010302 1071 | int attr textCheckMark 0x01010046 1072 | int attr textCheckMarkInverse 0x01010047 1073 | int attr textColor 0x01010098 1074 | int attr textColorAlertDialogListItem 0x01010306 1075 | int attr textColorHighlight 0x01010099 1076 | int attr textColorHighlightInverse 0x0101034f 1077 | int attr textColorHint 0x0101009a 1078 | int attr textColorHintInverse 0x0101003f 1079 | int attr textColorLink 0x0101009b 1080 | int attr textColorLinkInverse 0x01010350 1081 | int attr textColorPrimary 0x01010036 1082 | int attr textColorPrimaryDisableOnly 0x01010037 1083 | int attr textColorPrimaryInverse 0x01010039 1084 | int attr textColorPrimaryInverseDisableOnly 0x0101028b 1085 | int attr textColorPrimaryInverseNoDisable 0x0101003d 1086 | int attr textColorPrimaryNoDisable 0x0101003b 1087 | int attr textColorSecondary 0x01010038 1088 | int attr textColorSecondaryInverse 0x0101003a 1089 | int attr textColorSecondaryInverseNoDisable 0x0101003e 1090 | int attr textColorSecondaryNoDisable 0x0101003c 1091 | int attr textColorTertiary 0x01010212 1092 | int attr textColorTertiaryInverse 0x01010213 1093 | int attr textCursorDrawable 0x01010362 1094 | int attr textDirection 0x010103b0 1095 | int attr textEditNoPasteWindowLayout 0x01010315 1096 | int attr textEditPasteWindowLayout 0x01010314 1097 | int attr textEditSideNoPasteWindowLayout 0x0101035f 1098 | int attr textEditSidePasteWindowLayout 0x0101035e 1099 | int attr textEditSuggestionItemLayout 0x01010374 1100 | int attr textFilterEnabled 0x010100ff 1101 | int attr textIsSelectable 0x01010316 1102 | int attr textOff 0x01010125 1103 | int attr textOn 0x01010124 1104 | int attr textScaleX 0x01010151 1105 | int attr textSelectHandle 0x010102c7 1106 | int attr textSelectHandleLeft 0x010102c5 1107 | int attr textSelectHandleRight 0x010102c6 1108 | int attr textSelectHandleWindowStyle 0x010102c8 1109 | int attr textSize 0x01010095 1110 | int attr textStyle 0x01010097 1111 | int attr textSuggestionsWindowStyle 0x01010373 1112 | int attr textViewStyle 0x01010084 1113 | int attr theme 0x01010000 1114 | int attr thickness 0x01010260 1115 | int attr thicknessRatio 0x0101019c 1116 | int attr thumb 0x01010142 1117 | int attr thumbOffset 0x01010143 1118 | int attr thumbPosition 0x010104e5 1119 | int attr thumbTextPadding 0x01010372 1120 | int attr thumbTint 0x01010471 1121 | int attr thumbTintMode 0x01010472 1122 | int attr thumbnail 0x010102a5 1123 | int attr tickMark 0x0101050a 1124 | int attr tickMarkTint 0x0101050b 1125 | int attr tickMarkTintMode 0x0101050c 1126 | int attr tileMode 0x01010201 1127 | int attr tileModeX 0x01010477 1128 | int attr tileModeY 0x01010478 1129 | int attr timePickerDialogTheme 0x0101049e 1130 | int attr timePickerMode 0x010104b4 1131 | int attr timePickerStyle 0x0101049d 1132 | int attr timeZone 0x010103cc 1133 | int attr tint 0x01010121 1134 | int attr tintMode 0x010103fb 1135 | int attr title 0x010101e1 1136 | int attr titleCondensed 0x010101e2 1137 | int attr titleMargin 0x010104f8 1138 | int attr titleMarginBottom 0x010104fc 1139 | int attr titleMarginEnd 0x010104fa 1140 | int attr titleMarginStart 0x010104f9 1141 | int attr titleMarginTop 0x010104fb 1142 | int attr titleTextAppearance 0x0101042e 1143 | int attr titleTextColor 0x010104e3 1144 | int attr titleTextStyle 0x010102f8 1145 | int attr toAlpha 0x010101cb 1146 | int attr toDegrees 0x010101b4 1147 | int attr toId 0x01010449 1148 | int attr toScene 0x010103de 1149 | int attr toXDelta 0x010101c7 1150 | int attr toXScale 0x010101c3 1151 | int attr toYDelta 0x010101c9 1152 | int attr toYScale 0x010101c5 1153 | int attr toolbarStyle 0x010104aa 1154 | int attr top 0x010101ae 1155 | int attr topBright 0x010100cb 1156 | int attr topDark 0x010100c7 1157 | int attr topLeftRadius 0x010101a9 1158 | int attr topOffset 0x01010258 1159 | int attr topRightRadius 0x010101aa 1160 | int attr touchscreenBlocksFocus 0x0101048f 1161 | int attr track 0x0101036f 1162 | int attr trackTint 0x010104d9 1163 | int attr trackTintMode 0x010104da 1164 | int attr transcriptMode 0x01010100 1165 | int attr transformPivotX 0x01010320 1166 | int attr transformPivotY 0x01010321 1167 | int attr transition 0x010103df 1168 | int attr transitionGroup 0x01010401 1169 | int attr transitionName 0x01010400 1170 | int attr transitionOrdering 0x010103e0 1171 | int attr transitionVisibilityMode 0x0101047c 1172 | int attr translateX 0x0101045a 1173 | int attr translateY 0x0101045b 1174 | int attr translationX 0x01010322 1175 | int attr translationY 0x01010323 1176 | int attr translationZ 0x010103fa 1177 | int attr trimPathEnd 0x01010409 1178 | int attr trimPathOffset 0x0101040a 1179 | int attr trimPathStart 0x01010408 1180 | int attr tunerCount 0x0101051d 1181 | int attr type 0x010101a1 1182 | int attr typeface 0x01010096 1183 | int attr uiOptions 0x01010398 1184 | int attr uncertainGestureColor 0x01010276 1185 | int attr unfocusedMonthDateColor 0x01010344 1186 | int attr unselectedAlpha 0x0101020e 1187 | int attr updatePeriodMillis 0x01010250 1188 | int attr use32bitAbi 0x01010515 1189 | int attr useDefaultMargins 0x01010379 1190 | int attr useIntrinsicSizeAsMinimum 0x01010310 1191 | int attr useLevel 0x0101019f 1192 | int attr userVisible 0x01010291 1193 | int attr usesCleartextTraffic 0x010104ec 1194 | int attr value 0x01010024 1195 | int attr valueFrom 0x010102de 1196 | int attr valueTo 0x010102df 1197 | int attr valueType 0x010102e0 1198 | int attr variablePadding 0x01010195 1199 | int attr vendor 0x010103e7 1200 | int attr version 0x01010519 1201 | int attr versionCode 0x0101021b 1202 | int attr versionName 0x0101021c 1203 | int attr verticalCorrection 0x0101023a 1204 | int attr verticalDivider 0x0101012e 1205 | int attr verticalGap 0x01010240 1206 | int attr verticalScrollbarPosition 0x01010334 1207 | int attr verticalSpacing 0x01010115 1208 | int attr viewportHeight 0x01010403 1209 | int attr viewportWidth 0x01010402 1210 | int attr visibility 0x010100dc 1211 | int attr visible 0x01010194 1212 | int attr vmSafeMode 0x010102b8 1213 | int attr voiceIcon 0x01010484 1214 | int attr voiceLanguage 0x01010255 1215 | int attr voiceLanguageModel 0x01010253 1216 | int attr voiceMaxResults 0x01010256 1217 | int attr voicePromptText 0x01010254 1218 | int attr voiceSearchMode 0x01010252 1219 | int attr wallpaperCloseEnterAnimation 0x01010295 1220 | int attr wallpaperCloseExitAnimation 0x01010296 1221 | int attr wallpaperIntraCloseEnterAnimation 0x01010299 1222 | int attr wallpaperIntraCloseExitAnimation 0x0101029a 1223 | int attr wallpaperIntraOpenEnterAnimation 0x01010297 1224 | int attr wallpaperIntraOpenExitAnimation 0x01010298 1225 | int attr wallpaperOpenEnterAnimation 0x01010293 1226 | int attr wallpaperOpenExitAnimation 0x01010294 1227 | int attr webTextViewStyle 0x010102b9 1228 | int attr webViewStyle 0x01010085 1229 | int attr weekDayTextAppearance 0x01010348 1230 | int attr weekNumberColor 0x01010345 1231 | int attr weekSeparatorLineColor 0x01010346 1232 | int attr weightSum 0x01010128 1233 | int attr widgetCategory 0x010103c4 1234 | int attr widgetLayout 0x010101eb 1235 | int attr width 0x01010159 1236 | int attr windowActionBar 0x010102cd 1237 | int attr windowActionBarOverlay 0x010102e4 1238 | int attr windowActionModeOverlay 0x010102dd 1239 | int attr windowActivityTransitions 0x010104cd 1240 | int attr windowAllowEnterTransitionOverlap 0x0101043c 1241 | int attr windowAllowReturnTransitionOverlap 0x0101043b 1242 | int attr windowAnimationStyle 0x010100ae 1243 | int attr windowBackground 0x01010054 1244 | int attr windowBackgroundFallback 0x01010503 1245 | int attr windowClipToOutline 0x010104ab 1246 | int attr windowCloseOnTouchOutside 0x0101035b 1247 | int attr windowContentOverlay 0x01010059 1248 | int attr windowContentTransitionManager 0x010103f9 1249 | int attr windowContentTransitions 0x010103f8 1250 | int attr windowDisablePreview 0x01010222 1251 | int attr windowDrawsSystemBarBackgrounds 0x01010450 1252 | int attr windowElevation 0x01010490 1253 | int attr windowEnableSplitTouch 0x01010317 1254 | int attr windowEnterAnimation 0x010100b4 1255 | int attr windowEnterTransition 0x01010437 1256 | int attr windowExitAnimation 0x010100b5 1257 | int attr windowExitTransition 0x01010438 1258 | int attr windowFrame 0x01010055 1259 | int attr windowFullscreen 0x0101020d 1260 | int attr windowHideAnimation 0x010100b7 1261 | int attr windowIsFloating 0x01010057 1262 | int attr windowIsTranslucent 0x01010058 1263 | int attr windowLightStatusBar 0x010104e0 1264 | int attr windowMinWidthMajor 0x01010356 1265 | int attr windowMinWidthMinor 0x01010357 1266 | int attr windowNoDisplay 0x0101021e 1267 | int attr windowNoTitle 0x01010056 1268 | int attr windowOverscan 0x010103cf 1269 | int attr windowReenterTransition 0x010104af 1270 | int attr windowReturnTransition 0x010104ae 1271 | int attr windowSharedElementEnterTransition 0x01010439 1272 | int attr windowSharedElementExitTransition 0x0101043a 1273 | int attr windowSharedElementReenterTransition 0x010104b1 1274 | int attr windowSharedElementReturnTransition 0x010104b0 1275 | int attr windowSharedElementsUseOverlay 0x010104bb 1276 | int attr windowShowAnimation 0x010100b6 1277 | int attr windowShowWallpaper 0x01010292 1278 | int attr windowSoftInputMode 0x0101022b 1279 | int attr windowSwipeToDismiss 0x010103f3 1280 | int attr windowTitleBackgroundStyle 0x0101005c 1281 | int attr windowTitleSize 0x0101005a 1282 | int attr windowTitleStyle 0x0101005b 1283 | int attr windowTransitionBackgroundFadeDuration 0x01010461 1284 | int attr windowTranslucentNavigation 0x010103f0 1285 | int attr windowTranslucentStatus 0x010103ef 1286 | int attr writePermission 0x01010008 1287 | int attr x 0x010100ac 1288 | int attr xlargeScreens 0x010102bf 1289 | int attr y 0x010100ad 1290 | int attr yearListItemTextAppearance 0x01010499 1291 | int attr yearListSelectorColor 0x0101049a 1292 | int attr yesNoPreferenceStyle 0x01010090 1293 | int attr zAdjustment 0x010101c1 1294 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/bundles/debug/R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f010001 2 | int anim abc_fade_out 0x7f010002 3 | int anim abc_grow_fade_in_from_bottom 0x7f010003 4 | int anim abc_popup_enter 0x7f010004 5 | int anim abc_popup_exit 0x7f010005 6 | int anim abc_shrink_fade_out_from_bottom 0x7f010006 7 | int anim abc_slide_in_bottom 0x7f010007 8 | int anim abc_slide_in_top 0x7f010008 9 | int anim abc_slide_out_bottom 0x7f010009 10 | int anim abc_slide_out_top 0x7f01000a 11 | int attr actionBarDivider 0x7f040001 12 | int attr actionBarItemBackground 0x7f040002 13 | int attr actionBarPopupTheme 0x7f040003 14 | int attr actionBarSize 0x7f040004 15 | int attr actionBarSplitStyle 0x7f040005 16 | int attr actionBarStyle 0x7f040006 17 | int attr actionBarTabBarStyle 0x7f040007 18 | int attr actionBarTabStyle 0x7f040008 19 | int attr actionBarTabTextStyle 0x7f040009 20 | int attr actionBarTheme 0x7f04000a 21 | int attr actionBarWidgetTheme 0x7f04000b 22 | int attr actionButtonStyle 0x7f04000c 23 | int attr actionDropDownStyle 0x7f04000d 24 | int attr actionLayout 0x7f04000e 25 | int attr actionMenuTextAppearance 0x7f04000f 26 | int attr actionMenuTextColor 0x7f040010 27 | int attr actionModeBackground 0x7f040011 28 | int attr actionModeCloseButtonStyle 0x7f040012 29 | int attr actionModeCloseDrawable 0x7f040013 30 | int attr actionModeCopyDrawable 0x7f040014 31 | int attr actionModeCutDrawable 0x7f040015 32 | int attr actionModeFindDrawable 0x7f040016 33 | int attr actionModePasteDrawable 0x7f040017 34 | int attr actionModePopupWindowStyle 0x7f040018 35 | int attr actionModeSelectAllDrawable 0x7f040019 36 | int attr actionModeShareDrawable 0x7f04001a 37 | int attr actionModeSplitBackground 0x7f04001b 38 | int attr actionModeStyle 0x7f04001c 39 | int attr actionModeWebSearchDrawable 0x7f04001d 40 | int attr actionOverflowButtonStyle 0x7f04001e 41 | int attr actionOverflowMenuStyle 0x7f04001f 42 | int attr actionProviderClass 0x7f040020 43 | int attr actionViewClass 0x7f040021 44 | int attr activityChooserViewStyle 0x7f040022 45 | int attr alertDialogButtonGroupStyle 0x7f040023 46 | int attr alertDialogCenterButtons 0x7f040024 47 | int attr alertDialogStyle 0x7f040025 48 | int attr alertDialogTheme 0x7f040026 49 | int attr allowStacking 0x7f040027 50 | int attr alpha 0x7f040028 51 | int attr arcColor 0x7f040029 52 | int attr arcStrokeWidth 0x7f04002a 53 | int attr arrowHeadLength 0x7f04002b 54 | int attr arrowShaftLength 0x7f04002c 55 | int attr autoCompleteTextViewStyle 0x7f04002d 56 | int attr background 0x7f04002e 57 | int attr backgroundSplit 0x7f04002f 58 | int attr backgroundStacked 0x7f040030 59 | int attr backgroundTint 0x7f040031 60 | int attr backgroundTintMode 0x7f040032 61 | int attr barLength 0x7f040033 62 | int attr borderlessButtonStyle 0x7f040034 63 | int attr buttonBarButtonStyle 0x7f040035 64 | int attr buttonBarNegativeButtonStyle 0x7f040036 65 | int attr buttonBarNeutralButtonStyle 0x7f040037 66 | int attr buttonBarPositiveButtonStyle 0x7f040038 67 | int attr buttonBarStyle 0x7f040039 68 | int attr buttonGravity 0x7f04003a 69 | int attr buttonPanelSideLayout 0x7f04003b 70 | int attr buttonStyle 0x7f04003c 71 | int attr buttonStyleSmall 0x7f04003d 72 | int attr buttonTint 0x7f04003e 73 | int attr buttonTintMode 0x7f04003f 74 | int attr checkboxStyle 0x7f040040 75 | int attr checkedTextViewStyle 0x7f040041 76 | int attr closeIcon 0x7f040042 77 | int attr closeItemLayout 0x7f040043 78 | int attr collapseContentDescription 0x7f040044 79 | int attr collapseIcon 0x7f040045 80 | int attr color 0x7f040046 81 | int attr colorAccent 0x7f040047 82 | int attr colorBackgroundFloating 0x7f040048 83 | int attr colorButtonNormal 0x7f040049 84 | int attr colorControlActivated 0x7f04004a 85 | int attr colorControlHighlight 0x7f04004b 86 | int attr colorControlNormal 0x7f04004c 87 | int attr colorPrimary 0x7f04004d 88 | int attr colorPrimaryDark 0x7f04004e 89 | int attr colorSwitchThumbNormal 0x7f04004f 90 | int attr commitIcon 0x7f040050 91 | int attr contentInsetEnd 0x7f040051 92 | int attr contentInsetEndWithActions 0x7f040052 93 | int attr contentInsetLeft 0x7f040053 94 | int attr contentInsetRight 0x7f040054 95 | int attr contentInsetStart 0x7f040055 96 | int attr contentInsetStartWithNavigation 0x7f040056 97 | int attr controlBackground 0x7f040057 98 | int attr customNavigationLayout 0x7f040058 99 | int attr defaultQueryHint 0x7f040059 100 | int attr dialogPreferredPadding 0x7f04005a 101 | int attr dialogTheme 0x7f04005b 102 | int attr displayOptions 0x7f04005c 103 | int attr divider 0x7f04005d 104 | int attr dividerHorizontal 0x7f04005e 105 | int attr dividerPadding 0x7f04005f 106 | int attr dividerVertical 0x7f040060 107 | int attr drawableSize 0x7f040061 108 | int attr drawerArrowStyle 0x7f040062 109 | int attr dropDownListViewStyle 0x7f040063 110 | int attr dropdownListPreferredItemHeight 0x7f040064 111 | int attr editTextBackground 0x7f040065 112 | int attr editTextColor 0x7f040066 113 | int attr editTextStyle 0x7f040067 114 | int attr elevation 0x7f040068 115 | int attr expandActivityOverflowButtonDrawable 0x7f040069 116 | int attr gapBetweenBars 0x7f04006a 117 | int attr goIcon 0x7f04006b 118 | int attr height 0x7f04006c 119 | int attr hideOnContentScroll 0x7f04006d 120 | int attr homeAsUpIndicator 0x7f04006e 121 | int attr homeLayout 0x7f04006f 122 | int attr icon 0x7f040070 123 | int attr iconifiedByDefault 0x7f040071 124 | int attr imageButtonStyle 0x7f040072 125 | int attr indeterminateProgressStyle 0x7f040073 126 | int attr initDegree 0x7f040074 127 | int attr initialActivityCount 0x7f040075 128 | int attr isCW 0x7f040076 129 | int attr isLightTheme 0x7f040077 130 | int attr itemPadding 0x7f040078 131 | int attr layout 0x7f040079 132 | int attr listChoiceBackgroundIndicator 0x7f04007a 133 | int attr listDividerAlertDialog 0x7f04007b 134 | int attr listItemLayout 0x7f04007c 135 | int attr listLayout 0x7f04007d 136 | int attr listMenuViewStyle 0x7f04007e 137 | int attr listPopupWindowStyle 0x7f04007f 138 | int attr listPreferredItemHeight 0x7f040080 139 | int attr listPreferredItemHeightLarge 0x7f040081 140 | int attr listPreferredItemHeightSmall 0x7f040082 141 | int attr listPreferredItemPaddingLeft 0x7f040083 142 | int attr listPreferredItemPaddingRight 0x7f040084 143 | int attr logo 0x7f040085 144 | int attr logoDescription 0x7f040086 145 | int attr maxButtonHeight 0x7f040087 146 | int attr maxNum 0x7f040088 147 | int attr measureWithLargestChild 0x7f040089 148 | int attr multiChoiceItemLayout 0x7f04008a 149 | int attr navigationContentDescription 0x7f04008b 150 | int attr navigationIcon 0x7f04008c 151 | int attr navigationMode 0x7f04008d 152 | int attr numColor 0x7f04008e 153 | int attr numTextSize 0x7f04008f 154 | int attr overlapAnchor 0x7f040090 155 | int attr paddingBottomNoButtons 0x7f040091 156 | int attr paddingEnd 0x7f040092 157 | int attr paddingStart 0x7f040093 158 | int attr paddingTopNoTitle 0x7f040094 159 | int attr panelBackground 0x7f040095 160 | int attr panelMenuListTheme 0x7f040096 161 | int attr panelMenuListWidth 0x7f040097 162 | int attr plusNumAnimDuration 0x7f040098 163 | int attr popupMenuStyle 0x7f040099 164 | int attr popupTheme 0x7f04009a 165 | int attr popupWindowStyle 0x7f04009b 166 | int attr preserveIconSpacing 0x7f04009c 167 | int attr progressBarPadding 0x7f04009d 168 | int attr progressBarStyle 0x7f04009e 169 | int attr queryBackground 0x7f04009f 170 | int attr queryHint 0x7f0400a0 171 | int attr radioButtonStyle 0x7f0400a1 172 | int attr radius 0x7f0400a2 173 | int attr ratingBarStyle 0x7f0400a3 174 | int attr ratingBarStyleIndicator 0x7f0400a4 175 | int attr ratingBarStyleSmall 0x7f0400a5 176 | int attr searchHintIcon 0x7f0400a6 177 | int attr searchIcon 0x7f0400a7 178 | int attr searchViewStyle 0x7f0400a8 179 | int attr seekBarStyle 0x7f0400a9 180 | int attr selectableItemBackground 0x7f0400aa 181 | int attr selectableItemBackgroundBorderless 0x7f0400ab 182 | int attr showAsAction 0x7f0400ac 183 | int attr showDividers 0x7f0400ad 184 | int attr showText 0x7f0400ae 185 | int attr showTitle 0x7f0400af 186 | int attr singleChoiceItemLayout 0x7f0400b0 187 | int attr spinBars 0x7f0400b1 188 | int attr spinnerDropDownItemStyle 0x7f0400b2 189 | int attr spinnerStyle 0x7f0400b3 190 | int attr splitTrack 0x7f0400b4 191 | int attr srcCompat 0x7f0400b5 192 | int attr state_above_anchor 0x7f0400b6 193 | int attr subMenuArrow 0x7f0400b7 194 | int attr submitBackground 0x7f0400b8 195 | int attr subtitle 0x7f0400b9 196 | int attr subtitleTextAppearance 0x7f0400ba 197 | int attr subtitleTextColor 0x7f0400bb 198 | int attr subtitleTextStyle 0x7f0400bc 199 | int attr suggestionRowLayout 0x7f0400bd 200 | int attr switchMinWidth 0x7f0400be 201 | int attr switchPadding 0x7f0400bf 202 | int attr switchStyle 0x7f0400c0 203 | int attr switchTextAppearance 0x7f0400c1 204 | int attr textAllCaps 0x7f0400c2 205 | int attr textAppearanceLargePopupMenu 0x7f0400c3 206 | int attr textAppearanceListItem 0x7f0400c4 207 | int attr textAppearanceListItemSmall 0x7f0400c5 208 | int attr textAppearancePopupMenuHeader 0x7f0400c6 209 | int attr textAppearanceSearchResultSubtitle 0x7f0400c7 210 | int attr textAppearanceSearchResultTitle 0x7f0400c8 211 | int attr textAppearanceSmallPopupMenu 0x7f0400c9 212 | int attr textColorAlertDialogListItem 0x7f0400ca 213 | int attr textColorSearchUrl 0x7f0400cb 214 | int attr theme 0x7f0400cc 215 | int attr thickness 0x7f0400cd 216 | int attr thumbTextPadding 0x7f0400ce 217 | int attr thumbTint 0x7f0400cf 218 | int attr thumbTintMode 0x7f0400d0 219 | int attr tickMark 0x7f0400d1 220 | int attr tickMarkTint 0x7f0400d2 221 | int attr tickMarkTintMode 0x7f0400d3 222 | int attr title 0x7f0400d4 223 | int attr titleMargin 0x7f0400d5 224 | int attr titleMarginBottom 0x7f0400d6 225 | int attr titleMarginEnd 0x7f0400d7 226 | int attr titleMarginStart 0x7f0400d8 227 | int attr titleMarginTop 0x7f0400d9 228 | int attr titleMargins 0x7f0400da 229 | int attr titleTextAppearance 0x7f0400db 230 | int attr titleTextColor 0x7f0400dc 231 | int attr titleTextStyle 0x7f0400dd 232 | int attr toolbarNavigationButtonStyle 0x7f0400de 233 | int attr toolbarStyle 0x7f0400df 234 | int attr track 0x7f0400e0 235 | int attr trackTint 0x7f0400e1 236 | int attr trackTintMode 0x7f0400e2 237 | int attr voiceIcon 0x7f0400e3 238 | int attr windowActionBar 0x7f0400e4 239 | int attr windowActionBarOverlay 0x7f0400e5 240 | int attr windowActionModeOverlay 0x7f0400e6 241 | int attr windowFixedHeightMajor 0x7f0400e7 242 | int attr windowFixedHeightMinor 0x7f0400e8 243 | int attr windowFixedWidthMajor 0x7f0400e9 244 | int attr windowFixedWidthMinor 0x7f0400ea 245 | int attr windowMinWidthMajor 0x7f0400eb 246 | int attr windowMinWidthMinor 0x7f0400ec 247 | int attr windowNoTitle 0x7f0400ed 248 | int bool abc_action_bar_embed_tabs 0x7f050001 249 | int bool abc_allow_stacked_button_bar 0x7f050002 250 | int bool abc_config_actionMenuItemAllCaps 0x7f050003 251 | int bool abc_config_closeDialogWhenTouchOutside 0x7f050004 252 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050005 253 | int color abc_background_cache_hint_selector_material_dark 0x7f060001 254 | int color abc_background_cache_hint_selector_material_light 0x7f060002 255 | int color abc_btn_colored_borderless_text_material 0x7f060003 256 | int color abc_btn_colored_text_material 0x7f060004 257 | int color abc_color_highlight_material 0x7f060005 258 | int color abc_hint_foreground_material_dark 0x7f060006 259 | int color abc_hint_foreground_material_light 0x7f060007 260 | int color abc_input_method_navigation_guard 0x7f060008 261 | int color abc_primary_text_disable_only_material_dark 0x7f060009 262 | int color abc_primary_text_disable_only_material_light 0x7f06000a 263 | int color abc_primary_text_material_dark 0x7f06000b 264 | int color abc_primary_text_material_light 0x7f06000c 265 | int color abc_search_url_text 0x7f06000d 266 | int color abc_search_url_text_normal 0x7f06000e 267 | int color abc_search_url_text_pressed 0x7f06000f 268 | int color abc_search_url_text_selected 0x7f060010 269 | int color abc_secondary_text_material_dark 0x7f060011 270 | int color abc_secondary_text_material_light 0x7f060012 271 | int color abc_tint_btn_checkable 0x7f060013 272 | int color abc_tint_default 0x7f060014 273 | int color abc_tint_edittext 0x7f060015 274 | int color abc_tint_seek_thumb 0x7f060016 275 | int color abc_tint_spinner 0x7f060017 276 | int color abc_tint_switch_thumb 0x7f060018 277 | int color abc_tint_switch_track 0x7f060019 278 | int color accent_material_dark 0x7f06001a 279 | int color accent_material_light 0x7f06001b 280 | int color background_floating_material_dark 0x7f06001c 281 | int color background_floating_material_light 0x7f06001d 282 | int color background_material_dark 0x7f06001e 283 | int color background_material_light 0x7f06001f 284 | int color bright_foreground_disabled_material_dark 0x7f060020 285 | int color bright_foreground_disabled_material_light 0x7f060021 286 | int color bright_foreground_inverse_material_dark 0x7f060022 287 | int color bright_foreground_inverse_material_light 0x7f060023 288 | int color bright_foreground_material_dark 0x7f060024 289 | int color bright_foreground_material_light 0x7f060025 290 | int color button_material_dark 0x7f060026 291 | int color button_material_light 0x7f060027 292 | int color dim_foreground_disabled_material_dark 0x7f060028 293 | int color dim_foreground_disabled_material_light 0x7f060029 294 | int color dim_foreground_material_dark 0x7f06002a 295 | int color dim_foreground_material_light 0x7f06002b 296 | int color foreground_material_dark 0x7f06002c 297 | int color foreground_material_light 0x7f06002d 298 | int color highlighted_text_material_dark 0x7f06002e 299 | int color highlighted_text_material_light 0x7f06002f 300 | int color material_blue_grey_800 0x7f060030 301 | int color material_blue_grey_900 0x7f060031 302 | int color material_blue_grey_950 0x7f060032 303 | int color material_deep_teal_200 0x7f060033 304 | int color material_deep_teal_500 0x7f060034 305 | int color material_grey_100 0x7f060035 306 | int color material_grey_300 0x7f060036 307 | int color material_grey_50 0x7f060037 308 | int color material_grey_600 0x7f060038 309 | int color material_grey_800 0x7f060039 310 | int color material_grey_850 0x7f06003a 311 | int color material_grey_900 0x7f06003b 312 | int color notification_action_color_filter 0x7f06003c 313 | int color notification_icon_bg_color 0x7f06003d 314 | int color notification_material_background_media_default_color 0x7f06003e 315 | int color primary_dark_material_dark 0x7f06003f 316 | int color primary_dark_material_light 0x7f060040 317 | int color primary_material_dark 0x7f060041 318 | int color primary_material_light 0x7f060042 319 | int color primary_text_default_material_dark 0x7f060043 320 | int color primary_text_default_material_light 0x7f060044 321 | int color primary_text_disabled_material_dark 0x7f060045 322 | int color primary_text_disabled_material_light 0x7f060046 323 | int color ripple_material_dark 0x7f060047 324 | int color ripple_material_light 0x7f060048 325 | int color secondary_text_default_material_dark 0x7f060049 326 | int color secondary_text_default_material_light 0x7f06004a 327 | int color secondary_text_disabled_material_dark 0x7f06004b 328 | int color secondary_text_disabled_material_light 0x7f06004c 329 | int color switch_thumb_disabled_material_dark 0x7f06004d 330 | int color switch_thumb_disabled_material_light 0x7f06004e 331 | int color switch_thumb_material_dark 0x7f06004f 332 | int color switch_thumb_material_light 0x7f060050 333 | int color switch_thumb_normal_material_dark 0x7f060051 334 | int color switch_thumb_normal_material_light 0x7f060052 335 | int dimen abc_action_bar_content_inset_material 0x7f080001 336 | int dimen abc_action_bar_content_inset_with_nav 0x7f080002 337 | int dimen abc_action_bar_default_height_material 0x7f080003 338 | int dimen abc_action_bar_default_padding_end_material 0x7f080004 339 | int dimen abc_action_bar_default_padding_start_material 0x7f080005 340 | int dimen abc_action_bar_elevation_material 0x7f080006 341 | int dimen abc_action_bar_icon_vertical_padding_material 0x7f080007 342 | int dimen abc_action_bar_overflow_padding_end_material 0x7f080008 343 | int dimen abc_action_bar_overflow_padding_start_material 0x7f080009 344 | int dimen abc_action_bar_progress_bar_size 0x7f08000a 345 | int dimen abc_action_bar_stacked_max_height 0x7f08000b 346 | int dimen abc_action_bar_stacked_tab_max_width 0x7f08000c 347 | int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f08000d 348 | int dimen abc_action_bar_subtitle_top_margin_material 0x7f08000e 349 | int dimen abc_action_button_min_height_material 0x7f08000f 350 | int dimen abc_action_button_min_width_material 0x7f080010 351 | int dimen abc_action_button_min_width_overflow_material 0x7f080011 352 | int dimen abc_alert_dialog_button_bar_height 0x7f080012 353 | int dimen abc_button_inset_horizontal_material 0x7f080013 354 | int dimen abc_button_inset_vertical_material 0x7f080014 355 | int dimen abc_button_padding_horizontal_material 0x7f080015 356 | int dimen abc_button_padding_vertical_material 0x7f080016 357 | int dimen abc_cascading_menus_min_smallest_width 0x7f080017 358 | int dimen abc_config_prefDialogWidth 0x7f080018 359 | int dimen abc_control_corner_material 0x7f080019 360 | int dimen abc_control_inset_material 0x7f08001a 361 | int dimen abc_control_padding_material 0x7f08001b 362 | int dimen abc_dialog_fixed_height_major 0x7f08001c 363 | int dimen abc_dialog_fixed_height_minor 0x7f08001d 364 | int dimen abc_dialog_fixed_width_major 0x7f08001e 365 | int dimen abc_dialog_fixed_width_minor 0x7f08001f 366 | int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f080020 367 | int dimen abc_dialog_list_padding_top_no_title 0x7f080021 368 | int dimen abc_dialog_min_width_major 0x7f080022 369 | int dimen abc_dialog_min_width_minor 0x7f080023 370 | int dimen abc_dialog_padding_material 0x7f080024 371 | int dimen abc_dialog_padding_top_material 0x7f080025 372 | int dimen abc_dialog_title_divider_material 0x7f080026 373 | int dimen abc_disabled_alpha_material_dark 0x7f080027 374 | int dimen abc_disabled_alpha_material_light 0x7f080028 375 | int dimen abc_dropdownitem_icon_width 0x7f080029 376 | int dimen abc_dropdownitem_text_padding_left 0x7f08002a 377 | int dimen abc_dropdownitem_text_padding_right 0x7f08002b 378 | int dimen abc_edit_text_inset_bottom_material 0x7f08002c 379 | int dimen abc_edit_text_inset_horizontal_material 0x7f08002d 380 | int dimen abc_edit_text_inset_top_material 0x7f08002e 381 | int dimen abc_floating_window_z 0x7f08002f 382 | int dimen abc_list_item_padding_horizontal_material 0x7f080030 383 | int dimen abc_panel_menu_list_width 0x7f080031 384 | int dimen abc_progress_bar_height_material 0x7f080032 385 | int dimen abc_search_view_preferred_height 0x7f080033 386 | int dimen abc_search_view_preferred_width 0x7f080034 387 | int dimen abc_seekbar_track_background_height_material 0x7f080035 388 | int dimen abc_seekbar_track_progress_height_material 0x7f080036 389 | int dimen abc_select_dialog_padding_start_material 0x7f080037 390 | int dimen abc_switch_padding 0x7f080038 391 | int dimen abc_text_size_body_1_material 0x7f080039 392 | int dimen abc_text_size_body_2_material 0x7f08003a 393 | int dimen abc_text_size_button_material 0x7f08003b 394 | int dimen abc_text_size_caption_material 0x7f08003c 395 | int dimen abc_text_size_display_1_material 0x7f08003d 396 | int dimen abc_text_size_display_2_material 0x7f08003e 397 | int dimen abc_text_size_display_3_material 0x7f08003f 398 | int dimen abc_text_size_display_4_material 0x7f080040 399 | int dimen abc_text_size_headline_material 0x7f080041 400 | int dimen abc_text_size_large_material 0x7f080042 401 | int dimen abc_text_size_medium_material 0x7f080043 402 | int dimen abc_text_size_menu_header_material 0x7f080044 403 | int dimen abc_text_size_menu_material 0x7f080045 404 | int dimen abc_text_size_small_material 0x7f080046 405 | int dimen abc_text_size_subhead_material 0x7f080047 406 | int dimen abc_text_size_subtitle_material_toolbar 0x7f080048 407 | int dimen abc_text_size_title_material 0x7f080049 408 | int dimen abc_text_size_title_material_toolbar 0x7f08004a 409 | int dimen disabled_alpha_material_dark 0x7f08004b 410 | int dimen disabled_alpha_material_light 0x7f08004c 411 | int dimen highlight_alpha_material_colored 0x7f08004d 412 | int dimen highlight_alpha_material_dark 0x7f08004e 413 | int dimen highlight_alpha_material_light 0x7f08004f 414 | int dimen hint_alpha_material_dark 0x7f080050 415 | int dimen hint_alpha_material_light 0x7f080051 416 | int dimen hint_pressed_alpha_material_dark 0x7f080052 417 | int dimen hint_pressed_alpha_material_light 0x7f080053 418 | int dimen notification_action_icon_size 0x7f080054 419 | int dimen notification_action_text_size 0x7f080055 420 | int dimen notification_big_circle_margin 0x7f080056 421 | int dimen notification_content_margin_start 0x7f080057 422 | int dimen notification_large_icon_height 0x7f080058 423 | int dimen notification_large_icon_width 0x7f080059 424 | int dimen notification_main_column_padding_top 0x7f08005a 425 | int dimen notification_media_narrow_margin 0x7f08005b 426 | int dimen notification_right_icon_size 0x7f08005c 427 | int dimen notification_right_side_padding_top 0x7f08005d 428 | int dimen notification_small_icon_background_padding 0x7f08005e 429 | int dimen notification_small_icon_size_as_large 0x7f08005f 430 | int dimen notification_subtext_size 0x7f080060 431 | int dimen notification_top_pad 0x7f080061 432 | int dimen notification_top_pad_large_text 0x7f080062 433 | int drawable abc_ab_share_pack_mtrl_alpha 0x7f090001 434 | int drawable abc_action_bar_item_background_material 0x7f090002 435 | int drawable abc_btn_borderless_material 0x7f090003 436 | int drawable abc_btn_check_material 0x7f090004 437 | int drawable abc_btn_check_to_on_mtrl_000 0x7f090005 438 | int drawable abc_btn_check_to_on_mtrl_015 0x7f090006 439 | int drawable abc_btn_colored_material 0x7f090007 440 | int drawable abc_btn_default_mtrl_shape 0x7f090008 441 | int drawable abc_btn_radio_material 0x7f090009 442 | int drawable abc_btn_radio_to_on_mtrl_000 0x7f09000a 443 | int drawable abc_btn_radio_to_on_mtrl_015 0x7f09000b 444 | int drawable abc_btn_switch_to_on_mtrl_00001 0x7f09000c 445 | int drawable abc_btn_switch_to_on_mtrl_00012 0x7f09000d 446 | int drawable abc_cab_background_internal_bg 0x7f09000e 447 | int drawable abc_cab_background_top_material 0x7f09000f 448 | int drawable abc_cab_background_top_mtrl_alpha 0x7f090010 449 | int drawable abc_control_background_material 0x7f090011 450 | int drawable abc_dialog_material_background 0x7f090012 451 | int drawable abc_edit_text_material 0x7f090013 452 | int drawable abc_ic_ab_back_material 0x7f090014 453 | int drawable abc_ic_arrow_drop_right_black_24dp 0x7f090015 454 | int drawable abc_ic_clear_material 0x7f090016 455 | int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f090017 456 | int drawable abc_ic_go_search_api_material 0x7f090018 457 | int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f090019 458 | int drawable abc_ic_menu_cut_mtrl_alpha 0x7f09001a 459 | int drawable abc_ic_menu_overflow_material 0x7f09001b 460 | int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f09001c 461 | int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f09001d 462 | int drawable abc_ic_menu_share_mtrl_alpha 0x7f09001e 463 | int drawable abc_ic_search_api_material 0x7f09001f 464 | int drawable abc_ic_star_black_16dp 0x7f090020 465 | int drawable abc_ic_star_black_36dp 0x7f090021 466 | int drawable abc_ic_star_black_48dp 0x7f090022 467 | int drawable abc_ic_star_half_black_16dp 0x7f090023 468 | int drawable abc_ic_star_half_black_36dp 0x7f090024 469 | int drawable abc_ic_star_half_black_48dp 0x7f090025 470 | int drawable abc_ic_voice_search_api_material 0x7f090026 471 | int drawable abc_item_background_holo_dark 0x7f090027 472 | int drawable abc_item_background_holo_light 0x7f090028 473 | int drawable abc_list_divider_mtrl_alpha 0x7f090029 474 | int drawable abc_list_focused_holo 0x7f09002a 475 | int drawable abc_list_longpressed_holo 0x7f09002b 476 | int drawable abc_list_pressed_holo_dark 0x7f09002c 477 | int drawable abc_list_pressed_holo_light 0x7f09002d 478 | int drawable abc_list_selector_background_transition_holo_dark 0x7f09002e 479 | int drawable abc_list_selector_background_transition_holo_light 0x7f09002f 480 | int drawable abc_list_selector_disabled_holo_dark 0x7f090030 481 | int drawable abc_list_selector_disabled_holo_light 0x7f090031 482 | int drawable abc_list_selector_holo_dark 0x7f090032 483 | int drawable abc_list_selector_holo_light 0x7f090033 484 | int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f090034 485 | int drawable abc_popup_background_mtrl_mult 0x7f090035 486 | int drawable abc_ratingbar_indicator_material 0x7f090036 487 | int drawable abc_ratingbar_material 0x7f090037 488 | int drawable abc_ratingbar_small_material 0x7f090038 489 | int drawable abc_scrubber_control_off_mtrl_alpha 0x7f090039 490 | int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f09003a 491 | int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f09003b 492 | int drawable abc_scrubber_primary_mtrl_alpha 0x7f09003c 493 | int drawable abc_scrubber_track_mtrl_alpha 0x7f09003d 494 | int drawable abc_seekbar_thumb_material 0x7f09003e 495 | int drawable abc_seekbar_tick_mark_material 0x7f09003f 496 | int drawable abc_seekbar_track_material 0x7f090040 497 | int drawable abc_spinner_mtrl_am_alpha 0x7f090041 498 | int drawable abc_spinner_textfield_background_material 0x7f090042 499 | int drawable abc_switch_thumb_material 0x7f090043 500 | int drawable abc_switch_track_mtrl_alpha 0x7f090044 501 | int drawable abc_tab_indicator_material 0x7f090045 502 | int drawable abc_tab_indicator_mtrl_alpha 0x7f090046 503 | int drawable abc_text_cursor_material 0x7f090047 504 | int drawable abc_text_select_handle_left_mtrl_dark 0x7f090048 505 | int drawable abc_text_select_handle_left_mtrl_light 0x7f090049 506 | int drawable abc_text_select_handle_middle_mtrl_dark 0x7f09004a 507 | int drawable abc_text_select_handle_middle_mtrl_light 0x7f09004b 508 | int drawable abc_text_select_handle_right_mtrl_dark 0x7f09004c 509 | int drawable abc_text_select_handle_right_mtrl_light 0x7f09004d 510 | int drawable abc_textfield_activated_mtrl_alpha 0x7f09004e 511 | int drawable abc_textfield_default_mtrl_alpha 0x7f09004f 512 | int drawable abc_textfield_search_activated_mtrl_alpha 0x7f090050 513 | int drawable abc_textfield_search_default_mtrl_alpha 0x7f090051 514 | int drawable abc_textfield_search_material 0x7f090052 515 | int drawable abc_vector_test 0x7f090053 516 | int drawable notification_action_background 0x7f090054 517 | int drawable notification_bg 0x7f090055 518 | int drawable notification_bg_low 0x7f090056 519 | int drawable notification_bg_low_normal 0x7f090057 520 | int drawable notification_bg_low_pressed 0x7f090058 521 | int drawable notification_bg_normal 0x7f090059 522 | int drawable notification_bg_normal_pressed 0x7f09005a 523 | int drawable notification_icon_background 0x7f09005b 524 | int drawable notification_template_icon_bg 0x7f09005c 525 | int drawable notification_template_icon_low_bg 0x7f09005d 526 | int drawable notification_tile_bg 0x7f09005e 527 | int drawable notify_panel_notification_icon_bg 0x7f09005f 528 | int id action0 0x7f0c0001 529 | int id action_bar 0x7f0c0002 530 | int id action_bar_activity_content 0x7f0c0003 531 | int id action_bar_container 0x7f0c0004 532 | int id action_bar_root 0x7f0c0005 533 | int id action_bar_spinner 0x7f0c0006 534 | int id action_bar_subtitle 0x7f0c0007 535 | int id action_bar_title 0x7f0c0008 536 | int id action_container 0x7f0c0009 537 | int id action_context_bar 0x7f0c000a 538 | int id action_divider 0x7f0c000b 539 | int id action_image 0x7f0c000c 540 | int id action_menu_divider 0x7f0c000d 541 | int id action_menu_presenter 0x7f0c000e 542 | int id action_mode_bar 0x7f0c000f 543 | int id action_mode_bar_stub 0x7f0c0010 544 | int id action_mode_close_button 0x7f0c0011 545 | int id action_text 0x7f0c0012 546 | int id actions 0x7f0c0013 547 | int id activity_chooser_view_content 0x7f0c0014 548 | int id add 0x7f0c0015 549 | int id alertTitle 0x7f0c0016 550 | int id always 0x7f0c0017 551 | int id beginning 0x7f0c0018 552 | int id bottom 0x7f0c0019 553 | int id buttonPanel 0x7f0c001a 554 | int id cancel_action 0x7f0c001b 555 | int id checkbox 0x7f0c001c 556 | int id chronometer 0x7f0c001d 557 | int id collapseActionView 0x7f0c001e 558 | int id contentPanel 0x7f0c001f 559 | int id custom 0x7f0c0020 560 | int id customPanel 0x7f0c0021 561 | int id decor_content_parent 0x7f0c0022 562 | int id default_activity_button 0x7f0c0023 563 | int id disableHome 0x7f0c0024 564 | int id edit_query 0x7f0c0025 565 | int id end 0x7f0c0026 566 | int id end_padder 0x7f0c0027 567 | int id expand_activities_button 0x7f0c0028 568 | int id expanded_menu 0x7f0c0029 569 | int id home 0x7f0c002a 570 | int id homeAsUp 0x7f0c002b 571 | int id icon 0x7f0c002c 572 | int id icon_group 0x7f0c002d 573 | int id ifRoom 0x7f0c002e 574 | int id image 0x7f0c002f 575 | int id info 0x7f0c0030 576 | int id line1 0x7f0c0031 577 | int id line3 0x7f0c0032 578 | int id listMode 0x7f0c0033 579 | int id list_item 0x7f0c0034 580 | int id media_actions 0x7f0c0035 581 | int id middle 0x7f0c0036 582 | int id multiply 0x7f0c0037 583 | int id never 0x7f0c0038 584 | int id none 0x7f0c0039 585 | int id normal 0x7f0c003a 586 | int id notification_background 0x7f0c003b 587 | int id notification_main_column 0x7f0c003c 588 | int id notification_main_column_container 0x7f0c003d 589 | int id parentPanel 0x7f0c003e 590 | int id progress_circular 0x7f0c003f 591 | int id progress_horizontal 0x7f0c0040 592 | int id radio 0x7f0c0041 593 | int id right_icon 0x7f0c0042 594 | int id right_side 0x7f0c0043 595 | int id screen 0x7f0c0044 596 | int id scrollIndicatorDown 0x7f0c0045 597 | int id scrollIndicatorUp 0x7f0c0046 598 | int id scrollView 0x7f0c0047 599 | int id search_badge 0x7f0c0048 600 | int id search_bar 0x7f0c0049 601 | int id search_button 0x7f0c004a 602 | int id search_close_btn 0x7f0c004b 603 | int id search_edit_frame 0x7f0c004c 604 | int id search_go_btn 0x7f0c004d 605 | int id search_mag_icon 0x7f0c004e 606 | int id search_plate 0x7f0c004f 607 | int id search_src_text 0x7f0c0050 608 | int id search_voice_btn 0x7f0c0051 609 | int id select_dialog_listview 0x7f0c0052 610 | int id shortcut 0x7f0c0053 611 | int id showCustom 0x7f0c0054 612 | int id showHome 0x7f0c0055 613 | int id showTitle 0x7f0c0056 614 | int id spacer 0x7f0c0057 615 | int id split_action_bar 0x7f0c0058 616 | int id src_atop 0x7f0c0059 617 | int id src_in 0x7f0c005a 618 | int id src_over 0x7f0c005b 619 | int id status_bar_latest_event_content 0x7f0c005c 620 | int id submenuarrow 0x7f0c005d 621 | int id submit_area 0x7f0c005e 622 | int id tabMode 0x7f0c005f 623 | int id text 0x7f0c0060 624 | int id text2 0x7f0c0061 625 | int id textSpacerNoButtons 0x7f0c0062 626 | int id textSpacerNoTitle 0x7f0c0063 627 | int id time 0x7f0c0064 628 | int id title 0x7f0c0065 629 | int id titleDividerNoCustom 0x7f0c0066 630 | int id title_template 0x7f0c0067 631 | int id top 0x7f0c0068 632 | int id topPanel 0x7f0c0069 633 | int id up 0x7f0c006a 634 | int id useLogo 0x7f0c006b 635 | int id withText 0x7f0c006c 636 | int id wrap_content 0x7f0c006d 637 | int integer abc_config_activityDefaultDur 0x7f0d0001 638 | int integer abc_config_activityShortDur 0x7f0d0002 639 | int integer cancel_button_image_alpha 0x7f0d0003 640 | int integer status_bar_notification_info_maxnum 0x7f0d0004 641 | int layout abc_action_bar_title_item 0x7f0f0001 642 | int layout abc_action_bar_up_container 0x7f0f0002 643 | int layout abc_action_bar_view_list_nav_layout 0x7f0f0003 644 | int layout abc_action_menu_item_layout 0x7f0f0004 645 | int layout abc_action_menu_layout 0x7f0f0005 646 | int layout abc_action_mode_bar 0x7f0f0006 647 | int layout abc_action_mode_close_item_material 0x7f0f0007 648 | int layout abc_activity_chooser_view 0x7f0f0008 649 | int layout abc_activity_chooser_view_list_item 0x7f0f0009 650 | int layout abc_alert_dialog_button_bar_material 0x7f0f000a 651 | int layout abc_alert_dialog_material 0x7f0f000b 652 | int layout abc_alert_dialog_title_material 0x7f0f000c 653 | int layout abc_dialog_title_material 0x7f0f000d 654 | int layout abc_expanded_menu_layout 0x7f0f000e 655 | int layout abc_list_menu_item_checkbox 0x7f0f000f 656 | int layout abc_list_menu_item_icon 0x7f0f0010 657 | int layout abc_list_menu_item_layout 0x7f0f0011 658 | int layout abc_list_menu_item_radio 0x7f0f0012 659 | int layout abc_popup_menu_header_item_layout 0x7f0f0013 660 | int layout abc_popup_menu_item_layout 0x7f0f0014 661 | int layout abc_screen_content_include 0x7f0f0015 662 | int layout abc_screen_simple 0x7f0f0016 663 | int layout abc_screen_simple_overlay_action_mode 0x7f0f0017 664 | int layout abc_screen_toolbar 0x7f0f0018 665 | int layout abc_search_dropdown_item_icons_2line 0x7f0f0019 666 | int layout abc_search_view 0x7f0f001a 667 | int layout abc_select_dialog_material 0x7f0f001b 668 | int layout notification_action 0x7f0f001c 669 | int layout notification_action_tombstone 0x7f0f001d 670 | int layout notification_media_action 0x7f0f001e 671 | int layout notification_media_cancel_action 0x7f0f001f 672 | int layout notification_template_big_media 0x7f0f0020 673 | int layout notification_template_big_media_custom 0x7f0f0021 674 | int layout notification_template_big_media_narrow 0x7f0f0022 675 | int layout notification_template_big_media_narrow_custom 0x7f0f0023 676 | int layout notification_template_custom_big 0x7f0f0024 677 | int layout notification_template_icon_group 0x7f0f0025 678 | int layout notification_template_lines_media 0x7f0f0026 679 | int layout notification_template_media 0x7f0f0027 680 | int layout notification_template_media_custom 0x7f0f0028 681 | int layout notification_template_part_chronometer 0x7f0f0029 682 | int layout notification_template_part_time 0x7f0f002a 683 | int layout select_dialog_item_material 0x7f0f002b 684 | int layout select_dialog_multichoice_material 0x7f0f002c 685 | int layout select_dialog_singlechoice_material 0x7f0f002d 686 | int layout support_simple_spinner_dropdown_item 0x7f0f002e 687 | int string abc_action_bar_home_description 0x7f150001 688 | int string abc_action_bar_home_description_format 0x7f150002 689 | int string abc_action_bar_home_subtitle_description_format 0x7f150003 690 | int string abc_action_bar_up_description 0x7f150004 691 | int string abc_action_menu_overflow_description 0x7f150005 692 | int string abc_action_mode_done 0x7f150006 693 | int string abc_activity_chooser_view_see_all 0x7f150007 694 | int string abc_activitychooserview_choose_application 0x7f150008 695 | int string abc_capital_off 0x7f150009 696 | int string abc_capital_on 0x7f15000a 697 | int string abc_font_family_body_1_material 0x7f15000b 698 | int string abc_font_family_body_2_material 0x7f15000c 699 | int string abc_font_family_button_material 0x7f15000d 700 | int string abc_font_family_caption_material 0x7f15000e 701 | int string abc_font_family_display_1_material 0x7f15000f 702 | int string abc_font_family_display_2_material 0x7f150010 703 | int string abc_font_family_display_3_material 0x7f150011 704 | int string abc_font_family_display_4_material 0x7f150012 705 | int string abc_font_family_headline_material 0x7f150013 706 | int string abc_font_family_menu_material 0x7f150014 707 | int string abc_font_family_subhead_material 0x7f150015 708 | int string abc_font_family_title_material 0x7f150016 709 | int string abc_search_hint 0x7f150017 710 | int string abc_searchview_description_clear 0x7f150018 711 | int string abc_searchview_description_query 0x7f150019 712 | int string abc_searchview_description_search 0x7f15001a 713 | int string abc_searchview_description_submit 0x7f15001b 714 | int string abc_searchview_description_voice 0x7f15001c 715 | int string abc_shareactionprovider_share_with 0x7f15001d 716 | int string abc_shareactionprovider_share_with_application 0x7f15001e 717 | int string abc_toolbar_collapse_description 0x7f15001f 718 | int string app_name 0x7f150020 719 | int string search_menu_title 0x7f150021 720 | int string status_bar_notification_info_overflow 0x7f150022 721 | int style AlertDialog_AppCompat 0x7f160001 722 | int style AlertDialog_AppCompat_Light 0x7f160002 723 | int style Animation_AppCompat_Dialog 0x7f160003 724 | int style Animation_AppCompat_DropDownUp 0x7f160004 725 | int style Base_AlertDialog_AppCompat 0x7f160005 726 | int style Base_AlertDialog_AppCompat_Light 0x7f160006 727 | int style Base_Animation_AppCompat_Dialog 0x7f160007 728 | int style Base_Animation_AppCompat_DropDownUp 0x7f160008 729 | int style Base_DialogWindowTitleBackground_AppCompat 0x7f160009 730 | int style Base_DialogWindowTitle_AppCompat 0x7f16000a 731 | int style Base_TextAppearance_AppCompat 0x7f16000b 732 | int style Base_TextAppearance_AppCompat_Body1 0x7f16000c 733 | int style Base_TextAppearance_AppCompat_Body2 0x7f16000d 734 | int style Base_TextAppearance_AppCompat_Button 0x7f16000e 735 | int style Base_TextAppearance_AppCompat_Caption 0x7f16000f 736 | int style Base_TextAppearance_AppCompat_Display1 0x7f160010 737 | int style Base_TextAppearance_AppCompat_Display2 0x7f160011 738 | int style Base_TextAppearance_AppCompat_Display3 0x7f160012 739 | int style Base_TextAppearance_AppCompat_Display4 0x7f160013 740 | int style Base_TextAppearance_AppCompat_Headline 0x7f160014 741 | int style Base_TextAppearance_AppCompat_Inverse 0x7f160015 742 | int style Base_TextAppearance_AppCompat_Large 0x7f160016 743 | int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f160017 744 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f160018 745 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f160019 746 | int style Base_TextAppearance_AppCompat_Medium 0x7f16001a 747 | int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f16001b 748 | int style Base_TextAppearance_AppCompat_Menu 0x7f16001c 749 | int style Base_TextAppearance_AppCompat_SearchResult 0x7f16001d 750 | int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f16001e 751 | int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f16001f 752 | int style Base_TextAppearance_AppCompat_Small 0x7f160020 753 | int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f160021 754 | int style Base_TextAppearance_AppCompat_Subhead 0x7f160022 755 | int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f160023 756 | int style Base_TextAppearance_AppCompat_Title 0x7f160024 757 | int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f160025 758 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f160026 759 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f160027 760 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f160028 761 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f160029 762 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f16002a 763 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f16002b 764 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f16002c 765 | int style Base_TextAppearance_AppCompat_Widget_Button 0x7f16002d 766 | int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f16002e 767 | int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f16002f 768 | int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f160030 769 | int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f160031 770 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f160032 771 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f160033 772 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f160034 773 | int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f160035 774 | int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f160036 775 | int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f160037 776 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f160038 777 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f160039 778 | int style Base_ThemeOverlay_AppCompat 0x7f16003a 779 | int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f16003b 780 | int style Base_ThemeOverlay_AppCompat_Dark 0x7f16003c 781 | int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f16003d 782 | int style Base_ThemeOverlay_AppCompat_Dialog 0x7f16003e 783 | int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f16003f 784 | int style Base_ThemeOverlay_AppCompat_Light 0x7f160040 785 | int style Base_Theme_AppCompat 0x7f160041 786 | int style Base_Theme_AppCompat_CompactMenu 0x7f160042 787 | int style Base_Theme_AppCompat_Dialog 0x7f160043 788 | int style Base_Theme_AppCompat_DialogWhenLarge 0x7f160044 789 | int style Base_Theme_AppCompat_Dialog_Alert 0x7f160045 790 | int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f160046 791 | int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f160047 792 | int style Base_Theme_AppCompat_Light 0x7f160048 793 | int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f160049 794 | int style Base_Theme_AppCompat_Light_Dialog 0x7f16004a 795 | int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f16004b 796 | int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f16004c 797 | int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f16004d 798 | int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f16004e 799 | int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f16004f 800 | int style Base_V11_Theme_AppCompat_Dialog 0x7f160050 801 | int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f160051 802 | int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f160052 803 | int style Base_V12_Widget_AppCompat_EditText 0x7f160053 804 | int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f160054 805 | int style Base_V21_Theme_AppCompat 0x7f160055 806 | int style Base_V21_Theme_AppCompat_Dialog 0x7f160056 807 | int style Base_V21_Theme_AppCompat_Light 0x7f160057 808 | int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f160058 809 | int style Base_V22_Theme_AppCompat 0x7f160059 810 | int style Base_V22_Theme_AppCompat_Light 0x7f16005a 811 | int style Base_V23_Theme_AppCompat 0x7f16005b 812 | int style Base_V23_Theme_AppCompat_Light 0x7f16005c 813 | int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f16005d 814 | int style Base_V7_Theme_AppCompat 0x7f16005e 815 | int style Base_V7_Theme_AppCompat_Dialog 0x7f16005f 816 | int style Base_V7_Theme_AppCompat_Light 0x7f160060 817 | int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f160061 818 | int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f160062 819 | int style Base_V7_Widget_AppCompat_EditText 0x7f160063 820 | int style Base_Widget_AppCompat_ActionBar 0x7f160064 821 | int style Base_Widget_AppCompat_ActionBar_Solid 0x7f160065 822 | int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f160066 823 | int style Base_Widget_AppCompat_ActionBar_TabText 0x7f160067 824 | int style Base_Widget_AppCompat_ActionBar_TabView 0x7f160068 825 | int style Base_Widget_AppCompat_ActionButton 0x7f160069 826 | int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f16006a 827 | int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f16006b 828 | int style Base_Widget_AppCompat_ActionMode 0x7f16006c 829 | int style Base_Widget_AppCompat_ActivityChooserView 0x7f16006d 830 | int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f16006e 831 | int style Base_Widget_AppCompat_Button 0x7f16006f 832 | int style Base_Widget_AppCompat_ButtonBar 0x7f160070 833 | int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f160071 834 | int style Base_Widget_AppCompat_Button_Borderless 0x7f160072 835 | int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f160073 836 | int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f160074 837 | int style Base_Widget_AppCompat_Button_Colored 0x7f160075 838 | int style Base_Widget_AppCompat_Button_Small 0x7f160076 839 | int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f160077 840 | int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f160078 841 | int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f160079 842 | int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f16007a 843 | int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f16007b 844 | int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f16007c 845 | int style Base_Widget_AppCompat_EditText 0x7f16007d 846 | int style Base_Widget_AppCompat_ImageButton 0x7f16007e 847 | int style Base_Widget_AppCompat_Light_ActionBar 0x7f16007f 848 | int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f160080 849 | int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f160081 850 | int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f160082 851 | int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f160083 852 | int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f160084 853 | int style Base_Widget_AppCompat_Light_PopupMenu 0x7f160085 854 | int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f160086 855 | int style Base_Widget_AppCompat_ListMenuView 0x7f160087 856 | int style Base_Widget_AppCompat_ListPopupWindow 0x7f160088 857 | int style Base_Widget_AppCompat_ListView 0x7f160089 858 | int style Base_Widget_AppCompat_ListView_DropDown 0x7f16008a 859 | int style Base_Widget_AppCompat_ListView_Menu 0x7f16008b 860 | int style Base_Widget_AppCompat_PopupMenu 0x7f16008c 861 | int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f16008d 862 | int style Base_Widget_AppCompat_PopupWindow 0x7f16008e 863 | int style Base_Widget_AppCompat_ProgressBar 0x7f16008f 864 | int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f160090 865 | int style Base_Widget_AppCompat_RatingBar 0x7f160091 866 | int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f160092 867 | int style Base_Widget_AppCompat_RatingBar_Small 0x7f160093 868 | int style Base_Widget_AppCompat_SearchView 0x7f160094 869 | int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f160095 870 | int style Base_Widget_AppCompat_SeekBar 0x7f160096 871 | int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f160097 872 | int style Base_Widget_AppCompat_Spinner 0x7f160098 873 | int style Base_Widget_AppCompat_Spinner_Underlined 0x7f160099 874 | int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f16009a 875 | int style Base_Widget_AppCompat_Toolbar 0x7f16009b 876 | int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f16009c 877 | int style Platform_AppCompat 0x7f16009d 878 | int style Platform_AppCompat_Light 0x7f16009e 879 | int style Platform_ThemeOverlay_AppCompat 0x7f16009f 880 | int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1600a0 881 | int style Platform_ThemeOverlay_AppCompat_Light 0x7f1600a1 882 | int style Platform_V11_AppCompat 0x7f1600a2 883 | int style Platform_V11_AppCompat_Light 0x7f1600a3 884 | int style Platform_V14_AppCompat 0x7f1600a4 885 | int style Platform_V14_AppCompat_Light 0x7f1600a5 886 | int style Platform_V21_AppCompat 0x7f1600a6 887 | int style Platform_V21_AppCompat_Light 0x7f1600a7 888 | int style Platform_V25_AppCompat 0x7f1600a8 889 | int style Platform_V25_AppCompat_Light 0x7f1600a9 890 | int style Platform_Widget_AppCompat_Spinner 0x7f1600aa 891 | int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1600ab 892 | int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1600ac 893 | int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1600ad 894 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1600ae 895 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1600af 896 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1600b0 897 | int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1600b1 898 | int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1600b2 899 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1600b3 900 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1600b4 901 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1600b5 902 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1600b6 903 | int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1600b7 904 | int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1600b8 905 | int style TextAppearance_AppCompat 0x7f1600b9 906 | int style TextAppearance_AppCompat_Body1 0x7f1600ba 907 | int style TextAppearance_AppCompat_Body2 0x7f1600bb 908 | int style TextAppearance_AppCompat_Button 0x7f1600bc 909 | int style TextAppearance_AppCompat_Caption 0x7f1600bd 910 | int style TextAppearance_AppCompat_Display1 0x7f1600be 911 | int style TextAppearance_AppCompat_Display2 0x7f1600bf 912 | int style TextAppearance_AppCompat_Display3 0x7f1600c0 913 | int style TextAppearance_AppCompat_Display4 0x7f1600c1 914 | int style TextAppearance_AppCompat_Headline 0x7f1600c2 915 | int style TextAppearance_AppCompat_Inverse 0x7f1600c3 916 | int style TextAppearance_AppCompat_Large 0x7f1600c4 917 | int style TextAppearance_AppCompat_Large_Inverse 0x7f1600c5 918 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1600c6 919 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1600c7 920 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1600c8 921 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1600c9 922 | int style TextAppearance_AppCompat_Medium 0x7f1600ca 923 | int style TextAppearance_AppCompat_Medium_Inverse 0x7f1600cb 924 | int style TextAppearance_AppCompat_Menu 0x7f1600cc 925 | int style TextAppearance_AppCompat_Notification 0x7f1600cd 926 | int style TextAppearance_AppCompat_Notification_Info 0x7f1600ce 927 | int style TextAppearance_AppCompat_Notification_Info_Media 0x7f1600cf 928 | int style TextAppearance_AppCompat_Notification_Line2 0x7f1600d0 929 | int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f1600d1 930 | int style TextAppearance_AppCompat_Notification_Media 0x7f1600d2 931 | int style TextAppearance_AppCompat_Notification_Time 0x7f1600d3 932 | int style TextAppearance_AppCompat_Notification_Time_Media 0x7f1600d4 933 | int style TextAppearance_AppCompat_Notification_Title 0x7f1600d5 934 | int style TextAppearance_AppCompat_Notification_Title_Media 0x7f1600d6 935 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1600d7 936 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f1600d8 937 | int style TextAppearance_AppCompat_Small 0x7f1600d9 938 | int style TextAppearance_AppCompat_Small_Inverse 0x7f1600da 939 | int style TextAppearance_AppCompat_Subhead 0x7f1600db 940 | int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1600dc 941 | int style TextAppearance_AppCompat_Title 0x7f1600dd 942 | int style TextAppearance_AppCompat_Title_Inverse 0x7f1600de 943 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1600df 944 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1600e0 945 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1600e1 946 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1600e2 947 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1600e3 948 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1600e4 949 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1600e5 950 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1600e6 951 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1600e7 952 | int style TextAppearance_AppCompat_Widget_Button 0x7f1600e8 953 | int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1600e9 954 | int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1600ea 955 | int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1600eb 956 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1600ec 957 | int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1600ed 958 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1600ee 959 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1600ef 960 | int style TextAppearance_AppCompat_Widget_Switch 0x7f1600f0 961 | int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1600f1 962 | int style TextAppearance_StatusBar_EventContent 0x7f1600f2 963 | int style TextAppearance_StatusBar_EventContent_Info 0x7f1600f3 964 | int style TextAppearance_StatusBar_EventContent_Line2 0x7f1600f4 965 | int style TextAppearance_StatusBar_EventContent_Time 0x7f1600f5 966 | int style TextAppearance_StatusBar_EventContent_Title 0x7f1600f6 967 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1600f7 968 | int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1600f8 969 | int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1600f9 970 | int style ThemeOverlay_AppCompat 0x7f1600fa 971 | int style ThemeOverlay_AppCompat_ActionBar 0x7f1600fb 972 | int style ThemeOverlay_AppCompat_Dark 0x7f1600fc 973 | int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f1600fd 974 | int style ThemeOverlay_AppCompat_Dialog 0x7f1600fe 975 | int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f1600ff 976 | int style ThemeOverlay_AppCompat_Light 0x7f160100 977 | int style Theme_AppCompat 0x7f160101 978 | int style Theme_AppCompat_CompactMenu 0x7f160102 979 | int style Theme_AppCompat_DayNight 0x7f160103 980 | int style Theme_AppCompat_DayNight_DarkActionBar 0x7f160104 981 | int style Theme_AppCompat_DayNight_Dialog 0x7f160105 982 | int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f160106 983 | int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f160107 984 | int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f160108 985 | int style Theme_AppCompat_DayNight_NoActionBar 0x7f160109 986 | int style Theme_AppCompat_Dialog 0x7f16010a 987 | int style Theme_AppCompat_DialogWhenLarge 0x7f16010b 988 | int style Theme_AppCompat_Dialog_Alert 0x7f16010c 989 | int style Theme_AppCompat_Dialog_MinWidth 0x7f16010d 990 | int style Theme_AppCompat_Light 0x7f16010e 991 | int style Theme_AppCompat_Light_DarkActionBar 0x7f16010f 992 | int style Theme_AppCompat_Light_Dialog 0x7f160110 993 | int style Theme_AppCompat_Light_DialogWhenLarge 0x7f160111 994 | int style Theme_AppCompat_Light_Dialog_Alert 0x7f160112 995 | int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f160113 996 | int style Theme_AppCompat_Light_NoActionBar 0x7f160114 997 | int style Theme_AppCompat_NoActionBar 0x7f160115 998 | int style Widget_AppCompat_ActionBar 0x7f160116 999 | int style Widget_AppCompat_ActionBar_Solid 0x7f160117 1000 | int style Widget_AppCompat_ActionBar_TabBar 0x7f160118 1001 | int style Widget_AppCompat_ActionBar_TabText 0x7f160119 1002 | int style Widget_AppCompat_ActionBar_TabView 0x7f16011a 1003 | int style Widget_AppCompat_ActionButton 0x7f16011b 1004 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f16011c 1005 | int style Widget_AppCompat_ActionButton_Overflow 0x7f16011d 1006 | int style Widget_AppCompat_ActionMode 0x7f16011e 1007 | int style Widget_AppCompat_ActivityChooserView 0x7f16011f 1008 | int style Widget_AppCompat_AutoCompleteTextView 0x7f160120 1009 | int style Widget_AppCompat_Button 0x7f160121 1010 | int style Widget_AppCompat_ButtonBar 0x7f160122 1011 | int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f160123 1012 | int style Widget_AppCompat_Button_Borderless 0x7f160124 1013 | int style Widget_AppCompat_Button_Borderless_Colored 0x7f160125 1014 | int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f160126 1015 | int style Widget_AppCompat_Button_Colored 0x7f160127 1016 | int style Widget_AppCompat_Button_Small 0x7f160128 1017 | int style Widget_AppCompat_CompoundButton_CheckBox 0x7f160129 1018 | int style Widget_AppCompat_CompoundButton_RadioButton 0x7f16012a 1019 | int style Widget_AppCompat_CompoundButton_Switch 0x7f16012b 1020 | int style Widget_AppCompat_DrawerArrowToggle 0x7f16012c 1021 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f16012d 1022 | int style Widget_AppCompat_EditText 0x7f16012e 1023 | int style Widget_AppCompat_ImageButton 0x7f16012f 1024 | int style Widget_AppCompat_Light_ActionBar 0x7f160130 1025 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f160131 1026 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f160132 1027 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f160133 1028 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f160134 1029 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f160135 1030 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f160136 1031 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f160137 1032 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f160138 1033 | int style Widget_AppCompat_Light_ActionButton 0x7f160139 1034 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f16013a 1035 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f16013b 1036 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f16013c 1037 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f16013d 1038 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f16013e 1039 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f16013f 1040 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f160140 1041 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f160141 1042 | int style Widget_AppCompat_Light_PopupMenu 0x7f160142 1043 | int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f160143 1044 | int style Widget_AppCompat_Light_SearchView 0x7f160144 1045 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f160145 1046 | int style Widget_AppCompat_ListMenuView 0x7f160146 1047 | int style Widget_AppCompat_ListPopupWindow 0x7f160147 1048 | int style Widget_AppCompat_ListView 0x7f160148 1049 | int style Widget_AppCompat_ListView_DropDown 0x7f160149 1050 | int style Widget_AppCompat_ListView_Menu 0x7f16014a 1051 | int style Widget_AppCompat_NotificationActionContainer 0x7f16014b 1052 | int style Widget_AppCompat_NotificationActionText 0x7f16014c 1053 | int style Widget_AppCompat_PopupMenu 0x7f16014d 1054 | int style Widget_AppCompat_PopupMenu_Overflow 0x7f16014e 1055 | int style Widget_AppCompat_PopupWindow 0x7f16014f 1056 | int style Widget_AppCompat_ProgressBar 0x7f160150 1057 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f160151 1058 | int style Widget_AppCompat_RatingBar 0x7f160152 1059 | int style Widget_AppCompat_RatingBar_Indicator 0x7f160153 1060 | int style Widget_AppCompat_RatingBar_Small 0x7f160154 1061 | int style Widget_AppCompat_SearchView 0x7f160155 1062 | int style Widget_AppCompat_SearchView_ActionBar 0x7f160156 1063 | int style Widget_AppCompat_SeekBar 0x7f160157 1064 | int style Widget_AppCompat_SeekBar_Discrete 0x7f160158 1065 | int style Widget_AppCompat_Spinner 0x7f160159 1066 | int style Widget_AppCompat_Spinner_DropDown 0x7f16015a 1067 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f16015b 1068 | int style Widget_AppCompat_Spinner_Underlined 0x7f16015c 1069 | int style Widget_AppCompat_TextView_SpinnerItem 0x7f16015d 1070 | int style Widget_AppCompat_Toolbar 0x7f16015e 1071 | int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f16015f 1072 | int[] styleable ActionBar { 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056, 0x7f040058, 0x7f04005c, 0x7f04005d, 0x7f040068, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040073, 0x7f040078, 0x7f040085, 0x7f04008d, 0x7f04009a, 0x7f04009d, 0x7f04009e, 0x7f0400b9, 0x7f0400bc, 0x7f0400d4, 0x7f0400dd } 1073 | int styleable ActionBar_background 0 1074 | int styleable ActionBar_backgroundSplit 1 1075 | int styleable ActionBar_backgroundStacked 2 1076 | int styleable ActionBar_contentInsetEnd 3 1077 | int styleable ActionBar_contentInsetEndWithActions 4 1078 | int styleable ActionBar_contentInsetLeft 5 1079 | int styleable ActionBar_contentInsetRight 6 1080 | int styleable ActionBar_contentInsetStart 7 1081 | int styleable ActionBar_contentInsetStartWithNavigation 8 1082 | int styleable ActionBar_customNavigationLayout 9 1083 | int styleable ActionBar_displayOptions 10 1084 | int styleable ActionBar_divider 11 1085 | int styleable ActionBar_elevation 12 1086 | int styleable ActionBar_height 13 1087 | int styleable ActionBar_hideOnContentScroll 14 1088 | int styleable ActionBar_homeAsUpIndicator 15 1089 | int styleable ActionBar_homeLayout 16 1090 | int styleable ActionBar_icon 17 1091 | int styleable ActionBar_indeterminateProgressStyle 18 1092 | int styleable ActionBar_itemPadding 19 1093 | int styleable ActionBar_logo 20 1094 | int styleable ActionBar_navigationMode 21 1095 | int styleable ActionBar_popupTheme 22 1096 | int styleable ActionBar_progressBarPadding 23 1097 | int styleable ActionBar_progressBarStyle 24 1098 | int styleable ActionBar_subtitle 25 1099 | int styleable ActionBar_subtitleTextStyle 26 1100 | int styleable ActionBar_title 27 1101 | int styleable ActionBar_titleTextStyle 28 1102 | int[] styleable ActionBarLayout { 0x010100b3 } 1103 | int styleable ActionBarLayout_android_layout_gravity 0 1104 | int[] styleable ActionMenuItemView { 0x0101013f } 1105 | int styleable ActionMenuItemView_android_minWidth 0 1106 | int[] styleable ActionMode { 0x7f04002e, 0x7f04002f, 0x7f040043, 0x7f04006c, 0x7f0400bc, 0x7f0400dd } 1107 | int styleable ActionMode_background 0 1108 | int styleable ActionMode_backgroundSplit 1 1109 | int styleable ActionMode_closeItemLayout 2 1110 | int styleable ActionMode_height 3 1111 | int styleable ActionMode_subtitleTextStyle 4 1112 | int styleable ActionMode_titleTextStyle 5 1113 | int[] styleable ActivityChooserView { 0x7f040069, 0x7f040075 } 1114 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 1115 | int styleable ActivityChooserView_initialActivityCount 1 1116 | int[] styleable AlertDialog { 0x010100f2, 0x7f04003b, 0x7f04007c, 0x7f04007d, 0x7f04008a, 0x7f0400af, 0x7f0400b0 } 1117 | int styleable AlertDialog_android_layout 0 1118 | int styleable AlertDialog_buttonPanelSideLayout 1 1119 | int styleable AlertDialog_listItemLayout 2 1120 | int styleable AlertDialog_listLayout 3 1121 | int styleable AlertDialog_multiChoiceItemLayout 4 1122 | int styleable AlertDialog_showTitle 5 1123 | int styleable AlertDialog_singleChoiceItemLayout 6 1124 | int[] styleable AppCompatImageView { 0x01010119, 0x7f0400b5 } 1125 | int styleable AppCompatImageView_android_src 0 1126 | int styleable AppCompatImageView_srcCompat 1 1127 | int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3 } 1128 | int styleable AppCompatSeekBar_android_thumb 0 1129 | int styleable AppCompatSeekBar_tickMark 1 1130 | int styleable AppCompatSeekBar_tickMarkTint 2 1131 | int styleable AppCompatSeekBar_tickMarkTintMode 3 1132 | int[] styleable AppCompatTextHelper { 0x0101016e, 0x01010393, 0x0101016f, 0x01010170, 0x01010392, 0x0101016d, 0x01010034 } 1133 | int styleable AppCompatTextHelper_android_drawableBottom 0 1134 | int styleable AppCompatTextHelper_android_drawableEnd 1 1135 | int styleable AppCompatTextHelper_android_drawableLeft 2 1136 | int styleable AppCompatTextHelper_android_drawableRight 3 1137 | int styleable AppCompatTextHelper_android_drawableStart 4 1138 | int styleable AppCompatTextHelper_android_drawableTop 5 1139 | int styleable AppCompatTextHelper_android_textAppearance 6 1140 | int[] styleable AppCompatTextView { 0x01010034, 0x7f0400c2 } 1141 | int styleable AppCompatTextView_android_textAppearance 0 1142 | int styleable AppCompatTextView_textAllCaps 1 1143 | int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x010100ae, 0x01010057, 0x7f04002d, 0x7f040034, 0x7f040035, 0x7f040036, 0x7f040037, 0x7f040038, 0x7f040039, 0x7f04003c, 0x7f04003d, 0x7f040040, 0x7f040041, 0x7f040047, 0x7f040048, 0x7f040049, 0x7f04004a, 0x7f04004b, 0x7f04004c, 0x7f04004d, 0x7f04004e, 0x7f04004f, 0x7f040057, 0x7f04005a, 0x7f04005b, 0x7f04005e, 0x7f040060, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f040067, 0x7f04006e, 0x7f040072, 0x7f04007a, 0x7f04007b, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040082, 0x7f040083, 0x7f040084, 0x7f040095, 0x7f040096, 0x7f040097, 0x7f040099, 0x7f04009b, 0x7f0400a1, 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f0400b2, 0x7f0400b3, 0x7f0400c0, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400de, 0x7f0400df, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0400eb, 0x7f0400ec, 0x7f0400ed } 1144 | int styleable AppCompatTheme_actionBarDivider 0 1145 | int styleable AppCompatTheme_actionBarItemBackground 1 1146 | int styleable AppCompatTheme_actionBarPopupTheme 2 1147 | int styleable AppCompatTheme_actionBarSize 3 1148 | int styleable AppCompatTheme_actionBarSplitStyle 4 1149 | int styleable AppCompatTheme_actionBarStyle 5 1150 | int styleable AppCompatTheme_actionBarTabBarStyle 6 1151 | int styleable AppCompatTheme_actionBarTabStyle 7 1152 | int styleable AppCompatTheme_actionBarTabTextStyle 8 1153 | int styleable AppCompatTheme_actionBarTheme 9 1154 | int styleable AppCompatTheme_actionBarWidgetTheme 10 1155 | int styleable AppCompatTheme_actionButtonStyle 11 1156 | int styleable AppCompatTheme_actionDropDownStyle 12 1157 | int styleable AppCompatTheme_actionMenuTextAppearance 13 1158 | int styleable AppCompatTheme_actionMenuTextColor 14 1159 | int styleable AppCompatTheme_actionModeBackground 15 1160 | int styleable AppCompatTheme_actionModeCloseButtonStyle 16 1161 | int styleable AppCompatTheme_actionModeCloseDrawable 17 1162 | int styleable AppCompatTheme_actionModeCopyDrawable 18 1163 | int styleable AppCompatTheme_actionModeCutDrawable 19 1164 | int styleable AppCompatTheme_actionModeFindDrawable 20 1165 | int styleable AppCompatTheme_actionModePasteDrawable 21 1166 | int styleable AppCompatTheme_actionModePopupWindowStyle 22 1167 | int styleable AppCompatTheme_actionModeSelectAllDrawable 23 1168 | int styleable AppCompatTheme_actionModeShareDrawable 24 1169 | int styleable AppCompatTheme_actionModeSplitBackground 25 1170 | int styleable AppCompatTheme_actionModeStyle 26 1171 | int styleable AppCompatTheme_actionModeWebSearchDrawable 27 1172 | int styleable AppCompatTheme_actionOverflowButtonStyle 28 1173 | int styleable AppCompatTheme_actionOverflowMenuStyle 29 1174 | int styleable AppCompatTheme_activityChooserViewStyle 30 1175 | int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 1176 | int styleable AppCompatTheme_alertDialogCenterButtons 32 1177 | int styleable AppCompatTheme_alertDialogStyle 33 1178 | int styleable AppCompatTheme_alertDialogTheme 34 1179 | int styleable AppCompatTheme_android_windowAnimationStyle 35 1180 | int styleable AppCompatTheme_android_windowIsFloating 36 1181 | int styleable AppCompatTheme_autoCompleteTextViewStyle 37 1182 | int styleable AppCompatTheme_borderlessButtonStyle 38 1183 | int styleable AppCompatTheme_buttonBarButtonStyle 39 1184 | int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 1185 | int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 1186 | int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 1187 | int styleable AppCompatTheme_buttonBarStyle 43 1188 | int styleable AppCompatTheme_buttonStyle 44 1189 | int styleable AppCompatTheme_buttonStyleSmall 45 1190 | int styleable AppCompatTheme_checkboxStyle 46 1191 | int styleable AppCompatTheme_checkedTextViewStyle 47 1192 | int styleable AppCompatTheme_colorAccent 48 1193 | int styleable AppCompatTheme_colorBackgroundFloating 49 1194 | int styleable AppCompatTheme_colorButtonNormal 50 1195 | int styleable AppCompatTheme_colorControlActivated 51 1196 | int styleable AppCompatTheme_colorControlHighlight 52 1197 | int styleable AppCompatTheme_colorControlNormal 53 1198 | int styleable AppCompatTheme_colorPrimary 54 1199 | int styleable AppCompatTheme_colorPrimaryDark 55 1200 | int styleable AppCompatTheme_colorSwitchThumbNormal 56 1201 | int styleable AppCompatTheme_controlBackground 57 1202 | int styleable AppCompatTheme_dialogPreferredPadding 58 1203 | int styleable AppCompatTheme_dialogTheme 59 1204 | int styleable AppCompatTheme_dividerHorizontal 60 1205 | int styleable AppCompatTheme_dividerVertical 61 1206 | int styleable AppCompatTheme_dropDownListViewStyle 62 1207 | int styleable AppCompatTheme_dropdownListPreferredItemHeight 63 1208 | int styleable AppCompatTheme_editTextBackground 64 1209 | int styleable AppCompatTheme_editTextColor 65 1210 | int styleable AppCompatTheme_editTextStyle 66 1211 | int styleable AppCompatTheme_homeAsUpIndicator 67 1212 | int styleable AppCompatTheme_imageButtonStyle 68 1213 | int styleable AppCompatTheme_listChoiceBackgroundIndicator 69 1214 | int styleable AppCompatTheme_listDividerAlertDialog 70 1215 | int styleable AppCompatTheme_listMenuViewStyle 71 1216 | int styleable AppCompatTheme_listPopupWindowStyle 72 1217 | int styleable AppCompatTheme_listPreferredItemHeight 73 1218 | int styleable AppCompatTheme_listPreferredItemHeightLarge 74 1219 | int styleable AppCompatTheme_listPreferredItemHeightSmall 75 1220 | int styleable AppCompatTheme_listPreferredItemPaddingLeft 76 1221 | int styleable AppCompatTheme_listPreferredItemPaddingRight 77 1222 | int styleable AppCompatTheme_panelBackground 78 1223 | int styleable AppCompatTheme_panelMenuListTheme 79 1224 | int styleable AppCompatTheme_panelMenuListWidth 80 1225 | int styleable AppCompatTheme_popupMenuStyle 81 1226 | int styleable AppCompatTheme_popupWindowStyle 82 1227 | int styleable AppCompatTheme_radioButtonStyle 83 1228 | int styleable AppCompatTheme_ratingBarStyle 84 1229 | int styleable AppCompatTheme_ratingBarStyleIndicator 85 1230 | int styleable AppCompatTheme_ratingBarStyleSmall 86 1231 | int styleable AppCompatTheme_searchViewStyle 87 1232 | int styleable AppCompatTheme_seekBarStyle 88 1233 | int styleable AppCompatTheme_selectableItemBackground 89 1234 | int styleable AppCompatTheme_selectableItemBackgroundBorderless 90 1235 | int styleable AppCompatTheme_spinnerDropDownItemStyle 91 1236 | int styleable AppCompatTheme_spinnerStyle 92 1237 | int styleable AppCompatTheme_switchStyle 93 1238 | int styleable AppCompatTheme_textAppearanceLargePopupMenu 94 1239 | int styleable AppCompatTheme_textAppearanceListItem 95 1240 | int styleable AppCompatTheme_textAppearanceListItemSmall 96 1241 | int styleable AppCompatTheme_textAppearancePopupMenuHeader 97 1242 | int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 98 1243 | int styleable AppCompatTheme_textAppearanceSearchResultTitle 99 1244 | int styleable AppCompatTheme_textAppearanceSmallPopupMenu 100 1245 | int styleable AppCompatTheme_textColorAlertDialogListItem 101 1246 | int styleable AppCompatTheme_textColorSearchUrl 102 1247 | int styleable AppCompatTheme_toolbarNavigationButtonStyle 103 1248 | int styleable AppCompatTheme_toolbarStyle 104 1249 | int styleable AppCompatTheme_windowActionBar 105 1250 | int styleable AppCompatTheme_windowActionBarOverlay 106 1251 | int styleable AppCompatTheme_windowActionModeOverlay 107 1252 | int styleable AppCompatTheme_windowFixedHeightMajor 108 1253 | int styleable AppCompatTheme_windowFixedHeightMinor 109 1254 | int styleable AppCompatTheme_windowFixedWidthMajor 110 1255 | int styleable AppCompatTheme_windowFixedWidthMinor 111 1256 | int styleable AppCompatTheme_windowMinWidthMajor 112 1257 | int styleable AppCompatTheme_windowMinWidthMinor 113 1258 | int styleable AppCompatTheme_windowNoTitle 114 1259 | int[] styleable ButtonBarLayout { 0x7f040027 } 1260 | int styleable ButtonBarLayout_allowStacking 0 1261 | int[] styleable ColorStateListItem { 0x7f040028, 0x0101031f, 0x010101a5 } 1262 | int styleable ColorStateListItem_alpha 0 1263 | int styleable ColorStateListItem_android_alpha 1 1264 | int styleable ColorStateListItem_android_color 2 1265 | int[] styleable CompoundButton { 0x01010107, 0x7f04003e, 0x7f04003f } 1266 | int styleable CompoundButton_android_button 0 1267 | int styleable CompoundButton_buttonTint 1 1268 | int styleable CompoundButton_buttonTintMode 2 1269 | int[] styleable DrawerArrowToggle { 0x7f04002b, 0x7f04002c, 0x7f040033, 0x7f040046, 0x7f040061, 0x7f04006a, 0x7f0400b1, 0x7f0400cd } 1270 | int styleable DrawerArrowToggle_arrowHeadLength 0 1271 | int styleable DrawerArrowToggle_arrowShaftLength 1 1272 | int styleable DrawerArrowToggle_barLength 2 1273 | int styleable DrawerArrowToggle_color 3 1274 | int styleable DrawerArrowToggle_drawableSize 4 1275 | int styleable DrawerArrowToggle_gapBetweenBars 5 1276 | int styleable DrawerArrowToggle_spinBars 6 1277 | int styleable DrawerArrowToggle_thickness 7 1278 | int[] styleable KeepCountdownView { 0x7f040029, 0x7f04002a, 0x7f040074, 0x7f040076, 0x7f040088, 0x7f04008e, 0x7f04008f, 0x7f040098, 0x7f0400a2 } 1279 | int styleable KeepCountdownView_arcColor 0 1280 | int styleable KeepCountdownView_arcStrokeWidth 1 1281 | int styleable KeepCountdownView_initDegree 2 1282 | int styleable KeepCountdownView_isCW 3 1283 | int styleable KeepCountdownView_maxNum 4 1284 | int styleable KeepCountdownView_numColor 5 1285 | int styleable KeepCountdownView_numTextSize 6 1286 | int styleable KeepCountdownView_plusNumAnimDuration 7 1287 | int styleable KeepCountdownView_radius 8 1288 | int[] styleable LinearLayoutCompat { 0x01010126, 0x01010127, 0x010100af, 0x010100c4, 0x01010128, 0x7f04005d, 0x7f04005f, 0x7f040089, 0x7f0400ad } 1289 | int styleable LinearLayoutCompat_android_baselineAligned 0 1290 | int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 1291 | int styleable LinearLayoutCompat_android_gravity 2 1292 | int styleable LinearLayoutCompat_android_orientation 3 1293 | int styleable LinearLayoutCompat_android_weightSum 4 1294 | int styleable LinearLayoutCompat_divider 5 1295 | int styleable LinearLayoutCompat_dividerPadding 6 1296 | int styleable LinearLayoutCompat_measureWithLargestChild 7 1297 | int styleable LinearLayoutCompat_showDividers 8 1298 | int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f5, 0x01010181, 0x010100f4 } 1299 | int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 1300 | int styleable LinearLayoutCompat_Layout_android_layout_height 1 1301 | int styleable LinearLayoutCompat_Layout_android_layout_weight 2 1302 | int styleable LinearLayoutCompat_Layout_android_layout_width 3 1303 | int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } 1304 | int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 1305 | int styleable ListPopupWindow_android_dropDownVerticalOffset 1 1306 | int[] styleable MenuGroup { 0x010101e0, 0x0101000e, 0x010100d0, 0x010101de, 0x010101df, 0x01010194 } 1307 | int styleable MenuGroup_android_checkableBehavior 0 1308 | int styleable MenuGroup_android_enabled 1 1309 | int styleable MenuGroup_android_id 2 1310 | int styleable MenuGroup_android_menuCategory 3 1311 | int styleable MenuGroup_android_orderInCategory 4 1312 | int styleable MenuGroup_android_visible 5 1313 | int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x010101e3, 0x010101e5, 0x01010106, 0x0101000e, 0x01010002, 0x010100d0, 0x010101de, 0x010101e4, 0x0101026f, 0x010101df, 0x010101e1, 0x010101e2, 0x01010194, 0x7f0400ac } 1314 | int styleable MenuItem_actionLayout 0 1315 | int styleable MenuItem_actionProviderClass 1 1316 | int styleable MenuItem_actionViewClass 2 1317 | int styleable MenuItem_android_alphabeticShortcut 3 1318 | int styleable MenuItem_android_checkable 4 1319 | int styleable MenuItem_android_checked 5 1320 | int styleable MenuItem_android_enabled 6 1321 | int styleable MenuItem_android_icon 7 1322 | int styleable MenuItem_android_id 8 1323 | int styleable MenuItem_android_menuCategory 9 1324 | int styleable MenuItem_android_numericShortcut 10 1325 | int styleable MenuItem_android_onClick 11 1326 | int styleable MenuItem_android_orderInCategory 12 1327 | int styleable MenuItem_android_title 13 1328 | int styleable MenuItem_android_titleCondensed 14 1329 | int styleable MenuItem_android_visible 15 1330 | int styleable MenuItem_showAsAction 16 1331 | int[] styleable MenuView { 0x0101012f, 0x0101012d, 0x01010130, 0x01010131, 0x0101012c, 0x0101012e, 0x010100ae, 0x7f04009c, 0x7f0400b7 } 1332 | int styleable MenuView_android_headerBackground 0 1333 | int styleable MenuView_android_horizontalDivider 1 1334 | int styleable MenuView_android_itemBackground 2 1335 | int styleable MenuView_android_itemIconDisabledAlpha 3 1336 | int styleable MenuView_android_itemTextAppearance 4 1337 | int styleable MenuView_android_verticalDivider 5 1338 | int styleable MenuView_android_windowAnimationStyle 6 1339 | int styleable MenuView_preserveIconSpacing 7 1340 | int styleable MenuView_subMenuArrow 8 1341 | int[] styleable PopupWindow { 0x010102c9, 0x01010176, 0x7f040090 } 1342 | int styleable PopupWindow_android_popupAnimationStyle 0 1343 | int styleable PopupWindow_android_popupBackground 1 1344 | int styleable PopupWindow_overlapAnchor 2 1345 | int[] styleable PopupWindowBackgroundState { 0x7f0400b6 } 1346 | int styleable PopupWindowBackgroundState_state_above_anchor 0 1347 | int[] styleable RecycleListView { 0x7f040091, 0x7f040094 } 1348 | int styleable RecycleListView_paddingBottomNoButtons 0 1349 | int styleable RecycleListView_paddingTopNoTitle 1 1350 | int[] styleable SearchView { 0x010100da, 0x01010264, 0x01010220, 0x0101011f, 0x7f040042, 0x7f040050, 0x7f040059, 0x7f04006b, 0x7f040071, 0x7f040079, 0x7f04009f, 0x7f0400a0, 0x7f0400a6, 0x7f0400a7, 0x7f0400b8, 0x7f0400bd, 0x7f0400e3 } 1351 | int styleable SearchView_android_focusable 0 1352 | int styleable SearchView_android_imeOptions 1 1353 | int styleable SearchView_android_inputType 2 1354 | int styleable SearchView_android_maxWidth 3 1355 | int styleable SearchView_closeIcon 4 1356 | int styleable SearchView_commitIcon 5 1357 | int styleable SearchView_defaultQueryHint 6 1358 | int styleable SearchView_goIcon 7 1359 | int styleable SearchView_iconifiedByDefault 8 1360 | int styleable SearchView_layout 9 1361 | int styleable SearchView_queryBackground 10 1362 | int styleable SearchView_queryHint 11 1363 | int styleable SearchView_searchHintIcon 12 1364 | int styleable SearchView_searchIcon 13 1365 | int styleable SearchView_submitBackground 14 1366 | int styleable SearchView_suggestionRowLayout 15 1367 | int styleable SearchView_voiceIcon 16 1368 | int[] styleable Spinner { 0x01010262, 0x010100b2, 0x01010176, 0x0101017b, 0x7f04009a } 1369 | int styleable Spinner_android_dropDownWidth 0 1370 | int styleable Spinner_android_entries 1 1371 | int styleable Spinner_android_popupBackground 2 1372 | int styleable Spinner_android_prompt 3 1373 | int styleable Spinner_popupTheme 4 1374 | int[] styleable SwitchCompat { 0x01010125, 0x01010124, 0x01010142, 0x7f0400ae, 0x7f0400b4, 0x7f0400be, 0x7f0400bf, 0x7f0400c1, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2 } 1375 | int styleable SwitchCompat_android_textOff 0 1376 | int styleable SwitchCompat_android_textOn 1 1377 | int styleable SwitchCompat_android_thumb 2 1378 | int styleable SwitchCompat_showText 3 1379 | int styleable SwitchCompat_splitTrack 4 1380 | int styleable SwitchCompat_switchMinWidth 5 1381 | int styleable SwitchCompat_switchPadding 6 1382 | int styleable SwitchCompat_switchTextAppearance 7 1383 | int styleable SwitchCompat_thumbTextPadding 8 1384 | int styleable SwitchCompat_thumbTint 9 1385 | int styleable SwitchCompat_thumbTintMode 10 1386 | int styleable SwitchCompat_track 11 1387 | int styleable SwitchCompat_trackTint 12 1388 | int styleable SwitchCompat_trackTintMode 13 1389 | int[] styleable TextAppearance { 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x0101009a, 0x01010095, 0x01010097, 0x01010096, 0x7f0400c2 } 1390 | int styleable TextAppearance_android_shadowColor 0 1391 | int styleable TextAppearance_android_shadowDx 1 1392 | int styleable TextAppearance_android_shadowDy 2 1393 | int styleable TextAppearance_android_shadowRadius 3 1394 | int styleable TextAppearance_android_textColor 4 1395 | int styleable TextAppearance_android_textColorHint 5 1396 | int styleable TextAppearance_android_textSize 6 1397 | int styleable TextAppearance_android_textStyle 7 1398 | int styleable TextAppearance_android_typeface 8 1399 | int styleable TextAppearance_textAllCaps 9 1400 | int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f04003a, 0x7f040044, 0x7f040045, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056, 0x7f040085, 0x7f040086, 0x7f040087, 0x7f04008b, 0x7f04008c, 0x7f04009a, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc } 1401 | int styleable Toolbar_android_gravity 0 1402 | int styleable Toolbar_android_minHeight 1 1403 | int styleable Toolbar_buttonGravity 2 1404 | int styleable Toolbar_collapseContentDescription 3 1405 | int styleable Toolbar_collapseIcon 4 1406 | int styleable Toolbar_contentInsetEnd 5 1407 | int styleable Toolbar_contentInsetEndWithActions 6 1408 | int styleable Toolbar_contentInsetLeft 7 1409 | int styleable Toolbar_contentInsetRight 8 1410 | int styleable Toolbar_contentInsetStart 9 1411 | int styleable Toolbar_contentInsetStartWithNavigation 10 1412 | int styleable Toolbar_logo 11 1413 | int styleable Toolbar_logoDescription 12 1414 | int styleable Toolbar_maxButtonHeight 13 1415 | int styleable Toolbar_navigationContentDescription 14 1416 | int styleable Toolbar_navigationIcon 15 1417 | int styleable Toolbar_popupTheme 16 1418 | int styleable Toolbar_subtitle 17 1419 | int styleable Toolbar_subtitleTextAppearance 18 1420 | int styleable Toolbar_subtitleTextColor 19 1421 | int styleable Toolbar_title 20 1422 | int styleable Toolbar_titleMargin 21 1423 | int styleable Toolbar_titleMarginBottom 22 1424 | int styleable Toolbar_titleMarginEnd 23 1425 | int styleable Toolbar_titleMarginStart 24 1426 | int styleable Toolbar_titleMarginTop 25 1427 | int styleable Toolbar_titleMargins 26 1428 | int styleable Toolbar_titleTextAppearance 27 1429 | int styleable Toolbar_titleTextColor 28 1430 | int[] styleable View { 0x010100da, 0x01010000, 0x7f040092, 0x7f040093, 0x7f0400cc } 1431 | int styleable View_android_focusable 0 1432 | int styleable View_android_theme 1 1433 | int styleable View_paddingEnd 2 1434 | int styleable View_paddingStart 3 1435 | int styleable View_theme 4 1436 | int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f040031, 0x7f040032 } 1437 | int styleable ViewBackgroundHelper_android_background 0 1438 | int styleable ViewBackgroundHelper_backgroundTint 1 1439 | int styleable ViewBackgroundHelper_backgroundTintMode 2 1440 | int[] styleable ViewStubCompat { 0x010100d0, 0x010100f3, 0x010100f2 } 1441 | int styleable ViewStubCompat_android_id 0 1442 | int styleable ViewStubCompat_android_inflatedId 1 1443 | int styleable ViewStubCompat_android_layout 2 1444 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/bundles/debug/res/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | KeepCountdownView 5 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/compat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/compat/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/coreui/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/coreui/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/coreutils/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/coreutils/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/fragment/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/fragment/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/graphics/drawable/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/graphics/drawable/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/mediacompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/mediacompat/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v4/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v4/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/BuildConfig.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$1.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$2.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$3.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$4.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$5.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$6.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$7.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$CountdownListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView$CountdownListener.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/KeepCountdownView.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$anim.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$attr.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$bool.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$color.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$dimen.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$drawable.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$id.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$integer.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$layout.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$string.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$style.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R$styleable.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/classes/debug/com/KeepCountdownView/R.class -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/debug-mergeJniLibs/merge-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/incremental/debug-mergeJniLibs/merge-state -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Wed Feb 27 11:38:22 CST 2019 2 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | KeepCountdownView 5 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/incremental/packageDebugResources/merger.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | KeepCountdownView -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/intermediate-jars/debug/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/KeepCountdownView/build/intermediates/intermediate-jars/debug/classes.jar -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/intermediate-jars/debug/res.jar: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/javaPrecompile/debug/annotationProcessors.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/manifests/aapt/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/manifests/aapt/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{"packageId":"com.KeepCountdownView","split":""}}] -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/manifests/full/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"AndroidManifest.xml","properties":{"packageId":"com.KeepCountdownView","split":""}}] -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/res/debug/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"PROCESSED_RES"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"resources-debug.ap_","properties":{"packageId":"com.KeepCountdownView","split":""}}] -------------------------------------------------------------------------------- /KeepCountdownView/build/intermediates/transforms/mergeJniLibs/debug/__content__.json: -------------------------------------------------------------------------------- 1 | [{"name":"resources","index":0,"scopes":["PROJECT"],"types":["NATIVE_LIBS"],"format":"DIRECTORY","present":false}] -------------------------------------------------------------------------------- /KeepCountdownView/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- 1 | -- Merging decision tree log --- 2 | manifest 3 | ADDED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 4 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 5 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 6 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 7 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 8 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 9 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 10 | package 11 | ADDED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:2:5-36 12 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 13 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 14 | android:versionName 15 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 16 | ADDED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 17 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 18 | android:versionCode 19 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 20 | ADDED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:1-2:39 21 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 22 | xmlns:android 23 | ADDED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml:1:11-69 24 | uses-sdk 25 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml reason: use-sdk injection requested 26 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 27 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 28 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 29 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 30 | android:targetSdkVersion 31 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 32 | ADDED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 33 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 34 | android:minSdkVersion 35 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 36 | ADDED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 37 | INJECTED from /Users/chenchaoyong/AndroidStudioProjects/MyApplication/KeepCountdownView/src/main/AndroidManifest.xml 38 | -------------------------------------------------------------------------------- /KeepCountdownView/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /KeepCountdownView/src/androidTest/java/com/KeepCountdownView/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.KeepCountdownView; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumented test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("com.KeepCountdownView.test", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /KeepCountdownView/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /KeepCountdownView/src/main/java/com/KeepCountdownView/KeepCountdownView.java: -------------------------------------------------------------------------------- 1 | package com.KeepCountdownView; 2 | 3 | import android.animation.Animator; 4 | import android.animation.AnimatorListenerAdapter; 5 | import android.animation.AnimatorSet; 6 | import android.animation.ValueAnimator; 7 | import android.content.Context; 8 | import android.content.res.TypedArray; 9 | import android.graphics.Canvas; 10 | import android.graphics.Paint; 11 | import android.graphics.RectF; 12 | import android.util.AttributeSet; 13 | import android.util.TypedValue; 14 | import android.view.View; 15 | import android.view.animation.LinearInterpolator; 16 | 17 | /** 18 | * Created by ccy(17022) on 2019/2/26 下午2:10 19 | * 仿Keep休息倒计时控件 20 | */ 21 | public class KeepCountdownView extends View { 22 | 23 | //默认值 24 | public static final int ARC_COLOR = 0xff33cc66; 25 | public static final int NUM_COLOR = 0xff33cc66; 26 | public static final int ARC_STROKE_WIDTH_IN_DP = 5; 27 | public static final int NUM_TEXT_SIZE_IN_SP = 70; 28 | public static final float RADIUS_IN_DP = 90; 29 | public static final int INIT_DEGREE = 270; 30 | public static final int MAX_NUM = 20; 31 | public static final boolean IS_CW = false; 32 | public static final float PLUS_NUM_ANIM_DURATION = 0.8f; 33 | 34 | //属性相关 35 | 36 | /** 37 | * 圆弧颜色 38 | */ 39 | private int arcColor; 40 | /** 41 | * 数字颜色 42 | */ 43 | private int numColor; 44 | /** 45 | * 圆弧厚度 px 46 | */ 47 | private float arcStrokeWidth; 48 | /** 49 | * 数字大小 px 50 | */ 51 | private float numTextSize; 52 | /** 53 | * 圆弧半径 54 | */ 55 | private float radius; 56 | /** 57 | * 倒计时开始角度 58 | */ 59 | private int initDegree; 60 | /** 61 | * 是否顺时针倒计时 62 | */ 63 | private boolean isCW; 64 | /** 65 | * 倒计时最大数值(时长) 66 | */ 67 | private float maxNum; 68 | /** 69 | * 见{@link #plus(int)} 70 | */ 71 | private float maxNumForText; //用于文字 72 | /** 73 | * 动态增加、减少倒计时的圆弧动画时长(s) 74 | */ 75 | private float plusNumAnimDuration; 76 | 77 | //绘图相关 78 | 79 | private Paint arcPaint; 80 | private Paint numPaint; 81 | private float arcFraction = 1.0f; 82 | private float numFraction = 1.0f; 83 | private RectF arcRectF; 84 | private CountdownListener countdownListener; 85 | 86 | private AnimatorSet countdownAnim; 87 | private ValueAnimator numCountdownAnim; 88 | private ValueAnimator arcCountdownAnim; 89 | private ValueAnimator plusArcAnim; 90 | private boolean canceledByOut = false; 91 | 92 | 93 | public KeepCountdownView(Context context) { 94 | this(context, null); 95 | } 96 | 97 | public KeepCountdownView(Context context, AttributeSet attrs) { 98 | this(context, attrs, 0); 99 | } 100 | 101 | public KeepCountdownView(Context context, AttributeSet attrs, int defStyle) { 102 | super(context, attrs, defStyle); 103 | TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.KeepCountdownView); 104 | arcColor = ta.getColor(R.styleable.KeepCountdownView_arcColor, ARC_COLOR); 105 | numColor = ta.getColor(R.styleable.KeepCountdownView_numColor, NUM_COLOR); 106 | arcStrokeWidth = ta.getDimension(R.styleable.KeepCountdownView_arcStrokeWidth, 107 | dp2px(ARC_STROKE_WIDTH_IN_DP)); 108 | numTextSize = ta.getDimension(R.styleable.KeepCountdownView_numTextSize, 109 | sp2px(NUM_TEXT_SIZE_IN_SP)); 110 | radius = ta.getDimension(R.styleable.KeepCountdownView_radius, dp2px(RADIUS_IN_DP)); 111 | initDegree = ta.getInt(R.styleable.KeepCountdownView_initDegree, INIT_DEGREE); 112 | maxNum = maxNumForText = ta.getInt(R.styleable.KeepCountdownView_maxNum, MAX_NUM); 113 | isCW = ta.getBoolean(R.styleable.KeepCountdownView_isCW, IS_CW); 114 | plusNumAnimDuration = ta.getFloat(R.styleable.KeepCountdownView_plusNumAnimDuration, 115 | PLUS_NUM_ANIM_DURATION); 116 | ta.recycle(); 117 | initDegree = initDegree % 360; 118 | 119 | initPaint(); 120 | 121 | initData(); 122 | } 123 | 124 | private void initPaint() { 125 | arcPaint = new Paint(Paint.ANTI_ALIAS_FLAG); 126 | arcPaint.setColor(arcColor); 127 | arcPaint.setStrokeWidth(arcStrokeWidth); 128 | arcPaint.setStyle(Paint.Style.STROKE); 129 | // arcPaint.setStrokeCap(Paint.Cap.ROUND); //圆角 130 | 131 | numPaint = new Paint(Paint.ANTI_ALIAS_FLAG); 132 | numPaint.setColor(numColor); 133 | numPaint.setTextSize(numTextSize); 134 | numPaint.setTextAlign(Paint.Align.CENTER); 135 | } 136 | 137 | private void initData() { 138 | arcRectF = new RectF(-radius, -radius, radius, radius); 139 | } 140 | 141 | @Override 142 | protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { 143 | super.onMeasure(widthMeasureSpec, heightMeasureSpec); 144 | int wSize = MeasureSpec.getSize(widthMeasureSpec); 145 | int wMode = MeasureSpec.getMode(widthMeasureSpec); 146 | int hSize = MeasureSpec.getSize(heightMeasureSpec); 147 | int hMode = MeasureSpec.getMode(heightMeasureSpec); 148 | 149 | //WRAP_CONTENT 150 | if (wMode != MeasureSpec.EXACTLY) { 151 | wSize = calculateMinWidth(); 152 | } 153 | if (hMode != MeasureSpec.EXACTLY) { 154 | hSize = calculateMinWidth(); 155 | } 156 | setMeasuredDimension(wSize, hSize); 157 | } 158 | 159 | /** 160 | * 计算控件最小边长 161 | * 162 | * @return 163 | */ 164 | private int calculateMinWidth() { 165 | float minWidth = (arcStrokeWidth / 2.0f + radius) * 2; 166 | return (int) (minWidth + dp2px(4)); 167 | } 168 | 169 | @Override 170 | protected void onDraw(Canvas canvas) { 171 | super.onDraw(canvas); 172 | 173 | canvas.translate(getMeasuredWidth() / 2.0f, getMeasuredHeight() / 2.0f); 174 | 175 | drawArc(canvas); 176 | 177 | drawNum(canvas); 178 | } 179 | 180 | private void drawNum(Canvas canvas) { 181 | canvas.save(); 182 | 183 | Paint.FontMetrics metrics = numPaint.getFontMetrics(); 184 | String currentNum = "" + (int) Math.ceil(getCurrentNumByFraction(numFraction, 185 | maxNumForText)); 186 | canvas.drawText(currentNum 187 | , 0 188 | , 0 - (metrics.ascent + metrics.descent) / 2 //真正居中); 189 | , numPaint); 190 | 191 | canvas.restore(); 192 | } 193 | 194 | private void drawArc(Canvas canvas) { 195 | canvas.save(); 196 | 197 | float currentSweepDegree = getCurrentSweepDegree(arcFraction, 360); 198 | float startAngle, sweepAngle; 199 | if (isCW) { 200 | startAngle = initDegree - currentSweepDegree; 201 | sweepAngle = currentSweepDegree; 202 | } else { 203 | startAngle = initDegree; 204 | sweepAngle = currentSweepDegree; 205 | } 206 | canvas.drawArc(arcRectF 207 | , startAngle 208 | , sweepAngle 209 | , false 210 | , arcPaint); 211 | 212 | canvas.restore(); 213 | } 214 | 215 | 216 | public void startCountDown() { 217 | if (countdownAnim != null && countdownAnim.isRunning()) { 218 | countdownAnim.cancel(); 219 | countdownAnim = null; 220 | } 221 | countdownAnim = new AnimatorSet(); 222 | countdownAnim.playTogether(getNumAnim(), getArcAnim()); 223 | countdownAnim.setInterpolator(new LinearInterpolator()); 224 | countdownAnim.addListener(new AnimatorListenerAdapter() { 225 | 226 | @Override 227 | public void onAnimationCancel(Animator animation) { 228 | canceledByOut = true; 229 | } 230 | 231 | @Override 232 | public void onAnimationEnd(Animator animation) { 233 | if (canceledByOut) { 234 | canceledByOut = false; 235 | return; 236 | } 237 | if (countdownListener != null) { 238 | countdownListener.onEnd(); 239 | } 240 | } 241 | 242 | @Override 243 | public void onAnimationStart(Animator animation) { 244 | if (countdownListener != null) { 245 | countdownListener.onStart(); 246 | } 247 | } 248 | }); 249 | countdownAnim.start(); 250 | 251 | 252 | } 253 | 254 | private ValueAnimator getNumAnim() { 255 | if (numCountdownAnim != null) { 256 | numCountdownAnim.cancel(); 257 | numCountdownAnim = null; 258 | } 259 | numCountdownAnim = ValueAnimator.ofFloat(numFraction, 0.0f); 260 | numCountdownAnim.setInterpolator(new LinearInterpolator()); 261 | numCountdownAnim.setDuration((long) (getCurrentNumByFraction(numFraction, maxNumForText) * 1000)); 262 | numCountdownAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 263 | @Override 264 | public void onAnimationUpdate(ValueAnimator animation) { 265 | numFraction = (float) animation.getAnimatedValue(); 266 | postInvalidate(); 267 | } 268 | }); 269 | 270 | return numCountdownAnim; 271 | } 272 | 273 | private ValueAnimator getArcAnim() { 274 | if (arcCountdownAnim != null) { 275 | arcCountdownAnim.cancel(); 276 | arcCountdownAnim = null; 277 | } 278 | arcCountdownAnim = ValueAnimator.ofFloat(arcFraction, 0.0f); 279 | arcCountdownAnim.setInterpolator(new LinearInterpolator()); 280 | arcCountdownAnim.setDuration((long) (getCurrentNumByFraction(arcFraction, maxNum) * 1000)); 281 | arcCountdownAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 282 | @Override 283 | public void onAnimationUpdate(ValueAnimator animation) { 284 | arcFraction = (float) animation.getAnimatedValue(); 285 | postInvalidate(); 286 | } 287 | }); 288 | 289 | return arcCountdownAnim; 290 | } 291 | 292 | 293 | /** 294 | * 重置 295 | */ 296 | public void reset() { 297 | if (countdownAnim != null) { 298 | countdownAnim.cancel(); 299 | countdownAnim = null; 300 | } 301 | if (plusArcAnim != null) { 302 | plusArcAnim.cancel(); 303 | plusArcAnim = null; 304 | } 305 | if (numCountdownAnim != null) { 306 | numCountdownAnim.cancel(); 307 | numCountdownAnim = null; 308 | } 309 | if (arcCountdownAnim != null) { 310 | arcCountdownAnim.cancel(); 311 | arcCountdownAnim = null; 312 | } 313 | arcFraction = 1.0f; 314 | numFraction = 1.0f; 315 | invalidate(); 316 | } 317 | 318 | /** 319 | * 增加、减少倒计时时间 320 | * 1、当plusNum为正数,若plusNum + currentNum > maxNum,那么圆弧会增长到超过360度,所以一旦到360度后,应当重新根据新maxNum重置动画速度 321 | * 2、当plusNum为负数,若plusNum + currentNum < 0,即倒计时直接减到结束了 322 | * 3、计算时要考虑到圆弧增长动画时长plusNumDuration的影响。 323 | * 324 | * @param plusNum 325 | */ 326 | public void plus(int plusNum) { 327 | if (countdownAnim != null) { 328 | countdownAnim.cancel(); 329 | } 330 | if (numCountdownAnim != null) { 331 | numCountdownAnim.cancel(); 332 | } 333 | if (arcCountdownAnim != null) { 334 | arcCountdownAnim.cancel(); 335 | } 336 | 337 | if (plusArcAnim != null && plusArcAnim.isRunning()) { 338 | //正在增长动画变化中,不允许重叠调用 339 | return; 340 | } 341 | 342 | float gotoNum = plusNum + getCurrentNumByFraction(numFraction, maxNum); 343 | float gotoFraction = getCurrentFractionByNum(gotoNum, maxNum); 344 | 345 | //如果增加、减少的时间比圆弧增长动画还短,那么直接变过去 346 | if (Math.abs(plusNum) <= plusNumAnimDuration) { 347 | //情况1:直接减到了0,那么动画结束 348 | if (gotoNum <= 0) { 349 | numFraction = arcFraction = 0.0f; 350 | invalidate(); 351 | if (countdownListener != null) { 352 | countdownListener.onEnd(); 353 | } 354 | return; 355 | } 356 | //情况2:加到了比原来maxNum还大,那么直接变回360度然后重新倒计时 357 | if (gotoNum > maxNum) { 358 | maxNum = maxNumForText = gotoNum; 359 | numFraction = arcFraction = 1.0f; 360 | } else { 361 | //情况3:正常变到对应位置 362 | numFraction = arcFraction = gotoFraction; 363 | } 364 | startCountDown(); 365 | return; 366 | } 367 | 368 | //增加、减少的时间比圆弧增长动画长,可以做动画 369 | if (plusNum > 0) { 370 | //情况1:减掉圆弧增长动画时长后仍比原来maxNum还大,那么就是圆弧变回360度然后重新根据剩余时间进行倒计时 371 | if (gotoNum - plusNumAnimDuration > maxNum) { 372 | //数字直接更新到最新值并开始倒计时,圆弧则要动画到最新值 373 | maxNum = maxNumForText = gotoNum; 374 | gotoFraction = 1.0f; 375 | numFraction = 1.0f; 376 | getNumAnim().start(); 377 | 378 | plusArcAnim = ValueAnimator.ofFloat(arcFraction, gotoFraction); 379 | plusArcAnim.setInterpolator(new LinearInterpolator()); 380 | plusArcAnim.setDuration((long) (plusNumAnimDuration * 1000)); 381 | plusArcAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 382 | @Override 383 | public void onAnimationUpdate(ValueAnimator animation) { 384 | arcFraction = (float) animation.getAnimatedValue(); 385 | postInvalidate(); 386 | } 387 | }); 388 | plusArcAnim.addListener(new AnimatorListenerAdapter() { 389 | @Override 390 | public void onAnimationCancel(Animator animation) { 391 | canceledByOut = true; 392 | } 393 | 394 | @Override 395 | public void onAnimationEnd(Animator animation) { 396 | if (canceledByOut) { 397 | canceledByOut = false; 398 | return; 399 | } 400 | //文字是直接变到新的值然后动画倒计时的,但是圆弧需要花费plusNumAnimDuration的时间去做 401 | //增长动画,等增长动画结束后(也就是增回到360度后),此时圆弧开始重新倒计时,其倒计时时间 402 | //是减去plusNumAnimDuration所剩下的时间,这是区别于文字的,这是额外定义maxNumForText的原因 403 | maxNum -= plusNumAnimDuration; 404 | getArcAnim().start(); 405 | } 406 | }); 407 | plusArcAnim.start(); 408 | } else { 409 | //情况2:减掉增长动画时长后比原来maxNum小 410 | 411 | //数字直接更新到最新值并开始倒计时动画,圆弧则要动画到最新值 412 | numFraction = gotoFraction; 413 | getNumAnim().start(); 414 | 415 | gotoFraction = getCurrentFractionByNum(gotoNum - plusNumAnimDuration, maxNum); 416 | plusArcAnim = ValueAnimator.ofFloat(arcFraction, gotoFraction); 417 | plusArcAnim.setInterpolator(new LinearInterpolator()); 418 | plusArcAnim.setDuration((long) (plusNumAnimDuration * 1000)); 419 | plusArcAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() { 420 | @Override 421 | public void onAnimationUpdate(ValueAnimator animation) { 422 | arcFraction = (float) animation.getAnimatedValue(); 423 | postInvalidate(); 424 | } 425 | }); 426 | plusArcAnim.addListener(new AnimatorListenerAdapter() { 427 | @Override 428 | public void onAnimationCancel(Animator animation) { 429 | canceledByOut = true; 430 | } 431 | 432 | @Override 433 | public void onAnimationEnd(Animator animation) { 434 | if (canceledByOut) { 435 | canceledByOut = false; 436 | return; 437 | } 438 | getArcAnim().start(); 439 | } 440 | }); 441 | plusArcAnim.start(); 442 | } 443 | 444 | } else if (plusNum < 0) { 445 | //todo 思路同上。略 446 | } 447 | } 448 | 449 | @Override 450 | protected void onDetachedFromWindow() { 451 | reset(); 452 | super.onDetachedFromWindow(); 453 | 454 | } 455 | 456 | 457 | /** 458 | * 根据当前倒计时进度比例和倒计时时长换算出当前倒计时值 459 | * 460 | * @param numFraction 当前倒计时进度比例 461 | * @param maxNum 倒计时最大值(倒计时时长) 462 | * @return 当前倒计时值(s ) 463 | */ 464 | public float getCurrentNumByFraction(float numFraction, float maxNum) { 465 | return numFraction * maxNum; 466 | } 467 | 468 | /** 469 | * 根据当前倒计时值和倒计时时长换算出进度比例 470 | * 471 | * @param currentNum 当前倒计时值(s) 472 | * @param maxNum 倒计时最大值(倒计时时长) 473 | * @return 进度比例 474 | */ 475 | public float getCurrentFractionByNum(float currentNum, float maxNum) { 476 | return currentNum / maxNum; 477 | } 478 | 479 | /** 480 | * 圆弧当前弧度计算 481 | * 482 | * @param arcFraction 483 | * @param maxDegree 484 | * @return 485 | */ 486 | public float getCurrentSweepDegree(float arcFraction, int maxDegree) { 487 | return maxDegree * arcFraction; 488 | } 489 | 490 | // todo 各属性的getter、setter略。 491 | // todo 注意setter逻辑要根据具体情况调用invalidate、requestLayout、重置动画等操作。 492 | 493 | 494 | private float dp2px(float dp) { 495 | return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, 496 | getResources().getDisplayMetrics()); 497 | } 498 | 499 | private float sp2px(float sp) { 500 | return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_SP, sp, 501 | getResources().getDisplayMetrics()); 502 | } 503 | 504 | public CountdownListener getCountdownListener() { 505 | return countdownListener; 506 | } 507 | 508 | public void setCountdownListener(CountdownListener countdownListener) { 509 | this.countdownListener = countdownListener; 510 | } 511 | 512 | 513 | /** 514 | * 监听接口 515 | */ 516 | public interface CountdownListener { 517 | 518 | void onStart(); 519 | 520 | void onEnd(); 521 | 522 | } 523 | 524 | 525 | } 526 | -------------------------------------------------------------------------------- /KeepCountdownView/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /KeepCountdownView/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | KeepCountdownView 3 | 4 | -------------------------------------------------------------------------------- /KeepCountdownView/src/test/java/com/KeepCountdownView/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.KeepCountdownView; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KeepCountdownView 2 | 仿Keep运动休息倒计时控件 3 | 4 | ## 效果 5 | 6 | ![效果图](https://github.com/CCY0122/KeepCountdownView/blob/master/dosbi-gbms4.gif) 7 | 8 | ## 使用方法 9 | 10 | 11 | xml: 12 | ```xml 13 | 21 | ``` 22 | 23 | code: 24 | ```java 25 | @Override 26 | protected void onCreate(@Nullable Bundle savedInstanceState) { 27 | super.onCreate(savedInstanceState); 28 | setContentView(R.layout.keep_act); 29 | ButterKnife.bind(this); 30 | //倒计时监听 31 | keep1.setCountdownListener(new KeepCountdownView.CountdownListener() { 32 | @Override 33 | public void onStart() { 34 | } 35 | 36 | @Override 37 | public void onEnd() { 38 | 39 | } 40 | }); 41 | } 42 | 43 | @OnClick(R.id.b1) 44 | public void b1(View v) { 45 | keep1.plus(5);//增加5s 46 | 47 | } 48 | 49 | @OnClick(R.id.b2) 50 | public void b2() { 51 | keep1.post(new Runnable() { 52 | @Override 53 | public void run() { 54 | keep1.startCountDown();//开始倒计时 55 | } 56 | }); 57 | } 58 | 59 | @OnClick(R.id.b4) 60 | public void b4() { 61 | keep1.reset();//重置 62 | } 63 | ``` 64 | 65 | ## 可选属性 66 | 67 | |描述|xml对应属性|默认值| 68 | |---|---|---| 69 | |圆弧颜色|arcColor|0xff33cc66| 70 | |数字颜色|numColor|0xff33cc66| 71 | |圆弧厚度|arcStrokeWidth|5dp| 72 | |数字大小|numTextSize|70sp| 73 | |倒计时开始角度|initDegree|270°| 74 | |倒计时时间|maxNum|20| 75 | |是否顺时针倒计时|isCW|false| 76 | |圆半径|radius|90dp| 77 | |动态增加/减少时间时圆弧增长动画时长|plusNumAnimDuration|0.8s| 78 | 79 | 80 | -------------------------------------------------------------------------------- /dosbi-gbms4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCY0122/KeepCountdownView/54222cd0b1c4a0e018c9f3013fb35dab5aa75e13/dosbi-gbms4.gif --------------------------------------------------------------------------------