├── app ├── .gitignore ├── plugin.jks ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ └── drawable │ │ │ │ └── ic_launcher_background.xml │ │ ├── java │ │ │ └── keven │ │ │ │ └── zcdog │ │ │ │ └── retryvirtualapk │ │ │ │ ├── MyAppApplication.java │ │ │ │ └── MainActivity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── keven │ │ │ └── zcdog │ │ │ └── retryvirtualapk │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── keven │ │ └── zcdog │ │ └── retryvirtualapk │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── myaarhost ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ └── layout │ │ │ │ └── activity_host_main.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── keven │ │ │ └── zcdog │ │ │ └── myaarhost │ │ │ ├── HostMyApp.java │ │ │ └── HostMainActivity.java │ ├── test │ │ └── java │ │ │ └── keven │ │ │ └── zcdog │ │ │ └── myaarhost │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── keven │ │ └── zcdog │ │ └── myaarhost │ │ └── ExampleInstrumentedTest.java ├── build.gradle └── proguard-rules.pro ├── pluginvirtual ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── drawable │ │ │ │ ├── head.jpg │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── layout │ │ │ │ └── plugin_activity_main.xml │ │ │ └── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ ├── java │ │ │ └── keven │ │ │ │ └── zcdog │ │ │ │ └── pluginvirtual │ │ │ │ ├── PluginMainActivity.java │ │ │ │ └── MyAlertDialog.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── keven │ │ │ └── zcdog │ │ │ └── pluginvirtual │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── keven │ │ └── zcdog │ │ └── pluginvirtual │ │ └── ExampleInstrumentedTest.java ├── release │ ├── pluginvirtual-release.apk │ └── output.json ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── .idea ├── caches │ ├── gradle_models.ser │ └── build_file_checksums.ser ├── encodings.xml ├── vcs.xml ├── runConfigurations.xml ├── modules.xml ├── gradle.xml └── misc.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── gradle.properties ├── host ├── versions.txt └── Host_R.txt ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /myaarhost/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /pluginvirtual/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':pluginvirtual', ':myaarhost' 2 | -------------------------------------------------------------------------------- /app/plugin.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/plugin.jks -------------------------------------------------------------------------------- /.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RetryVirtualApk 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /myaarhost/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyAarHost 3 | 4 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | pluginvirtual 3 | 4 | -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/drawable/head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/drawable/head.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pluginvirtual/release/pluginvirtual-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/release/pluginvirtual-release.apk -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keven0632/VirtualAarDemo/HEAD/pluginvirtual/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /pluginvirtual/release/output.json: -------------------------------------------------------------------------------- 1 | [{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1},"path":"pluginvirtual-release.apk","properties":{"packageId":"keven.zcdog.pluginvirtual","split":"","minSdkVersion":"15"}}] -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Apr 16 16:25:19 CST 2019 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /myaarhost/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/keven/zcdog/retryvirtualapk/MyAppApplication.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.retryvirtualapk; 2 | 3 | import android.app.Application; 4 | import android.content.Context; 5 | 6 | import keven.zcdog.myaarhost.HostMyApp; 7 | 8 | /** 9 | * Created by zhengjian on 2019/4/16. 10 | */ 11 | 12 | public class MyAppApplication extends Application { 13 | @Override 14 | protected void attachBaseContext(Context base) { 15 | super.attachBaseContext(base); 16 | HostMyApp.init(this); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /myaarhost/src/test/java/keven/zcdog/myaarhost/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.myaarhost; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/test/java/keven/zcdog/retryvirtualapk/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.retryvirtualapk; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /pluginvirtual/src/test/java/keven/zcdog/pluginvirtual/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.pluginvirtual; 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() throws Exception { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /pluginvirtual/src/main/java/keven/zcdog/pluginvirtual/PluginMainActivity.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.pluginvirtual; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | import android.view.View; 6 | 7 | public class PluginMainActivity extends AppCompatActivity { 8 | 9 | @Override 10 | protected void onCreate(Bundle savedInstanceState) { 11 | super.onCreate(savedInstanceState); 12 | setContentView(R.layout.plugin_activity_main); 13 | 14 | 15 | } 16 | 17 | public void openWindow(View view){ 18 | MyAlertDialog.showDialog(this); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 20 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | org.gradle.jvmargs=-Xmx1536m 13 | 14 | # When configured, Gradle will run in incubating parallel mode. 15 | # This option should only be used with decoupled projects. More details, visit 16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 17 | # org.gradle.parallel=true 18 | android.useDexArchive=false -------------------------------------------------------------------------------- /host/versions.txt: -------------------------------------------------------------------------------- 1 | android.arch.core:common:1.0.0 11156 2 | android.arch.lifecycle:common:1.0.0 12366 3 | android.arch.lifecycle:runtime:1.0.0 4096 4 | com.android.support.constraint:constraint-layout-solver:1.1.3 120857 5 | com.android.support.constraint:constraint-layout:1.1.3 0 6 | com.android.support:animated-vector-drawable:26.1.0 4096 7 | com.android.support:appcompat-v7:26.1.0 4096 8 | com.android.support:support-annotations:26.1.0 24712 9 | com.android.support:support-compat:26.1.0 4096 10 | com.android.support:support-core-ui:26.1.0 4096 11 | com.android.support:support-core-utils:26.1.0 0 12 | com.android.support:support-fragment:26.1.0 0 13 | com.android.support:support-media-compat:26.1.0 4096 14 | com.android.support:support-v4:26.1.0 0 15 | com.android.support:support-vector-drawable:26.1.0 0 16 | com.didi.virtualapk:core:0.9.8 4096 17 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /app/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 | -------------------------------------------------------------------------------- /pluginvirtual/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 | -------------------------------------------------------------------------------- /myaarhost/src/androidTest/java/keven/zcdog/myaarhost/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.myaarhost; 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() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("keven.zcdog.myaarhost.test", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/androidTest/java/keven/zcdog/retryvirtualapk/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.retryvirtualapk; 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() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("keven.zcdog.retryvirtualapk", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /pluginvirtual/src/androidTest/java/keven/zcdog/pluginvirtual/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.pluginvirtual; 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() throws Exception { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("keven.zcdog.pluginvirtual", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 26 5 | defaultConfig { 6 | applicationId "keven.zcdog.retryvirtualapk" 7 | minSdkVersion 15 8 | targetSdkVersion 26 9 | versionCode 1 10 | versionName "1.0" 11 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | 21 | dependencies { 22 | implementation fileTree(include: ['*.jar'], dir: 'libs') 23 | implementation 'com.android.support:appcompat-v7:26.1.0' 24 | implementation 'com.android.support.constraint:constraint-layout:1.1.3' 25 | testImplementation 'junit:junit:4.12' 26 | compile 'com.didi.virtualapk:core:0.9.8' 27 | implementation project(':myaarhost') 28 | } 29 | -------------------------------------------------------------------------------- /myaarhost/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | //apply plugin: 'com.android.application' 3 | 4 | //apply plugin: 'com.didi.virtualapk.host' 5 | android { 6 | compileSdkVersion 26 7 | 8 | 9 | 10 | defaultConfig { 11 | minSdkVersion 15 12 | targetSdkVersion 26 13 | versionCode 1 14 | versionName "1.0" 15 | 16 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 17 | 18 | } 19 | 20 | buildTypes { 21 | release { 22 | minifyEnabled false 23 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 24 | } 25 | } 26 | 27 | } 28 | 29 | dependencies { 30 | implementation fileTree(dir: 'libs', include: ['*.jar']) 31 | 32 | implementation 'com.android.support:appcompat-v7:26.1.0' 33 | implementation 'com.android.support.constraint:constraint-layout:1.1.3' 34 | testImplementation 'junit:junit:4.12' 35 | // compile 'com.didi.virtualapk:core:0.9.8' 36 | } 37 | -------------------------------------------------------------------------------- /myaarhost/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 | -keep class com.didi.virtualapk.internal.VAInstrumentation { *; } 23 | -keep class com.didi.virtualapk.internal.PluginContentResolver { *; } 24 | 25 | -dontwarn com.didi.virtualapk.** 26 | -dontwarn android.** 27 | -keep class android.** { *; } -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/layout/plugin_activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 16 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /myaarhost/src/main/java/keven/zcdog/myaarhost/HostMyApp.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.myaarhost; 2 | 3 | import android.Manifest; 4 | import android.content.Context; 5 | import android.content.pm.PackageManager; 6 | import android.os.Environment; 7 | import android.support.v4.content.ContextCompat; 8 | 9 | import java.io.File; 10 | 11 | /** 12 | * Created by zhengjian on 2019/4/16. 13 | */ 14 | 15 | public class HostMyApp { 16 | public static void init(Context context){ 17 | // PluginManager.getInstance(context).init(); 18 | 19 | //app_plugin 20 | if (ContextCompat.checkSelfPermission(context, Manifest.permission.READ_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED) { 21 | String pluginPath = Environment.getExternalStorageDirectory().getAbsolutePath().concat("/testpulgin.apk"); 22 | File plugin = new File(pluginPath); 23 | try { 24 | // PluginManager.getInstance(context).loadPlugin(plugin); 25 | } catch (Exception e) { 26 | e.printStackTrace(); 27 | } 28 | } else { 29 | 30 | // ActivityCompat.requestPermissions(this, 31 | // new String[]{Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE}, 100); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /myaarhost/src/main/res/layout/activity_host_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 20 | 30 | 31 | -------------------------------------------------------------------------------- /pluginvirtual/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'com.didi.virtualapk.plugin' 3 | android { 4 | compileSdkVersion 26 5 | 6 | 7 | 8 | defaultConfig { 9 | applicationId "keven.zcdog.pluginvirtual" 10 | minSdkVersion 15 11 | targetSdkVersion 26 12 | versionCode 1 13 | versionName "1.0" 14 | 15 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 16 | 17 | } 18 | signingConfigs { 19 | myConfig { 20 | storeFile file('D:/AndroidDemo/RetryVirtualApk/app/plugin.jks') 21 | storePassword '123456' 22 | keyAlias 'zcdog' 23 | keyPassword '123456' 24 | v2SigningEnabled true 25 | } 26 | } 27 | buildTypes { 28 | release { 29 | signingConfig signingConfigs.myConfig 30 | minifyEnabled false 31 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 32 | } 33 | } 34 | 35 | 36 | 37 | } 38 | 39 | dependencies { 40 | implementation fileTree(dir: 'libs', include: ['*.jar']) 41 | 42 | implementation 'com.android.support:appcompat-v7:26.1.0' 43 | implementation 'com.android.support.constraint:constraint-layout:1.1.3' 44 | testImplementation 'junit:junit:4.12' 45 | 46 | } 47 | virtualApk { 48 | packageId = 0x62 // The package id of Resources. 49 | targetHost='D:/AndroidDemo/RetryVirtualApk/myaarhost' // The path of application module in host project. 50 | applyHostMapping = true // [Optional] Default value is true. 51 | } -------------------------------------------------------------------------------- /pluginvirtual/src/main/java/keven/zcdog/pluginvirtual/MyAlertDialog.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.pluginvirtual; 2 | 3 | import android.content.Context; 4 | import android.content.DialogInterface; 5 | import android.support.v7.app.AlertDialog; 6 | import android.widget.Toast; 7 | 8 | /** 9 | * Created by zhengjian on 2019/4/30. 10 | */ 11 | public class MyAlertDialog { 12 | public static void showDialog(final Context context){ 13 | // 通过AlertDialog.Builder这个类来实例化我们的一个AlertDialog的对象 14 | AlertDialog.Builder builder = new AlertDialog.Builder(context); 15 | // 设置Title的图标 16 | builder.setIcon(R.drawable.head); 17 | // 设置Title的内容 18 | builder.setTitle("弹出警告框"); 19 | // 设置Content来显示一个信息 20 | builder.setMessage("确定删除吗?"); 21 | // 设置一个PositiveButton 22 | builder.setPositiveButton("确定", new DialogInterface.OnClickListener() 23 | { 24 | @Override 25 | public void onClick(DialogInterface dialog, int which) 26 | { 27 | Toast.makeText(context, "确定" , Toast.LENGTH_SHORT).show(); 28 | } 29 | }); 30 | // 设置一个NegativeButton 31 | builder.setNegativeButton("取消", new DialogInterface.OnClickListener() 32 | { 33 | @Override 34 | public void onClick(DialogInterface dialog, int which) 35 | { 36 | Toast.makeText(context, "取消" , Toast.LENGTH_SHORT).show(); 37 | } 38 | }); 39 | // 设置一个NeutralButton 40 | builder.setNeutralButton("忽略", new DialogInterface.OnClickListener() 41 | { 42 | @Override 43 | public void onClick(DialogInterface dialog, int which) 44 | { 45 | Toast.makeText(context, "忽略", Toast.LENGTH_SHORT).show(); 46 | } 47 | }); 48 | // 显示出该对话框 49 | builder.show(); 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 23 | 36 | 37 | 50 | 51 | -------------------------------------------------------------------------------- /myaarhost/src/main/java/keven/zcdog/myaarhost/HostMainActivity.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.myaarhost; 2 | 3 | import android.content.Context; 4 | import android.content.Intent; 5 | import android.os.Bundle; 6 | import android.support.v7.app.AppCompatActivity; 7 | import android.util.Log; 8 | import android.view.View; 9 | import android.widget.TextView; 10 | 11 | import java.lang.reflect.InvocationTargetException; 12 | import java.lang.reflect.Method; 13 | 14 | public class HostMainActivity extends AppCompatActivity { 15 | 16 | @Override 17 | protected void onCreate(Bundle savedInstanceState) { 18 | super.onCreate(savedInstanceState); 19 | setContentView(R.layout.activity_host_main); 20 | 21 | TextView tv_host = findViewById(R.id.tv_host); 22 | tv_host.setOnClickListener(new View.OnClickListener() { 23 | @Override 24 | public void onClick(View v) { 25 | Intent intent = new Intent(); 26 | intent.setClassName("keven.zcdog.pluginvirtual", "keven.zcdog.pluginvirtual.PluginMainActivity"); 27 | startActivity(intent); 28 | } 29 | }); 30 | 31 | findViewById(R.id.tv_host_opendialog).setOnClickListener(new View.OnClickListener() { 32 | @Override 33 | public void onClick(View v) { 34 | 35 | Class clazz = null; 36 | try { 37 | clazz = Class.forName("keven.zcdog.pluginvirtual.MyAlertDialog"); 38 | Method showDialog = clazz.getMethod("showDialog", Context.class); 39 | showDialog.invoke(null, HostMainActivity.this); 40 | } catch (ClassNotFoundException e) { 41 | Log.e("TAG","ClassNotFoundException--"+e.toString()); 42 | e.printStackTrace(); 43 | } catch (NoSuchMethodException e) { 44 | Log.e("TAG","NoSuchMethodException--"+e.toString()); 45 | e.printStackTrace(); 46 | } catch (IllegalAccessException e) { 47 | Log.e("TAG","IllegalAccessException--"+e.toString()); 48 | e.printStackTrace(); 49 | } catch (InvocationTargetException e) { 50 | Log.e("TAG","InvocationTargetException--"+e.toString()); 51 | e.printStackTrace(); 52 | } 53 | 54 | } 55 | }); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 37 | 38 | 39 | 40 | 41 | 42 | 44 | -------------------------------------------------------------------------------- /app/src/main/java/keven/zcdog/retryvirtualapk/MainActivity.java: -------------------------------------------------------------------------------- 1 | package keven.zcdog.retryvirtualapk; 2 | 3 | import android.Manifest; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.content.pm.PackageManager; 7 | import android.os.Bundle; 8 | import android.support.v4.app.ActivityCompat; 9 | import android.support.v4.content.ContextCompat; 10 | import android.support.v7.app.AppCompatActivity; 11 | import android.util.Log; 12 | import android.view.View; 13 | import android.widget.TextView; 14 | 15 | import java.lang.reflect.InvocationTargetException; 16 | import java.lang.reflect.Method; 17 | 18 | import keven.zcdog.myaarhost.HostMainActivity; 19 | 20 | public class MainActivity extends AppCompatActivity { 21 | 22 | @Override 23 | protected void onCreate(Bundle savedInstanceState) { 24 | super.onCreate(savedInstanceState); 25 | setContentView(R.layout.activity_main); 26 | 27 | if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) { 28 | ActivityCompat.requestPermissions(this, 29 | new String[]{Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE}, 100); 30 | 31 | } 32 | 33 | TextView tv_click = findViewById(R.id.tv_app); 34 | tv_click.setOnClickListener(new View.OnClickListener() { 35 | @Override 36 | public void onClick(View v) { 37 | Intent intent = new Intent(MainActivity.this, HostMainActivity.class); 38 | startActivity(intent); 39 | 40 | } 41 | }); 42 | findViewById(R.id.tv_plugin).setOnClickListener(new View.OnClickListener() { 43 | @Override 44 | public void onClick(View v) { 45 | Intent intent = new Intent(); 46 | intent.setClassName("keven.zcdog.pluginvirtual", "keven.zcdog.pluginvirtual.PluginMainActivity"); 47 | startActivity(intent); 48 | } 49 | }); 50 | 51 | findViewById(R.id.tv_plugin_dialog).setOnClickListener(new View.OnClickListener() { 52 | @Override 53 | public void onClick(View v) { 54 | Class clazz = null; 55 | try { 56 | clazz = Class.forName("keven.zcdog.pluginvirtual.MyAlertDialog"); 57 | Method showDialog = clazz.getMethod("showDialog", Context.class); 58 | showDialog.invoke(null, MainActivity.this); 59 | } catch (ClassNotFoundException e) { 60 | Log.e("TAG","ClassNotFoundException--"+e.toString()); 61 | e.printStackTrace(); 62 | } catch (NoSuchMethodException e) { 63 | Log.e("TAG","NoSuchMethodException--"+e.toString()); 64 | e.printStackTrace(); 65 | } catch (IllegalAccessException e) { 66 | Log.e("TAG","IllegalAccessException--"+e.toString()); 67 | e.printStackTrace(); 68 | } catch (InvocationTargetException e) { 69 | Log.e("TAG","InvocationTargetException--"+e.toString()); 70 | e.printStackTrace(); 71 | } 72 | } 73 | }); 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 75 | -------------------------------------------------------------------------------- /pluginvirtual/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 64 | 66 | 68 | 70 | 72 | 74 | 75 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # Attempt to set APP_HOME 46 | # Resolve links: $0 may be a link 47 | PRG="$0" 48 | # Need this for relative symlinks. 49 | while [ -h "$PRG" ] ; do 50 | ls=`ls -ld "$PRG"` 51 | link=`expr "$ls" : '.*-> \(.*\)$'` 52 | if expr "$link" : '/.*' > /dev/null; then 53 | PRG="$link" 54 | else 55 | PRG=`dirname "$PRG"`"/$link" 56 | fi 57 | done 58 | SAVED="`pwd`" 59 | cd "`dirname \"$PRG\"`/" >/dev/null 60 | APP_HOME="`pwd -P`" 61 | cd "$SAVED" >/dev/null 62 | 63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 64 | 65 | # Determine the Java command to use to start the JVM. 66 | if [ -n "$JAVA_HOME" ] ; then 67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 68 | # IBM's JDK on AIX uses strange locations for the executables 69 | JAVACMD="$JAVA_HOME/jre/sh/java" 70 | else 71 | JAVACMD="$JAVA_HOME/bin/java" 72 | fi 73 | if [ ! -x "$JAVACMD" ] ; then 74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 75 | 76 | Please set the JAVA_HOME variable in your environment to match the 77 | location of your Java installation." 78 | fi 79 | else 80 | JAVACMD="java" 81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 82 | 83 | Please set the JAVA_HOME variable in your environment to match the 84 | location of your Java installation." 85 | fi 86 | 87 | # Increase the maximum file descriptors if we can. 88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 89 | MAX_FD_LIMIT=`ulimit -H -n` 90 | if [ $? -eq 0 ] ; then 91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 92 | MAX_FD="$MAX_FD_LIMIT" 93 | fi 94 | ulimit -n $MAX_FD 95 | if [ $? -ne 0 ] ; then 96 | warn "Could not set maximum file descriptor limit: $MAX_FD" 97 | fi 98 | else 99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 100 | fi 101 | fi 102 | 103 | # For Darwin, add options to specify how the application appears in the dock 104 | if $darwin; then 105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 106 | fi 107 | 108 | # For Cygwin, switch paths to Windows format before running java 109 | if $cygwin ; then 110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 112 | JAVACMD=`cygpath --unix "$JAVACMD"` 113 | 114 | # We build the pattern for arguments to be converted via cygpath 115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 116 | SEP="" 117 | for dir in $ROOTDIRSRAW ; do 118 | ROOTDIRS="$ROOTDIRS$SEP$dir" 119 | SEP="|" 120 | done 121 | OURCYGPATTERN="(^($ROOTDIRS))" 122 | # Add a user-defined pattern to the cygpath arguments 123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 125 | fi 126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 127 | i=0 128 | for arg in "$@" ; do 129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 131 | 132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 134 | else 135 | eval `echo args$i`="\"$arg\"" 136 | fi 137 | i=$((i+1)) 138 | done 139 | case $i in 140 | (0) set -- ;; 141 | (1) set -- "$args0" ;; 142 | (2) set -- "$args0" "$args1" ;; 143 | (3) set -- "$args0" "$args1" "$args2" ;; 144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 150 | esac 151 | fi 152 | 153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 154 | function splitJvmOpts() { 155 | JVM_OPTS=("$@") 156 | } 157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 159 | 160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 161 | -------------------------------------------------------------------------------- /host/Host_R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f010000 2 | int anim abc_fade_out 0x7f010001 3 | int anim abc_grow_fade_in_from_bottom 0x7f010002 4 | int anim abc_popup_enter 0x7f010003 5 | int anim abc_popup_exit 0x7f010004 6 | int anim abc_shrink_fade_out_from_bottom 0x7f010005 7 | int anim abc_slide_in_bottom 0x7f010006 8 | int anim abc_slide_in_top 0x7f010007 9 | int anim abc_slide_out_bottom 0x7f010008 10 | int anim abc_slide_out_top 0x7f010009 11 | int anim tooltip_enter 0x7f01000a 12 | int anim tooltip_exit 0x7f01000b 13 | int attr actionBarDivider 0x7f020000 14 | int attr actionBarItemBackground 0x7f020001 15 | int attr actionBarPopupTheme 0x7f020002 16 | int attr actionBarSize 0x7f020003 17 | int attr actionBarSplitStyle 0x7f020004 18 | int attr actionBarStyle 0x7f020005 19 | int attr actionBarTabBarStyle 0x7f020006 20 | int attr actionBarTabStyle 0x7f020007 21 | int attr actionBarTabTextStyle 0x7f020008 22 | int attr actionBarTheme 0x7f020009 23 | int attr actionBarWidgetTheme 0x7f02000a 24 | int attr actionButtonStyle 0x7f02000b 25 | int attr actionDropDownStyle 0x7f02000c 26 | int attr actionLayout 0x7f02000d 27 | int attr actionMenuTextAppearance 0x7f02000e 28 | int attr actionMenuTextColor 0x7f02000f 29 | int attr actionModeBackground 0x7f020010 30 | int attr actionModeCloseButtonStyle 0x7f020011 31 | int attr actionModeCloseDrawable 0x7f020012 32 | int attr actionModeCopyDrawable 0x7f020013 33 | int attr actionModeCutDrawable 0x7f020014 34 | int attr actionModeFindDrawable 0x7f020015 35 | int attr actionModePasteDrawable 0x7f020016 36 | int attr actionModePopupWindowStyle 0x7f020017 37 | int attr actionModeSelectAllDrawable 0x7f020018 38 | int attr actionModeShareDrawable 0x7f020019 39 | int attr actionModeSplitBackground 0x7f02001a 40 | int attr actionModeStyle 0x7f02001b 41 | int attr actionModeWebSearchDrawable 0x7f02001c 42 | int attr actionOverflowButtonStyle 0x7f02001d 43 | int attr actionOverflowMenuStyle 0x7f02001e 44 | int attr actionProviderClass 0x7f02001f 45 | int attr actionViewClass 0x7f020020 46 | int attr activityChooserViewStyle 0x7f020021 47 | int attr alertDialogButtonGroupStyle 0x7f020022 48 | int attr alertDialogCenterButtons 0x7f020023 49 | int attr alertDialogStyle 0x7f020024 50 | int attr alertDialogTheme 0x7f020025 51 | int attr allowStacking 0x7f020026 52 | int attr alpha 0x7f020027 53 | int attr alphabeticModifiers 0x7f020028 54 | int attr arrowHeadLength 0x7f020029 55 | int attr arrowShaftLength 0x7f02002a 56 | int attr autoCompleteTextViewStyle 0x7f02002b 57 | int attr autoSizeMaxTextSize 0x7f02002c 58 | int attr autoSizeMinTextSize 0x7f02002d 59 | int attr autoSizePresetSizes 0x7f02002e 60 | int attr autoSizeStepGranularity 0x7f02002f 61 | int attr autoSizeTextType 0x7f020030 62 | int attr background 0x7f020031 63 | int attr backgroundSplit 0x7f020032 64 | int attr backgroundStacked 0x7f020033 65 | int attr backgroundTint 0x7f020034 66 | int attr backgroundTintMode 0x7f020035 67 | int attr barLength 0x7f020036 68 | int attr barrierAllowsGoneWidgets 0x7f020037 69 | int attr barrierDirection 0x7f020038 70 | int attr borderlessButtonStyle 0x7f020039 71 | int attr buttonBarButtonStyle 0x7f02003a 72 | int attr buttonBarNegativeButtonStyle 0x7f02003b 73 | int attr buttonBarNeutralButtonStyle 0x7f02003c 74 | int attr buttonBarPositiveButtonStyle 0x7f02003d 75 | int attr buttonBarStyle 0x7f02003e 76 | int attr buttonGravity 0x7f02003f 77 | int attr buttonPanelSideLayout 0x7f020040 78 | int attr buttonStyle 0x7f020041 79 | int attr buttonStyleSmall 0x7f020042 80 | int attr buttonTint 0x7f020043 81 | int attr buttonTintMode 0x7f020044 82 | int attr chainUseRtl 0x7f020045 83 | int attr checkboxStyle 0x7f020046 84 | int attr checkedTextViewStyle 0x7f020047 85 | int attr closeIcon 0x7f020048 86 | int attr closeItemLayout 0x7f020049 87 | int attr collapseContentDescription 0x7f02004a 88 | int attr collapseIcon 0x7f02004b 89 | int attr color 0x7f02004c 90 | int attr colorAccent 0x7f02004d 91 | int attr colorBackgroundFloating 0x7f02004e 92 | int attr colorButtonNormal 0x7f02004f 93 | int attr colorControlActivated 0x7f020050 94 | int attr colorControlHighlight 0x7f020051 95 | int attr colorControlNormal 0x7f020052 96 | int attr colorError 0x7f020053 97 | int attr colorPrimary 0x7f020054 98 | int attr colorPrimaryDark 0x7f020055 99 | int attr colorSwitchThumbNormal 0x7f020056 100 | int attr commitIcon 0x7f020057 101 | int attr constraintSet 0x7f020058 102 | int attr constraint_referenced_ids 0x7f020059 103 | int attr content 0x7f02005a 104 | int attr contentDescription 0x7f02005b 105 | int attr contentInsetEnd 0x7f02005c 106 | int attr contentInsetEndWithActions 0x7f02005d 107 | int attr contentInsetLeft 0x7f02005e 108 | int attr contentInsetRight 0x7f02005f 109 | int attr contentInsetStart 0x7f020060 110 | int attr contentInsetStartWithNavigation 0x7f020061 111 | int attr controlBackground 0x7f020062 112 | int attr customNavigationLayout 0x7f020063 113 | int attr defaultQueryHint 0x7f020064 114 | int attr dialogPreferredPadding 0x7f020065 115 | int attr dialogTheme 0x7f020066 116 | int attr displayOptions 0x7f020067 117 | int attr divider 0x7f020068 118 | int attr dividerHorizontal 0x7f020069 119 | int attr dividerPadding 0x7f02006a 120 | int attr dividerVertical 0x7f02006b 121 | int attr drawableSize 0x7f02006c 122 | int attr drawerArrowStyle 0x7f02006d 123 | int attr dropDownListViewStyle 0x7f02006e 124 | int attr dropdownListPreferredItemHeight 0x7f02006f 125 | int attr editTextBackground 0x7f020070 126 | int attr editTextColor 0x7f020071 127 | int attr editTextStyle 0x7f020072 128 | int attr elevation 0x7f020073 129 | int attr emptyVisibility 0x7f020074 130 | int attr expandActivityOverflowButtonDrawable 0x7f020075 131 | int attr font 0x7f020076 132 | int attr fontFamily 0x7f020077 133 | int attr fontProviderAuthority 0x7f020078 134 | int attr fontProviderCerts 0x7f020079 135 | int attr fontProviderFetchStrategy 0x7f02007a 136 | int attr fontProviderFetchTimeout 0x7f02007b 137 | int attr fontProviderPackage 0x7f02007c 138 | int attr fontProviderQuery 0x7f02007d 139 | int attr fontStyle 0x7f02007e 140 | int attr fontWeight 0x7f02007f 141 | int attr gapBetweenBars 0x7f020080 142 | int attr goIcon 0x7f020081 143 | int attr height 0x7f020082 144 | int attr hideOnContentScroll 0x7f020083 145 | int attr homeAsUpIndicator 0x7f020084 146 | int attr homeLayout 0x7f020085 147 | int attr icon 0x7f020086 148 | int attr iconTint 0x7f020087 149 | int attr iconTintMode 0x7f020088 150 | int attr iconifiedByDefault 0x7f020089 151 | int attr imageButtonStyle 0x7f02008a 152 | int attr indeterminateProgressStyle 0x7f02008b 153 | int attr initialActivityCount 0x7f02008c 154 | int attr isLightTheme 0x7f02008d 155 | int attr itemPadding 0x7f02008e 156 | int attr layout 0x7f02008f 157 | int attr layout_constrainedHeight 0x7f020090 158 | int attr layout_constrainedWidth 0x7f020091 159 | int attr layout_constraintBaseline_creator 0x7f020092 160 | int attr layout_constraintBaseline_toBaselineOf 0x7f020093 161 | int attr layout_constraintBottom_creator 0x7f020094 162 | int attr layout_constraintBottom_toBottomOf 0x7f020095 163 | int attr layout_constraintBottom_toTopOf 0x7f020096 164 | int attr layout_constraintCircle 0x7f020097 165 | int attr layout_constraintCircleAngle 0x7f020098 166 | int attr layout_constraintCircleRadius 0x7f020099 167 | int attr layout_constraintDimensionRatio 0x7f02009a 168 | int attr layout_constraintEnd_toEndOf 0x7f02009b 169 | int attr layout_constraintEnd_toStartOf 0x7f02009c 170 | int attr layout_constraintGuide_begin 0x7f02009d 171 | int attr layout_constraintGuide_end 0x7f02009e 172 | int attr layout_constraintGuide_percent 0x7f02009f 173 | int attr layout_constraintHeight_default 0x7f0200a0 174 | int attr layout_constraintHeight_max 0x7f0200a1 175 | int attr layout_constraintHeight_min 0x7f0200a2 176 | int attr layout_constraintHeight_percent 0x7f0200a3 177 | int attr layout_constraintHorizontal_bias 0x7f0200a4 178 | int attr layout_constraintHorizontal_chainStyle 0x7f0200a5 179 | int attr layout_constraintHorizontal_weight 0x7f0200a6 180 | int attr layout_constraintLeft_creator 0x7f0200a7 181 | int attr layout_constraintLeft_toLeftOf 0x7f0200a8 182 | int attr layout_constraintLeft_toRightOf 0x7f0200a9 183 | int attr layout_constraintRight_creator 0x7f0200aa 184 | int attr layout_constraintRight_toLeftOf 0x7f0200ab 185 | int attr layout_constraintRight_toRightOf 0x7f0200ac 186 | int attr layout_constraintStart_toEndOf 0x7f0200ad 187 | int attr layout_constraintStart_toStartOf 0x7f0200ae 188 | int attr layout_constraintTop_creator 0x7f0200af 189 | int attr layout_constraintTop_toBottomOf 0x7f0200b0 190 | int attr layout_constraintTop_toTopOf 0x7f0200b1 191 | int attr layout_constraintVertical_bias 0x7f0200b2 192 | int attr layout_constraintVertical_chainStyle 0x7f0200b3 193 | int attr layout_constraintVertical_weight 0x7f0200b4 194 | int attr layout_constraintWidth_default 0x7f0200b5 195 | int attr layout_constraintWidth_max 0x7f0200b6 196 | int attr layout_constraintWidth_min 0x7f0200b7 197 | int attr layout_constraintWidth_percent 0x7f0200b8 198 | int attr layout_editor_absoluteX 0x7f0200b9 199 | int attr layout_editor_absoluteY 0x7f0200ba 200 | int attr layout_goneMarginBottom 0x7f0200bb 201 | int attr layout_goneMarginEnd 0x7f0200bc 202 | int attr layout_goneMarginLeft 0x7f0200bd 203 | int attr layout_goneMarginRight 0x7f0200be 204 | int attr layout_goneMarginStart 0x7f0200bf 205 | int attr layout_goneMarginTop 0x7f0200c0 206 | int attr layout_optimizationLevel 0x7f0200c1 207 | int attr listChoiceBackgroundIndicator 0x7f0200c2 208 | int attr listDividerAlertDialog 0x7f0200c3 209 | int attr listItemLayout 0x7f0200c4 210 | int attr listLayout 0x7f0200c5 211 | int attr listMenuViewStyle 0x7f0200c6 212 | int attr listPopupWindowStyle 0x7f0200c7 213 | int attr listPreferredItemHeight 0x7f0200c8 214 | int attr listPreferredItemHeightLarge 0x7f0200c9 215 | int attr listPreferredItemHeightSmall 0x7f0200ca 216 | int attr listPreferredItemPaddingLeft 0x7f0200cb 217 | int attr listPreferredItemPaddingRight 0x7f0200cc 218 | int attr logo 0x7f0200cd 219 | int attr logoDescription 0x7f0200ce 220 | int attr maxButtonHeight 0x7f0200cf 221 | int attr measureWithLargestChild 0x7f0200d0 222 | int attr multiChoiceItemLayout 0x7f0200d1 223 | int attr navigationContentDescription 0x7f0200d2 224 | int attr navigationIcon 0x7f0200d3 225 | int attr navigationMode 0x7f0200d4 226 | int attr numericModifiers 0x7f0200d5 227 | int attr overlapAnchor 0x7f0200d6 228 | int attr paddingBottomNoButtons 0x7f0200d7 229 | int attr paddingEnd 0x7f0200d8 230 | int attr paddingStart 0x7f0200d9 231 | int attr paddingTopNoTitle 0x7f0200da 232 | int attr panelBackground 0x7f0200db 233 | int attr panelMenuListTheme 0x7f0200dc 234 | int attr panelMenuListWidth 0x7f0200dd 235 | int attr popupMenuStyle 0x7f0200de 236 | int attr popupTheme 0x7f0200df 237 | int attr popupWindowStyle 0x7f0200e0 238 | int attr preserveIconSpacing 0x7f0200e1 239 | int attr progressBarPadding 0x7f0200e2 240 | int attr progressBarStyle 0x7f0200e3 241 | int attr queryBackground 0x7f0200e4 242 | int attr queryHint 0x7f0200e5 243 | int attr radioButtonStyle 0x7f0200e6 244 | int attr ratingBarStyle 0x7f0200e7 245 | int attr ratingBarStyleIndicator 0x7f0200e8 246 | int attr ratingBarStyleSmall 0x7f0200e9 247 | int attr searchHintIcon 0x7f0200ea 248 | int attr searchIcon 0x7f0200eb 249 | int attr searchViewStyle 0x7f0200ec 250 | int attr seekBarStyle 0x7f0200ed 251 | int attr selectableItemBackground 0x7f0200ee 252 | int attr selectableItemBackgroundBorderless 0x7f0200ef 253 | int attr showAsAction 0x7f0200f0 254 | int attr showDividers 0x7f0200f1 255 | int attr showText 0x7f0200f2 256 | int attr showTitle 0x7f0200f3 257 | int attr singleChoiceItemLayout 0x7f0200f4 258 | int attr spinBars 0x7f0200f5 259 | int attr spinnerDropDownItemStyle 0x7f0200f6 260 | int attr spinnerStyle 0x7f0200f7 261 | int attr splitTrack 0x7f0200f8 262 | int attr srcCompat 0x7f0200f9 263 | int attr state_above_anchor 0x7f0200fa 264 | int attr subMenuArrow 0x7f0200fb 265 | int attr submitBackground 0x7f0200fc 266 | int attr subtitle 0x7f0200fd 267 | int attr subtitleTextAppearance 0x7f0200fe 268 | int attr subtitleTextColor 0x7f0200ff 269 | int attr subtitleTextStyle 0x7f020100 270 | int attr suggestionRowLayout 0x7f020101 271 | int attr switchMinWidth 0x7f020102 272 | int attr switchPadding 0x7f020103 273 | int attr switchStyle 0x7f020104 274 | int attr switchTextAppearance 0x7f020105 275 | int attr textAllCaps 0x7f020106 276 | int attr textAppearanceLargePopupMenu 0x7f020107 277 | int attr textAppearanceListItem 0x7f020108 278 | int attr textAppearanceListItemSecondary 0x7f020109 279 | int attr textAppearanceListItemSmall 0x7f02010a 280 | int attr textAppearancePopupMenuHeader 0x7f02010b 281 | int attr textAppearanceSearchResultSubtitle 0x7f02010c 282 | int attr textAppearanceSearchResultTitle 0x7f02010d 283 | int attr textAppearanceSmallPopupMenu 0x7f02010e 284 | int attr textColorAlertDialogListItem 0x7f02010f 285 | int attr textColorSearchUrl 0x7f020110 286 | int attr theme 0x7f020111 287 | int attr thickness 0x7f020112 288 | int attr thumbTextPadding 0x7f020113 289 | int attr thumbTint 0x7f020114 290 | int attr thumbTintMode 0x7f020115 291 | int attr tickMark 0x7f020116 292 | int attr tickMarkTint 0x7f020117 293 | int attr tickMarkTintMode 0x7f020118 294 | int attr tint 0x7f020119 295 | int attr tintMode 0x7f02011a 296 | int attr title 0x7f02011b 297 | int attr titleMargin 0x7f02011c 298 | int attr titleMarginBottom 0x7f02011d 299 | int attr titleMarginEnd 0x7f02011e 300 | int attr titleMarginStart 0x7f02011f 301 | int attr titleMarginTop 0x7f020120 302 | int attr titleMargins 0x7f020121 303 | int attr titleTextAppearance 0x7f020122 304 | int attr titleTextColor 0x7f020123 305 | int attr titleTextStyle 0x7f020124 306 | int attr toolbarNavigationButtonStyle 0x7f020125 307 | int attr toolbarStyle 0x7f020126 308 | int attr tooltipForegroundColor 0x7f020127 309 | int attr tooltipFrameBackground 0x7f020128 310 | int attr tooltipText 0x7f020129 311 | int attr track 0x7f02012a 312 | int attr trackTint 0x7f02012b 313 | int attr trackTintMode 0x7f02012c 314 | int attr voiceIcon 0x7f02012d 315 | int attr windowActionBar 0x7f02012e 316 | int attr windowActionBarOverlay 0x7f02012f 317 | int attr windowActionModeOverlay 0x7f020130 318 | int attr windowFixedHeightMajor 0x7f020131 319 | int attr windowFixedHeightMinor 0x7f020132 320 | int attr windowFixedWidthMajor 0x7f020133 321 | int attr windowFixedWidthMinor 0x7f020134 322 | int attr windowMinWidthMajor 0x7f020135 323 | int attr windowMinWidthMinor 0x7f020136 324 | int attr windowNoTitle 0x7f020137 325 | int bool abc_action_bar_embed_tabs 0x7f030000 326 | int bool abc_allow_stacked_button_bar 0x7f030001 327 | int bool abc_config_actionMenuItemAllCaps 0x7f030002 328 | int bool abc_config_closeDialogWhenTouchOutside 0x7f030003 329 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f030004 330 | int color abc_background_cache_hint_selector_material_dark 0x7f040000 331 | int color abc_background_cache_hint_selector_material_light 0x7f040001 332 | int color abc_btn_colored_borderless_text_material 0x7f040002 333 | int color abc_btn_colored_text_material 0x7f040003 334 | int color abc_color_highlight_material 0x7f040004 335 | int color abc_hint_foreground_material_dark 0x7f040005 336 | int color abc_hint_foreground_material_light 0x7f040006 337 | int color abc_input_method_navigation_guard 0x7f040007 338 | int color abc_primary_text_disable_only_material_dark 0x7f040008 339 | int color abc_primary_text_disable_only_material_light 0x7f040009 340 | int color abc_primary_text_material_dark 0x7f04000a 341 | int color abc_primary_text_material_light 0x7f04000b 342 | int color abc_search_url_text 0x7f04000c 343 | int color abc_search_url_text_normal 0x7f04000d 344 | int color abc_search_url_text_pressed 0x7f04000e 345 | int color abc_search_url_text_selected 0x7f04000f 346 | int color abc_secondary_text_material_dark 0x7f040010 347 | int color abc_secondary_text_material_light 0x7f040011 348 | int color abc_tint_btn_checkable 0x7f040012 349 | int color abc_tint_default 0x7f040013 350 | int color abc_tint_edittext 0x7f040014 351 | int color abc_tint_seek_thumb 0x7f040015 352 | int color abc_tint_spinner 0x7f040016 353 | int color abc_tint_switch_track 0x7f040017 354 | int color accent_material_dark 0x7f040018 355 | int color accent_material_light 0x7f040019 356 | int color background_floating_material_dark 0x7f04001a 357 | int color background_floating_material_light 0x7f04001b 358 | int color background_material_dark 0x7f04001c 359 | int color background_material_light 0x7f04001d 360 | int color bright_foreground_disabled_material_dark 0x7f04001e 361 | int color bright_foreground_disabled_material_light 0x7f04001f 362 | int color bright_foreground_inverse_material_dark 0x7f040020 363 | int color bright_foreground_inverse_material_light 0x7f040021 364 | int color bright_foreground_material_dark 0x7f040022 365 | int color bright_foreground_material_light 0x7f040023 366 | int color button_material_dark 0x7f040024 367 | int color button_material_light 0x7f040025 368 | int color dim_foreground_disabled_material_dark 0x7f040026 369 | int color dim_foreground_disabled_material_light 0x7f040027 370 | int color dim_foreground_material_dark 0x7f040028 371 | int color dim_foreground_material_light 0x7f040029 372 | int color error_color_material 0x7f04002a 373 | int color foreground_material_dark 0x7f04002b 374 | int color foreground_material_light 0x7f04002c 375 | int color highlighted_text_material_dark 0x7f04002d 376 | int color highlighted_text_material_light 0x7f04002e 377 | int color material_blue_grey_800 0x7f04002f 378 | int color material_blue_grey_900 0x7f040030 379 | int color material_blue_grey_950 0x7f040031 380 | int color material_deep_teal_200 0x7f040032 381 | int color material_deep_teal_500 0x7f040033 382 | int color material_grey_100 0x7f040034 383 | int color material_grey_300 0x7f040035 384 | int color material_grey_50 0x7f040036 385 | int color material_grey_600 0x7f040037 386 | int color material_grey_800 0x7f040038 387 | int color material_grey_850 0x7f040039 388 | int color material_grey_900 0x7f04003a 389 | int color notification_action_color_filter 0x7f04003b 390 | int color notification_icon_bg_color 0x7f04003c 391 | int color notification_material_background_media_default_color 0x7f04003d 392 | int color primary_dark_material_dark 0x7f04003e 393 | int color primary_dark_material_light 0x7f04003f 394 | int color primary_material_dark 0x7f040040 395 | int color primary_material_light 0x7f040041 396 | int color primary_text_default_material_dark 0x7f040042 397 | int color primary_text_default_material_light 0x7f040043 398 | int color primary_text_disabled_material_dark 0x7f040044 399 | int color primary_text_disabled_material_light 0x7f040045 400 | int color ripple_material_dark 0x7f040046 401 | int color ripple_material_light 0x7f040047 402 | int color secondary_text_default_material_dark 0x7f040048 403 | int color secondary_text_default_material_light 0x7f040049 404 | int color secondary_text_disabled_material_dark 0x7f04004a 405 | int color secondary_text_disabled_material_light 0x7f04004b 406 | int color switch_thumb_disabled_material_dark 0x7f04004c 407 | int color switch_thumb_disabled_material_light 0x7f04004d 408 | int color switch_thumb_material_dark 0x7f04004e 409 | int color switch_thumb_material_light 0x7f04004f 410 | int color switch_thumb_normal_material_dark 0x7f040050 411 | int color switch_thumb_normal_material_light 0x7f040051 412 | int color tooltip_background_dark 0x7f040052 413 | int color tooltip_background_light 0x7f040053 414 | int dimen abc_action_bar_content_inset_material 0x7f050000 415 | int dimen abc_action_bar_content_inset_with_nav 0x7f050001 416 | int dimen abc_action_bar_default_height_material 0x7f050002 417 | int dimen abc_action_bar_default_padding_end_material 0x7f050003 418 | int dimen abc_action_bar_default_padding_start_material 0x7f050004 419 | int dimen abc_action_bar_elevation_material 0x7f050005 420 | int dimen abc_action_bar_icon_vertical_padding_material 0x7f050006 421 | int dimen abc_action_bar_overflow_padding_end_material 0x7f050007 422 | int dimen abc_action_bar_overflow_padding_start_material 0x7f050008 423 | int dimen abc_action_bar_progress_bar_size 0x7f050009 424 | int dimen abc_action_bar_stacked_max_height 0x7f05000a 425 | int dimen abc_action_bar_stacked_tab_max_width 0x7f05000b 426 | int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f05000c 427 | int dimen abc_action_bar_subtitle_top_margin_material 0x7f05000d 428 | int dimen abc_action_button_min_height_material 0x7f05000e 429 | int dimen abc_action_button_min_width_material 0x7f05000f 430 | int dimen abc_action_button_min_width_overflow_material 0x7f050010 431 | int dimen abc_alert_dialog_button_bar_height 0x7f050011 432 | int dimen abc_button_inset_horizontal_material 0x7f050012 433 | int dimen abc_button_inset_vertical_material 0x7f050013 434 | int dimen abc_button_padding_horizontal_material 0x7f050014 435 | int dimen abc_button_padding_vertical_material 0x7f050015 436 | int dimen abc_cascading_menus_min_smallest_width 0x7f050016 437 | int dimen abc_config_prefDialogWidth 0x7f050017 438 | int dimen abc_control_corner_material 0x7f050018 439 | int dimen abc_control_inset_material 0x7f050019 440 | int dimen abc_control_padding_material 0x7f05001a 441 | int dimen abc_dialog_fixed_height_major 0x7f05001b 442 | int dimen abc_dialog_fixed_height_minor 0x7f05001c 443 | int dimen abc_dialog_fixed_width_major 0x7f05001d 444 | int dimen abc_dialog_fixed_width_minor 0x7f05001e 445 | int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f05001f 446 | int dimen abc_dialog_list_padding_top_no_title 0x7f050020 447 | int dimen abc_dialog_min_width_major 0x7f050021 448 | int dimen abc_dialog_min_width_minor 0x7f050022 449 | int dimen abc_dialog_padding_material 0x7f050023 450 | int dimen abc_dialog_padding_top_material 0x7f050024 451 | int dimen abc_dialog_title_divider_material 0x7f050025 452 | int dimen abc_disabled_alpha_material_dark 0x7f050026 453 | int dimen abc_disabled_alpha_material_light 0x7f050027 454 | int dimen abc_dropdownitem_icon_width 0x7f050028 455 | int dimen abc_dropdownitem_text_padding_left 0x7f050029 456 | int dimen abc_dropdownitem_text_padding_right 0x7f05002a 457 | int dimen abc_edit_text_inset_bottom_material 0x7f05002b 458 | int dimen abc_edit_text_inset_horizontal_material 0x7f05002c 459 | int dimen abc_edit_text_inset_top_material 0x7f05002d 460 | int dimen abc_floating_window_z 0x7f05002e 461 | int dimen abc_list_item_padding_horizontal_material 0x7f05002f 462 | int dimen abc_panel_menu_list_width 0x7f050030 463 | int dimen abc_progress_bar_height_material 0x7f050031 464 | int dimen abc_search_view_preferred_height 0x7f050032 465 | int dimen abc_search_view_preferred_width 0x7f050033 466 | int dimen abc_seekbar_track_background_height_material 0x7f050034 467 | int dimen abc_seekbar_track_progress_height_material 0x7f050035 468 | int dimen abc_select_dialog_padding_start_material 0x7f050036 469 | int dimen abc_switch_padding 0x7f050037 470 | int dimen abc_text_size_body_1_material 0x7f050038 471 | int dimen abc_text_size_body_2_material 0x7f050039 472 | int dimen abc_text_size_button_material 0x7f05003a 473 | int dimen abc_text_size_caption_material 0x7f05003b 474 | int dimen abc_text_size_display_1_material 0x7f05003c 475 | int dimen abc_text_size_display_2_material 0x7f05003d 476 | int dimen abc_text_size_display_3_material 0x7f05003e 477 | int dimen abc_text_size_display_4_material 0x7f05003f 478 | int dimen abc_text_size_headline_material 0x7f050040 479 | int dimen abc_text_size_large_material 0x7f050041 480 | int dimen abc_text_size_medium_material 0x7f050042 481 | int dimen abc_text_size_menu_header_material 0x7f050043 482 | int dimen abc_text_size_menu_material 0x7f050044 483 | int dimen abc_text_size_small_material 0x7f050045 484 | int dimen abc_text_size_subhead_material 0x7f050046 485 | int dimen abc_text_size_subtitle_material_toolbar 0x7f050047 486 | int dimen abc_text_size_title_material 0x7f050048 487 | int dimen abc_text_size_title_material_toolbar 0x7f050049 488 | int dimen compat_button_inset_horizontal_material 0x7f05004a 489 | int dimen compat_button_inset_vertical_material 0x7f05004b 490 | int dimen compat_button_padding_horizontal_material 0x7f05004c 491 | int dimen compat_button_padding_vertical_material 0x7f05004d 492 | int dimen compat_control_corner_material 0x7f05004e 493 | int dimen disabled_alpha_material_dark 0x7f05004f 494 | int dimen disabled_alpha_material_light 0x7f050050 495 | int dimen highlight_alpha_material_colored 0x7f050051 496 | int dimen highlight_alpha_material_dark 0x7f050052 497 | int dimen highlight_alpha_material_light 0x7f050053 498 | int dimen hint_alpha_material_dark 0x7f050054 499 | int dimen hint_alpha_material_light 0x7f050055 500 | int dimen hint_pressed_alpha_material_dark 0x7f050056 501 | int dimen hint_pressed_alpha_material_light 0x7f050057 502 | int dimen notification_action_icon_size 0x7f050058 503 | int dimen notification_action_text_size 0x7f050059 504 | int dimen notification_big_circle_margin 0x7f05005a 505 | int dimen notification_content_margin_start 0x7f05005b 506 | int dimen notification_large_icon_height 0x7f05005c 507 | int dimen notification_large_icon_width 0x7f05005d 508 | int dimen notification_main_column_padding_top 0x7f05005e 509 | int dimen notification_media_narrow_margin 0x7f05005f 510 | int dimen notification_right_icon_size 0x7f050060 511 | int dimen notification_right_side_padding_top 0x7f050061 512 | int dimen notification_small_icon_background_padding 0x7f050062 513 | int dimen notification_small_icon_size_as_large 0x7f050063 514 | int dimen notification_subtext_size 0x7f050064 515 | int dimen notification_top_pad 0x7f050065 516 | int dimen notification_top_pad_large_text 0x7f050066 517 | int dimen tooltip_corner_radius 0x7f050067 518 | int dimen tooltip_horizontal_padding 0x7f050068 519 | int dimen tooltip_margin 0x7f050069 520 | int dimen tooltip_precise_anchor_extra_offset 0x7f05006a 521 | int dimen tooltip_precise_anchor_threshold 0x7f05006b 522 | int dimen tooltip_vertical_padding 0x7f05006c 523 | int dimen tooltip_y_offset_non_touch 0x7f05006d 524 | int dimen tooltip_y_offset_touch 0x7f05006e 525 | int drawable abc_ab_share_pack_mtrl_alpha 0x7f060000 526 | int drawable abc_action_bar_item_background_material 0x7f060001 527 | int drawable abc_btn_borderless_material 0x7f060002 528 | int drawable abc_btn_check_material 0x7f060003 529 | int drawable abc_btn_check_to_on_mtrl_000 0x7f060004 530 | int drawable abc_btn_check_to_on_mtrl_015 0x7f060005 531 | int drawable abc_btn_colored_material 0x7f060006 532 | int drawable abc_btn_default_mtrl_shape 0x7f060007 533 | int drawable abc_btn_radio_material 0x7f060008 534 | int drawable abc_btn_radio_to_on_mtrl_000 0x7f060009 535 | int drawable abc_btn_radio_to_on_mtrl_015 0x7f06000a 536 | int drawable abc_btn_switch_to_on_mtrl_00001 0x7f06000b 537 | int drawable abc_btn_switch_to_on_mtrl_00012 0x7f06000c 538 | int drawable abc_cab_background_internal_bg 0x7f06000d 539 | int drawable abc_cab_background_top_material 0x7f06000e 540 | int drawable abc_cab_background_top_mtrl_alpha 0x7f06000f 541 | int drawable abc_control_background_material 0x7f060010 542 | int drawable abc_dialog_material_background 0x7f060011 543 | int drawable abc_edit_text_material 0x7f060012 544 | int drawable abc_ic_ab_back_material 0x7f060013 545 | int drawable abc_ic_arrow_drop_right_black_24dp 0x7f060014 546 | int drawable abc_ic_clear_material 0x7f060015 547 | int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f060016 548 | int drawable abc_ic_go_search_api_material 0x7f060017 549 | int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f060018 550 | int drawable abc_ic_menu_cut_mtrl_alpha 0x7f060019 551 | int drawable abc_ic_menu_overflow_material 0x7f06001a 552 | int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f06001b 553 | int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f06001c 554 | int drawable abc_ic_menu_share_mtrl_alpha 0x7f06001d 555 | int drawable abc_ic_search_api_material 0x7f06001e 556 | int drawable abc_ic_star_black_16dp 0x7f06001f 557 | int drawable abc_ic_star_black_36dp 0x7f060020 558 | int drawable abc_ic_star_black_48dp 0x7f060021 559 | int drawable abc_ic_star_half_black_16dp 0x7f060022 560 | int drawable abc_ic_star_half_black_36dp 0x7f060023 561 | int drawable abc_ic_star_half_black_48dp 0x7f060024 562 | int drawable abc_ic_voice_search_api_material 0x7f060025 563 | int drawable abc_item_background_holo_dark 0x7f060026 564 | int drawable abc_item_background_holo_light 0x7f060027 565 | int drawable abc_list_divider_mtrl_alpha 0x7f060028 566 | int drawable abc_list_focused_holo 0x7f060029 567 | int drawable abc_list_longpressed_holo 0x7f06002a 568 | int drawable abc_list_pressed_holo_dark 0x7f06002b 569 | int drawable abc_list_pressed_holo_light 0x7f06002c 570 | int drawable abc_list_selector_background_transition_holo_dark 0x7f06002d 571 | int drawable abc_list_selector_background_transition_holo_light 0x7f06002e 572 | int drawable abc_list_selector_disabled_holo_dark 0x7f06002f 573 | int drawable abc_list_selector_disabled_holo_light 0x7f060030 574 | int drawable abc_list_selector_holo_dark 0x7f060031 575 | int drawable abc_list_selector_holo_light 0x7f060032 576 | int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f060033 577 | int drawable abc_popup_background_mtrl_mult 0x7f060034 578 | int drawable abc_ratingbar_indicator_material 0x7f060035 579 | int drawable abc_ratingbar_material 0x7f060036 580 | int drawable abc_ratingbar_small_material 0x7f060037 581 | int drawable abc_scrubber_control_off_mtrl_alpha 0x7f060038 582 | int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f060039 583 | int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f06003a 584 | int drawable abc_scrubber_primary_mtrl_alpha 0x7f06003b 585 | int drawable abc_scrubber_track_mtrl_alpha 0x7f06003c 586 | int drawable abc_seekbar_thumb_material 0x7f06003d 587 | int drawable abc_seekbar_tick_mark_material 0x7f06003e 588 | int drawable abc_seekbar_track_material 0x7f06003f 589 | int drawable abc_spinner_mtrl_am_alpha 0x7f060040 590 | int drawable abc_spinner_textfield_background_material 0x7f060041 591 | int drawable abc_switch_thumb_material 0x7f060042 592 | int drawable abc_switch_track_mtrl_alpha 0x7f060043 593 | int drawable abc_tab_indicator_material 0x7f060044 594 | int drawable abc_tab_indicator_mtrl_alpha 0x7f060045 595 | int drawable abc_text_cursor_material 0x7f060046 596 | int drawable abc_text_select_handle_left_mtrl_dark 0x7f060047 597 | int drawable abc_text_select_handle_left_mtrl_light 0x7f060048 598 | int drawable abc_text_select_handle_middle_mtrl_dark 0x7f060049 599 | int drawable abc_text_select_handle_middle_mtrl_light 0x7f06004a 600 | int drawable abc_text_select_handle_right_mtrl_dark 0x7f06004b 601 | int drawable abc_text_select_handle_right_mtrl_light 0x7f06004c 602 | int drawable abc_textfield_activated_mtrl_alpha 0x7f06004d 603 | int drawable abc_textfield_default_mtrl_alpha 0x7f06004e 604 | int drawable abc_textfield_search_activated_mtrl_alpha 0x7f06004f 605 | int drawable abc_textfield_search_default_mtrl_alpha 0x7f060050 606 | int drawable abc_textfield_search_material 0x7f060051 607 | int drawable abc_vector_test 0x7f060052 608 | int drawable notification_action_background 0x7f060053 609 | int drawable notification_bg 0x7f060054 610 | int drawable notification_bg_low 0x7f060055 611 | int drawable notification_bg_low_normal 0x7f060056 612 | int drawable notification_bg_low_pressed 0x7f060057 613 | int drawable notification_bg_normal 0x7f060058 614 | int drawable notification_bg_normal_pressed 0x7f060059 615 | int drawable notification_icon_background 0x7f06005a 616 | int drawable notification_template_icon_bg 0x7f06005b 617 | int drawable notification_template_icon_low_bg 0x7f06005c 618 | int drawable notification_tile_bg 0x7f06005d 619 | int drawable notify_panel_notification_icon_bg 0x7f06005e 620 | int drawable tooltip_frame_dark 0x7f06005f 621 | int drawable tooltip_frame_light 0x7f060060 622 | int id ALT 0x7f070000 623 | int id CTRL 0x7f070001 624 | int id FUNCTION 0x7f070002 625 | int id META 0x7f070003 626 | int id SHIFT 0x7f070004 627 | int id SYM 0x7f070005 628 | int id action0 0x7f070006 629 | int id action_bar 0x7f070007 630 | int id action_bar_activity_content 0x7f070008 631 | int id action_bar_container 0x7f070009 632 | int id action_bar_root 0x7f07000a 633 | int id action_bar_spinner 0x7f07000b 634 | int id action_bar_subtitle 0x7f07000c 635 | int id action_bar_title 0x7f07000d 636 | int id action_container 0x7f07000e 637 | int id action_context_bar 0x7f07000f 638 | int id action_divider 0x7f070010 639 | int id action_image 0x7f070011 640 | int id action_menu_divider 0x7f070012 641 | int id action_menu_presenter 0x7f070013 642 | int id action_mode_bar 0x7f070014 643 | int id action_mode_bar_stub 0x7f070015 644 | int id action_mode_close_button 0x7f070016 645 | int id action_text 0x7f070017 646 | int id actions 0x7f070018 647 | int id activity_chooser_view_content 0x7f070019 648 | int id add 0x7f07001a 649 | int id alertTitle 0x7f07001b 650 | int id always 0x7f07001c 651 | int id async 0x7f07001d 652 | int id barrier 0x7f07001e 653 | int id beginning 0x7f07001f 654 | int id blocking 0x7f070020 655 | int id bottom 0x7f070021 656 | int id buttonPanel 0x7f070022 657 | int id cancel_action 0x7f070023 658 | int id chains 0x7f070024 659 | int id checkbox 0x7f070025 660 | int id chronometer 0x7f070026 661 | int id collapseActionView 0x7f070027 662 | int id contentPanel 0x7f070028 663 | int id custom 0x7f070029 664 | int id customPanel 0x7f07002a 665 | int id decor_content_parent 0x7f07002b 666 | int id default_activity_button 0x7f07002c 667 | int id dimensions 0x7f07002d 668 | int id direct 0x7f07002e 669 | int id disableHome 0x7f07002f 670 | int id edit_query 0x7f070030 671 | int id end 0x7f070031 672 | int id end_padder 0x7f070032 673 | int id expand_activities_button 0x7f070033 674 | int id expanded_menu 0x7f070034 675 | int id forever 0x7f070035 676 | int id gone 0x7f070036 677 | int id groups 0x7f070037 678 | int id home 0x7f070038 679 | int id homeAsUp 0x7f070039 680 | int id icon 0x7f07003a 681 | int id icon_group 0x7f07003b 682 | int id ifRoom 0x7f07003c 683 | int id image 0x7f07003d 684 | int id info 0x7f07003e 685 | int id invisible 0x7f07003f 686 | int id italic 0x7f070040 687 | int id left 0x7f070041 688 | int id line1 0x7f070042 689 | int id line3 0x7f070043 690 | int id listMode 0x7f070044 691 | int id list_item 0x7f070045 692 | int id media_actions 0x7f070046 693 | int id message 0x7f070047 694 | int id middle 0x7f070048 695 | int id multiply 0x7f070049 696 | int id never 0x7f07004a 697 | int id none 0x7f07004b 698 | int id normal 0x7f07004c 699 | int id notification_background 0x7f07004d 700 | int id notification_main_column 0x7f07004e 701 | int id notification_main_column_container 0x7f07004f 702 | int id packed 0x7f070050 703 | int id parent 0x7f070051 704 | int id parentPanel 0x7f070052 705 | int id percent 0x7f070053 706 | int id progress_circular 0x7f070054 707 | int id progress_horizontal 0x7f070055 708 | int id radio 0x7f070056 709 | int id right 0x7f070057 710 | int id right_icon 0x7f070058 711 | int id right_side 0x7f070059 712 | int id screen 0x7f07005a 713 | int id scrollIndicatorDown 0x7f07005b 714 | int id scrollIndicatorUp 0x7f07005c 715 | int id scrollView 0x7f07005d 716 | int id search_badge 0x7f07005e 717 | int id search_bar 0x7f07005f 718 | int id search_button 0x7f070060 719 | int id search_close_btn 0x7f070061 720 | int id search_edit_frame 0x7f070062 721 | int id search_go_btn 0x7f070063 722 | int id search_mag_icon 0x7f070064 723 | int id search_plate 0x7f070065 724 | int id search_src_text 0x7f070066 725 | int id search_voice_btn 0x7f070067 726 | int id select_dialog_listview 0x7f070068 727 | int id shortcut 0x7f070069 728 | int id showCustom 0x7f07006a 729 | int id showHome 0x7f07006b 730 | int id showTitle 0x7f07006c 731 | int id spacer 0x7f07006d 732 | int id split_action_bar 0x7f07006e 733 | int id spread 0x7f07006f 734 | int id spread_inside 0x7f070070 735 | int id src_atop 0x7f070071 736 | int id src_in 0x7f070072 737 | int id src_over 0x7f070073 738 | int id standard 0x7f070074 739 | int id start 0x7f070075 740 | int id status_bar_latest_event_content 0x7f070076 741 | int id submenuarrow 0x7f070077 742 | int id submit_area 0x7f070078 743 | int id tabMode 0x7f070079 744 | int id text 0x7f07007a 745 | int id text2 0x7f07007b 746 | int id textSpacerNoButtons 0x7f07007c 747 | int id textSpacerNoTitle 0x7f07007d 748 | int id time 0x7f07007e 749 | int id title 0x7f07007f 750 | int id titleDividerNoCustom 0x7f070080 751 | int id title_template 0x7f070081 752 | int id top 0x7f070082 753 | int id topPanel 0x7f070083 754 | int id tv_host 0x7f070084 755 | int id tv_host_opendialog 0x7f070085 756 | int id uniform 0x7f070086 757 | int id up 0x7f070087 758 | int id useLogo 0x7f070088 759 | int id withText 0x7f070089 760 | int id wrap 0x7f07008a 761 | int id wrap_content 0x7f07008b 762 | int integer abc_config_activityDefaultDur 0x7f080000 763 | int integer abc_config_activityShortDur 0x7f080001 764 | int integer cancel_button_image_alpha 0x7f080002 765 | int integer config_tooltipAnimTime 0x7f080003 766 | int integer status_bar_notification_info_maxnum 0x7f080004 767 | int layout abc_action_bar_title_item 0x7f090000 768 | int layout abc_action_bar_up_container 0x7f090001 769 | int layout abc_action_bar_view_list_nav_layout 0x7f090002 770 | int layout abc_action_menu_item_layout 0x7f090003 771 | int layout abc_action_menu_layout 0x7f090004 772 | int layout abc_action_mode_bar 0x7f090005 773 | int layout abc_action_mode_close_item_material 0x7f090006 774 | int layout abc_activity_chooser_view 0x7f090007 775 | int layout abc_activity_chooser_view_list_item 0x7f090008 776 | int layout abc_alert_dialog_button_bar_material 0x7f090009 777 | int layout abc_alert_dialog_material 0x7f09000a 778 | int layout abc_alert_dialog_title_material 0x7f09000b 779 | int layout abc_dialog_title_material 0x7f09000c 780 | int layout abc_expanded_menu_layout 0x7f09000d 781 | int layout abc_list_menu_item_checkbox 0x7f09000e 782 | int layout abc_list_menu_item_icon 0x7f09000f 783 | int layout abc_list_menu_item_layout 0x7f090010 784 | int layout abc_list_menu_item_radio 0x7f090011 785 | int layout abc_popup_menu_header_item_layout 0x7f090012 786 | int layout abc_popup_menu_item_layout 0x7f090013 787 | int layout abc_screen_content_include 0x7f090014 788 | int layout abc_screen_simple 0x7f090015 789 | int layout abc_screen_simple_overlay_action_mode 0x7f090016 790 | int layout abc_screen_toolbar 0x7f090017 791 | int layout abc_search_dropdown_item_icons_2line 0x7f090018 792 | int layout abc_search_view 0x7f090019 793 | int layout abc_select_dialog_material 0x7f09001a 794 | int layout activity_host_main 0x7f09001b 795 | int layout notification_action 0x7f09001c 796 | int layout notification_action_tombstone 0x7f09001d 797 | int layout notification_media_action 0x7f09001e 798 | int layout notification_media_cancel_action 0x7f09001f 799 | int layout notification_template_big_media 0x7f090020 800 | int layout notification_template_big_media_custom 0x7f090021 801 | int layout notification_template_big_media_narrow 0x7f090022 802 | int layout notification_template_big_media_narrow_custom 0x7f090023 803 | int layout notification_template_custom_big 0x7f090024 804 | int layout notification_template_icon_group 0x7f090025 805 | int layout notification_template_lines_media 0x7f090026 806 | int layout notification_template_media 0x7f090027 807 | int layout notification_template_media_custom 0x7f090028 808 | int layout notification_template_part_chronometer 0x7f090029 809 | int layout notification_template_part_time 0x7f09002a 810 | int layout select_dialog_item_material 0x7f09002b 811 | int layout select_dialog_multichoice_material 0x7f09002c 812 | int layout select_dialog_singlechoice_material 0x7f09002d 813 | int layout support_simple_spinner_dropdown_item 0x7f09002e 814 | int layout tooltip 0x7f09002f 815 | int string abc_action_bar_home_description 0x7f0a0000 816 | int string abc_action_bar_home_description_format 0x7f0a0001 817 | int string abc_action_bar_home_subtitle_description_format 0x7f0a0002 818 | int string abc_action_bar_up_description 0x7f0a0003 819 | int string abc_action_menu_overflow_description 0x7f0a0004 820 | int string abc_action_mode_done 0x7f0a0005 821 | int string abc_activity_chooser_view_see_all 0x7f0a0006 822 | int string abc_activitychooserview_choose_application 0x7f0a0007 823 | int string abc_capital_off 0x7f0a0008 824 | int string abc_capital_on 0x7f0a0009 825 | int string abc_font_family_body_1_material 0x7f0a000a 826 | int string abc_font_family_body_2_material 0x7f0a000b 827 | int string abc_font_family_button_material 0x7f0a000c 828 | int string abc_font_family_caption_material 0x7f0a000d 829 | int string abc_font_family_display_1_material 0x7f0a000e 830 | int string abc_font_family_display_2_material 0x7f0a000f 831 | int string abc_font_family_display_3_material 0x7f0a0010 832 | int string abc_font_family_display_4_material 0x7f0a0011 833 | int string abc_font_family_headline_material 0x7f0a0012 834 | int string abc_font_family_menu_material 0x7f0a0013 835 | int string abc_font_family_subhead_material 0x7f0a0014 836 | int string abc_font_family_title_material 0x7f0a0015 837 | int string abc_search_hint 0x7f0a0016 838 | int string abc_searchview_description_clear 0x7f0a0017 839 | int string abc_searchview_description_query 0x7f0a0018 840 | int string abc_searchview_description_search 0x7f0a0019 841 | int string abc_searchview_description_submit 0x7f0a001a 842 | int string abc_searchview_description_voice 0x7f0a001b 843 | int string abc_shareactionprovider_share_with 0x7f0a001c 844 | int string abc_shareactionprovider_share_with_application 0x7f0a001d 845 | int string abc_toolbar_collapse_description 0x7f0a001e 846 | int string app_name 0x7f0a001f 847 | int string search_menu_title 0x7f0a0020 848 | int string status_bar_notification_info_overflow 0x7f0a0021 849 | int style AlertDialog_AppCompat 0x7f0b0000 850 | int style AlertDialog_AppCompat_Light 0x7f0b0001 851 | int style Animation_AppCompat_Dialog 0x7f0b0002 852 | int style Animation_AppCompat_DropDownUp 0x7f0b0003 853 | int style Animation_AppCompat_Tooltip 0x7f0b0004 854 | int style Base_AlertDialog_AppCompat 0x7f0b0005 855 | int style Base_AlertDialog_AppCompat_Light 0x7f0b0006 856 | int style Base_Animation_AppCompat_Dialog 0x7f0b0007 857 | int style Base_Animation_AppCompat_DropDownUp 0x7f0b0008 858 | int style Base_Animation_AppCompat_Tooltip 0x7f0b0009 859 | int style Base_DialogWindowTitle_AppCompat 0x7f0b000a 860 | int style Base_DialogWindowTitleBackground_AppCompat 0x7f0b000b 861 | int style Base_TextAppearance_AppCompat 0x7f0b000c 862 | int style Base_TextAppearance_AppCompat_Body1 0x7f0b000d 863 | int style Base_TextAppearance_AppCompat_Body2 0x7f0b000e 864 | int style Base_TextAppearance_AppCompat_Button 0x7f0b000f 865 | int style Base_TextAppearance_AppCompat_Caption 0x7f0b0010 866 | int style Base_TextAppearance_AppCompat_Display1 0x7f0b0011 867 | int style Base_TextAppearance_AppCompat_Display2 0x7f0b0012 868 | int style Base_TextAppearance_AppCompat_Display3 0x7f0b0013 869 | int style Base_TextAppearance_AppCompat_Display4 0x7f0b0014 870 | int style Base_TextAppearance_AppCompat_Headline 0x7f0b0015 871 | int style Base_TextAppearance_AppCompat_Inverse 0x7f0b0016 872 | int style Base_TextAppearance_AppCompat_Large 0x7f0b0017 873 | int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0b0018 874 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0019 875 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b001a 876 | int style Base_TextAppearance_AppCompat_Medium 0x7f0b001b 877 | int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0b001c 878 | int style Base_TextAppearance_AppCompat_Menu 0x7f0b001d 879 | int style Base_TextAppearance_AppCompat_SearchResult 0x7f0b001e 880 | int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b001f 881 | int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0b0020 882 | int style Base_TextAppearance_AppCompat_Small 0x7f0b0021 883 | int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0b0022 884 | int style Base_TextAppearance_AppCompat_Subhead 0x7f0b0023 885 | int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0b0024 886 | int style Base_TextAppearance_AppCompat_Title 0x7f0b0025 887 | int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0b0026 888 | int style Base_TextAppearance_AppCompat_Tooltip 0x7f0b0027 889 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0028 890 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0029 891 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b002a 892 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b002b 893 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b002c 894 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b002d 895 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b002e 896 | int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0b002f 897 | int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b0030 898 | int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b0031 899 | int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b0032 900 | int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0033 901 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b0034 902 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0035 903 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0036 904 | int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0b0037 905 | int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b0038 906 | int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0039 907 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b003a 908 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b003b 909 | int style Base_Theme_AppCompat 0x7f0b003c 910 | int style Base_Theme_AppCompat_CompactMenu 0x7f0b003d 911 | int style Base_Theme_AppCompat_Dialog 0x7f0b003e 912 | int style Base_Theme_AppCompat_Dialog_Alert 0x7f0b003f 913 | int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0b0040 914 | int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0b0041 915 | int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0b0042 916 | int style Base_Theme_AppCompat_Light 0x7f0b0043 917 | int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0b0044 918 | int style Base_Theme_AppCompat_Light_Dialog 0x7f0b0045 919 | int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0b0046 920 | int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0b0047 921 | int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0048 922 | int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0049 923 | int style Base_ThemeOverlay_AppCompat 0x7f0b004a 924 | int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0b004b 925 | int style Base_ThemeOverlay_AppCompat_Dark 0x7f0b004c 926 | int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b004d 927 | int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0b004e 928 | int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b004f 929 | int style Base_ThemeOverlay_AppCompat_Light 0x7f0b0050 930 | int style Base_V11_Theme_AppCompat_Dialog 0x7f0b0051 931 | int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0b0052 932 | int style Base_V11_ThemeOverlay_AppCompat_Dialog 0x7f0b0053 933 | int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f0b0054 934 | int style Base_V12_Widget_AppCompat_EditText 0x7f0b0055 935 | int style Base_V21_Theme_AppCompat 0x7f0b0056 936 | int style Base_V21_Theme_AppCompat_Dialog 0x7f0b0057 937 | int style Base_V21_Theme_AppCompat_Light 0x7f0b0058 938 | int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0b0059 939 | int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0b005a 940 | int style Base_V22_Theme_AppCompat 0x7f0b005b 941 | int style Base_V22_Theme_AppCompat_Light 0x7f0b005c 942 | int style Base_V23_Theme_AppCompat 0x7f0b005d 943 | int style Base_V23_Theme_AppCompat_Light 0x7f0b005e 944 | int style Base_V26_Theme_AppCompat 0x7f0b005f 945 | int style Base_V26_Theme_AppCompat_Light 0x7f0b0060 946 | int style Base_V26_Widget_AppCompat_Toolbar 0x7f0b0061 947 | int style Base_V7_Theme_AppCompat 0x7f0b0062 948 | int style Base_V7_Theme_AppCompat_Dialog 0x7f0b0063 949 | int style Base_V7_Theme_AppCompat_Light 0x7f0b0064 950 | int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0b0065 951 | int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0b0066 952 | int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0b0067 953 | int style Base_V7_Widget_AppCompat_EditText 0x7f0b0068 954 | int style Base_V7_Widget_AppCompat_Toolbar 0x7f0b0069 955 | int style Base_Widget_AppCompat_ActionBar 0x7f0b006a 956 | int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0b006b 957 | int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0b006c 958 | int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0b006d 959 | int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0b006e 960 | int style Base_Widget_AppCompat_ActionButton 0x7f0b006f 961 | int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0b0070 962 | int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0b0071 963 | int style Base_Widget_AppCompat_ActionMode 0x7f0b0072 964 | int style Base_Widget_AppCompat_ActivityChooserView 0x7f0b0073 965 | int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0b0074 966 | int style Base_Widget_AppCompat_Button 0x7f0b0075 967 | int style Base_Widget_AppCompat_Button_Borderless 0x7f0b0076 968 | int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0b0077 969 | int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0078 970 | int style Base_Widget_AppCompat_Button_Colored 0x7f0b0079 971 | int style Base_Widget_AppCompat_Button_Small 0x7f0b007a 972 | int style Base_Widget_AppCompat_ButtonBar 0x7f0b007b 973 | int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b007c 974 | int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0b007d 975 | int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0b007e 976 | int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0b007f 977 | int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0b0080 978 | int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0b0081 979 | int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0b0082 980 | int style Base_Widget_AppCompat_EditText 0x7f0b0083 981 | int style Base_Widget_AppCompat_ImageButton 0x7f0b0084 982 | int style Base_Widget_AppCompat_Light_ActionBar 0x7f0b0085 983 | int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0086 984 | int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0087 985 | int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0088 986 | int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0089 987 | int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0b008a 988 | int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0b008b 989 | int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b008c 990 | int style Base_Widget_AppCompat_ListMenuView 0x7f0b008d 991 | int style Base_Widget_AppCompat_ListPopupWindow 0x7f0b008e 992 | int style Base_Widget_AppCompat_ListView 0x7f0b008f 993 | int style Base_Widget_AppCompat_ListView_DropDown 0x7f0b0090 994 | int style Base_Widget_AppCompat_ListView_Menu 0x7f0b0091 995 | int style Base_Widget_AppCompat_PopupMenu 0x7f0b0092 996 | int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0b0093 997 | int style Base_Widget_AppCompat_PopupWindow 0x7f0b0094 998 | int style Base_Widget_AppCompat_ProgressBar 0x7f0b0095 999 | int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0096 1000 | int style Base_Widget_AppCompat_RatingBar 0x7f0b0097 1001 | int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0b0098 1002 | int style Base_Widget_AppCompat_RatingBar_Small 0x7f0b0099 1003 | int style Base_Widget_AppCompat_SearchView 0x7f0b009a 1004 | int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0b009b 1005 | int style Base_Widget_AppCompat_SeekBar 0x7f0b009c 1006 | int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0b009d 1007 | int style Base_Widget_AppCompat_Spinner 0x7f0b009e 1008 | int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0b009f 1009 | int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0b00a0 1010 | int style Base_Widget_AppCompat_Toolbar 0x7f0b00a1 1011 | int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b00a2 1012 | int style Platform_AppCompat 0x7f0b00a3 1013 | int style Platform_AppCompat_Light 0x7f0b00a4 1014 | int style Platform_ThemeOverlay_AppCompat 0x7f0b00a5 1015 | int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0b00a6 1016 | int style Platform_ThemeOverlay_AppCompat_Light 0x7f0b00a7 1017 | int style Platform_V11_AppCompat 0x7f0b00a8 1018 | int style Platform_V11_AppCompat_Light 0x7f0b00a9 1019 | int style Platform_V14_AppCompat 0x7f0b00aa 1020 | int style Platform_V14_AppCompat_Light 0x7f0b00ab 1021 | int style Platform_V21_AppCompat 0x7f0b00ac 1022 | int style Platform_V21_AppCompat_Light 0x7f0b00ad 1023 | int style Platform_V25_AppCompat 0x7f0b00ae 1024 | int style Platform_V25_AppCompat_Light 0x7f0b00af 1025 | int style Platform_Widget_AppCompat_Spinner 0x7f0b00b0 1026 | int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0b00b1 1027 | int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0b00b2 1028 | int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0b00b3 1029 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0b00b4 1030 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0b00b5 1031 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0b00b6 1032 | int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0b00b7 1033 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0b00b8 1034 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0b00b9 1035 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0b00ba 1036 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0b00bb 1037 | int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0b00bc 1038 | int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0b00bd 1039 | int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0b00be 1040 | int style TextAppearance_AppCompat 0x7f0b00bf 1041 | int style TextAppearance_AppCompat_Body1 0x7f0b00c0 1042 | int style TextAppearance_AppCompat_Body2 0x7f0b00c1 1043 | int style TextAppearance_AppCompat_Button 0x7f0b00c2 1044 | int style TextAppearance_AppCompat_Caption 0x7f0b00c3 1045 | int style TextAppearance_AppCompat_Display1 0x7f0b00c4 1046 | int style TextAppearance_AppCompat_Display2 0x7f0b00c5 1047 | int style TextAppearance_AppCompat_Display3 0x7f0b00c6 1048 | int style TextAppearance_AppCompat_Display4 0x7f0b00c7 1049 | int style TextAppearance_AppCompat_Headline 0x7f0b00c8 1050 | int style TextAppearance_AppCompat_Inverse 0x7f0b00c9 1051 | int style TextAppearance_AppCompat_Large 0x7f0b00ca 1052 | int style TextAppearance_AppCompat_Large_Inverse 0x7f0b00cb 1053 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b00cc 1054 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b00cd 1055 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b00ce 1056 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b00cf 1057 | int style TextAppearance_AppCompat_Medium 0x7f0b00d0 1058 | int style TextAppearance_AppCompat_Medium_Inverse 0x7f0b00d1 1059 | int style TextAppearance_AppCompat_Menu 0x7f0b00d2 1060 | int style TextAppearance_AppCompat_Notification 0x7f0b00d3 1061 | int style TextAppearance_AppCompat_Notification_Info 0x7f0b00d4 1062 | int style TextAppearance_AppCompat_Notification_Info_Media 0x7f0b00d5 1063 | int style TextAppearance_AppCompat_Notification_Line2 0x7f0b00d6 1064 | int style TextAppearance_AppCompat_Notification_Line2_Media 0x7f0b00d7 1065 | int style TextAppearance_AppCompat_Notification_Media 0x7f0b00d8 1066 | int style TextAppearance_AppCompat_Notification_Time 0x7f0b00d9 1067 | int style TextAppearance_AppCompat_Notification_Time_Media 0x7f0b00da 1068 | int style TextAppearance_AppCompat_Notification_Title 0x7f0b00db 1069 | int style TextAppearance_AppCompat_Notification_Title_Media 0x7f0b00dc 1070 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b00dd 1071 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b00de 1072 | int style TextAppearance_AppCompat_Small 0x7f0b00df 1073 | int style TextAppearance_AppCompat_Small_Inverse 0x7f0b00e0 1074 | int style TextAppearance_AppCompat_Subhead 0x7f0b00e1 1075 | int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0b00e2 1076 | int style TextAppearance_AppCompat_Title 0x7f0b00e3 1077 | int style TextAppearance_AppCompat_Title_Inverse 0x7f0b00e4 1078 | int style TextAppearance_AppCompat_Tooltip 0x7f0b00e5 1079 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b00e6 1080 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b00e7 1081 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b00e8 1082 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b00e9 1083 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b00ea 1084 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b00eb 1085 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b00ec 1086 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b00ed 1087 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b00ee 1088 | int style TextAppearance_AppCompat_Widget_Button 0x7f0b00ef 1089 | int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0b00f0 1090 | int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0b00f1 1091 | int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0b00f2 1092 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b00f3 1093 | int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0b00f4 1094 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b00f5 1095 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b00f6 1096 | int style TextAppearance_AppCompat_Widget_Switch 0x7f0b00f7 1097 | int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0b00f8 1098 | int style TextAppearance_Compat_Notification 0x7f0b00f9 1099 | int style TextAppearance_Compat_Notification_Info 0x7f0b00fa 1100 | int style TextAppearance_Compat_Notification_Info_Media 0x7f0b00fb 1101 | int style TextAppearance_Compat_Notification_Line2 0x7f0b00fc 1102 | int style TextAppearance_Compat_Notification_Line2_Media 0x7f0b00fd 1103 | int style TextAppearance_Compat_Notification_Media 0x7f0b00fe 1104 | int style TextAppearance_Compat_Notification_Time 0x7f0b00ff 1105 | int style TextAppearance_Compat_Notification_Time_Media 0x7f0b0100 1106 | int style TextAppearance_Compat_Notification_Title 0x7f0b0101 1107 | int style TextAppearance_Compat_Notification_Title_Media 0x7f0b0102 1108 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b0103 1109 | int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0104 1110 | int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0105 1111 | int style Theme_AppCompat 0x7f0b0106 1112 | int style Theme_AppCompat_CompactMenu 0x7f0b0107 1113 | int style Theme_AppCompat_DayNight 0x7f0b0108 1114 | int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0b0109 1115 | int style Theme_AppCompat_DayNight_Dialog 0x7f0b010a 1116 | int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0b010b 1117 | int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0b010c 1118 | int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0b010d 1119 | int style Theme_AppCompat_DayNight_NoActionBar 0x7f0b010e 1120 | int style Theme_AppCompat_Dialog 0x7f0b010f 1121 | int style Theme_AppCompat_Dialog_Alert 0x7f0b0110 1122 | int style Theme_AppCompat_Dialog_MinWidth 0x7f0b0111 1123 | int style Theme_AppCompat_DialogWhenLarge 0x7f0b0112 1124 | int style Theme_AppCompat_Light 0x7f0b0113 1125 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b0114 1126 | int style Theme_AppCompat_Light_Dialog 0x7f0b0115 1127 | int style Theme_AppCompat_Light_Dialog_Alert 0x7f0b0116 1128 | int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0b0117 1129 | int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b0118 1130 | int style Theme_AppCompat_Light_NoActionBar 0x7f0b0119 1131 | int style Theme_AppCompat_NoActionBar 0x7f0b011a 1132 | int style ThemeOverlay_AppCompat 0x7f0b011b 1133 | int style ThemeOverlay_AppCompat_ActionBar 0x7f0b011c 1134 | int style ThemeOverlay_AppCompat_Dark 0x7f0b011d 1135 | int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b011e 1136 | int style ThemeOverlay_AppCompat_Dialog 0x7f0b011f 1137 | int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0b0120 1138 | int style ThemeOverlay_AppCompat_Light 0x7f0b0121 1139 | int style Widget_AppCompat_ActionBar 0x7f0b0122 1140 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0123 1141 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b0124 1142 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0125 1143 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b0126 1144 | int style Widget_AppCompat_ActionButton 0x7f0b0127 1145 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b0128 1146 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b0129 1147 | int style Widget_AppCompat_ActionMode 0x7f0b012a 1148 | int style Widget_AppCompat_ActivityChooserView 0x7f0b012b 1149 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b012c 1150 | int style Widget_AppCompat_Button 0x7f0b012d 1151 | int style Widget_AppCompat_Button_Borderless 0x7f0b012e 1152 | int style Widget_AppCompat_Button_Borderless_Colored 0x7f0b012f 1153 | int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0b0130 1154 | int style Widget_AppCompat_Button_Colored 0x7f0b0131 1155 | int style Widget_AppCompat_Button_Small 0x7f0b0132 1156 | int style Widget_AppCompat_ButtonBar 0x7f0b0133 1157 | int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0b0134 1158 | int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0b0135 1159 | int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0b0136 1160 | int style Widget_AppCompat_CompoundButton_Switch 0x7f0b0137 1161 | int style Widget_AppCompat_DrawerArrowToggle 0x7f0b0138 1162 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b0139 1163 | int style Widget_AppCompat_EditText 0x7f0b013a 1164 | int style Widget_AppCompat_ImageButton 0x7f0b013b 1165 | int style Widget_AppCompat_Light_ActionBar 0x7f0b013c 1166 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b013d 1167 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b013e 1168 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b013f 1169 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0140 1170 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0141 1171 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0142 1172 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0143 1173 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0144 1174 | int style Widget_AppCompat_Light_ActionButton 0x7f0b0145 1175 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b0146 1176 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b0147 1177 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0148 1178 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0149 1179 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b014a 1180 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b014b 1181 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b014c 1182 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b014d 1183 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b014e 1184 | int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b014f 1185 | int style Widget_AppCompat_Light_SearchView 0x7f0b0150 1186 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b0151 1187 | int style Widget_AppCompat_ListMenuView 0x7f0b0152 1188 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0153 1189 | int style Widget_AppCompat_ListView 0x7f0b0154 1190 | int style Widget_AppCompat_ListView_DropDown 0x7f0b0155 1191 | int style Widget_AppCompat_ListView_Menu 0x7f0b0156 1192 | int style Widget_AppCompat_PopupMenu 0x7f0b0157 1193 | int style Widget_AppCompat_PopupMenu_Overflow 0x7f0b0158 1194 | int style Widget_AppCompat_PopupWindow 0x7f0b0159 1195 | int style Widget_AppCompat_ProgressBar 0x7f0b015a 1196 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b015b 1197 | int style Widget_AppCompat_RatingBar 0x7f0b015c 1198 | int style Widget_AppCompat_RatingBar_Indicator 0x7f0b015d 1199 | int style Widget_AppCompat_RatingBar_Small 0x7f0b015e 1200 | int style Widget_AppCompat_SearchView 0x7f0b015f 1201 | int style Widget_AppCompat_SearchView_ActionBar 0x7f0b0160 1202 | int style Widget_AppCompat_SeekBar 0x7f0b0161 1203 | int style Widget_AppCompat_SeekBar_Discrete 0x7f0b0162 1204 | int style Widget_AppCompat_Spinner 0x7f0b0163 1205 | int style Widget_AppCompat_Spinner_DropDown 0x7f0b0164 1206 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0165 1207 | int style Widget_AppCompat_Spinner_Underlined 0x7f0b0166 1208 | int style Widget_AppCompat_TextView_SpinnerItem 0x7f0b0167 1209 | int style Widget_AppCompat_Toolbar 0x7f0b0168 1210 | int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0169 1211 | int style Widget_Compat_NotificationActionContainer 0x7f0b016a 1212 | int style Widget_Compat_NotificationActionText 0x7f0b016b 1213 | int[] styleable ActionBar { 0x7f020031, 0x7f020032, 0x7f020033, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f020063, 0x7f020067, 0x7f020068, 0x7f020073, 0x7f020082, 0x7f020083, 0x7f020084, 0x7f020085, 0x7f020086, 0x7f02008b, 0x7f02008e, 0x7f0200cd, 0x7f0200d4, 0x7f0200df, 0x7f0200e2, 0x7f0200e3, 0x7f0200fd, 0x7f020100, 0x7f02011b, 0x7f020124 } 1214 | int styleable ActionBar_background 0 1215 | int styleable ActionBar_backgroundSplit 1 1216 | int styleable ActionBar_backgroundStacked 2 1217 | int styleable ActionBar_contentInsetEnd 3 1218 | int styleable ActionBar_contentInsetEndWithActions 4 1219 | int styleable ActionBar_contentInsetLeft 5 1220 | int styleable ActionBar_contentInsetRight 6 1221 | int styleable ActionBar_contentInsetStart 7 1222 | int styleable ActionBar_contentInsetStartWithNavigation 8 1223 | int styleable ActionBar_customNavigationLayout 9 1224 | int styleable ActionBar_displayOptions 10 1225 | int styleable ActionBar_divider 11 1226 | int styleable ActionBar_elevation 12 1227 | int styleable ActionBar_height 13 1228 | int styleable ActionBar_hideOnContentScroll 14 1229 | int styleable ActionBar_homeAsUpIndicator 15 1230 | int styleable ActionBar_homeLayout 16 1231 | int styleable ActionBar_icon 17 1232 | int styleable ActionBar_indeterminateProgressStyle 18 1233 | int styleable ActionBar_itemPadding 19 1234 | int styleable ActionBar_logo 20 1235 | int styleable ActionBar_navigationMode 21 1236 | int styleable ActionBar_popupTheme 22 1237 | int styleable ActionBar_progressBarPadding 23 1238 | int styleable ActionBar_progressBarStyle 24 1239 | int styleable ActionBar_subtitle 25 1240 | int styleable ActionBar_subtitleTextStyle 26 1241 | int styleable ActionBar_title 27 1242 | int styleable ActionBar_titleTextStyle 28 1243 | int[] styleable ActionBarLayout { 0x010100b3 } 1244 | int styleable ActionBarLayout_android_layout_gravity 0 1245 | int[] styleable ActionMenuItemView { 0x0101013f } 1246 | int styleable ActionMenuItemView_android_minWidth 0 1247 | int[] styleable ActionMenuView { } 1248 | int[] styleable ActionMode { 0x7f020031, 0x7f020032, 0x7f020049, 0x7f020082, 0x7f020100, 0x7f020124 } 1249 | int styleable ActionMode_background 0 1250 | int styleable ActionMode_backgroundSplit 1 1251 | int styleable ActionMode_closeItemLayout 2 1252 | int styleable ActionMode_height 3 1253 | int styleable ActionMode_subtitleTextStyle 4 1254 | int styleable ActionMode_titleTextStyle 5 1255 | int[] styleable ActivityChooserView { 0x7f020075, 0x7f02008c } 1256 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 1257 | int styleable ActivityChooserView_initialActivityCount 1 1258 | int[] styleable AlertDialog { 0x010100f2, 0x7f020040, 0x7f0200c4, 0x7f0200c5, 0x7f0200d1, 0x7f0200f3, 0x7f0200f4 } 1259 | int styleable AlertDialog_android_layout 0 1260 | int styleable AlertDialog_buttonPanelSideLayout 1 1261 | int styleable AlertDialog_listItemLayout 2 1262 | int styleable AlertDialog_listLayout 3 1263 | int styleable AlertDialog_multiChoiceItemLayout 4 1264 | int styleable AlertDialog_showTitle 5 1265 | int styleable AlertDialog_singleChoiceItemLayout 6 1266 | int[] styleable AppCompatImageView { 0x01010119, 0x7f0200f9, 0x7f020119, 0x7f02011a } 1267 | int styleable AppCompatImageView_android_src 0 1268 | int styleable AppCompatImageView_srcCompat 1 1269 | int styleable AppCompatImageView_tint 2 1270 | int styleable AppCompatImageView_tintMode 3 1271 | int[] styleable AppCompatSeekBar { 0x01010142, 0x7f020116, 0x7f020117, 0x7f020118 } 1272 | int styleable AppCompatSeekBar_android_thumb 0 1273 | int styleable AppCompatSeekBar_tickMark 1 1274 | int styleable AppCompatSeekBar_tickMarkTint 2 1275 | int styleable AppCompatSeekBar_tickMarkTintMode 3 1276 | int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 } 1277 | int styleable AppCompatTextHelper_android_textAppearance 0 1278 | int styleable AppCompatTextHelper_android_drawableTop 1 1279 | int styleable AppCompatTextHelper_android_drawableBottom 2 1280 | int styleable AppCompatTextHelper_android_drawableLeft 3 1281 | int styleable AppCompatTextHelper_android_drawableRight 4 1282 | int styleable AppCompatTextHelper_android_drawableStart 5 1283 | int styleable AppCompatTextHelper_android_drawableEnd 6 1284 | int[] styleable AppCompatTextView { 0x01010034, 0x7f02002c, 0x7f02002d, 0x7f02002e, 0x7f02002f, 0x7f020030, 0x7f020077, 0x7f020106 } 1285 | int styleable AppCompatTextView_android_textAppearance 0 1286 | int styleable AppCompatTextView_autoSizeMaxTextSize 1 1287 | int styleable AppCompatTextView_autoSizeMinTextSize 2 1288 | int styleable AppCompatTextView_autoSizePresetSizes 3 1289 | int styleable AppCompatTextView_autoSizeStepGranularity 4 1290 | int styleable AppCompatTextView_autoSizeTextType 5 1291 | int styleable AppCompatTextView_fontFamily 6 1292 | int styleable AppCompatTextView_textAllCaps 7 1293 | int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002b, 0x7f020039, 0x7f02003a, 0x7f02003b, 0x7f02003c, 0x7f02003d, 0x7f02003e, 0x7f020041, 0x7f020042, 0x7f020046, 0x7f020047, 0x7f02004d, 0x7f02004e, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020055, 0x7f020056, 0x7f020062, 0x7f020065, 0x7f020066, 0x7f020069, 0x7f02006b, 0x7f02006e, 0x7f02006f, 0x7f020070, 0x7f020071, 0x7f020072, 0x7f020084, 0x7f02008a, 0x7f0200c2, 0x7f0200c3, 0x7f0200c6, 0x7f0200c7, 0x7f0200c8, 0x7f0200c9, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200db, 0x7f0200dc, 0x7f0200dd, 0x7f0200de, 0x7f0200e0, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9, 0x7f0200ec, 0x7f0200ed, 0x7f0200ee, 0x7f0200ef, 0x7f0200f6, 0x7f0200f7, 0x7f020104, 0x7f020107, 0x7f020108, 0x7f020109, 0x7f02010a, 0x7f02010b, 0x7f02010c, 0x7f02010d, 0x7f02010e, 0x7f02010f, 0x7f020110, 0x7f020125, 0x7f020126, 0x7f020127, 0x7f020128, 0x7f02012e, 0x7f02012f, 0x7f020130, 0x7f020131, 0x7f020132, 0x7f020133, 0x7f020134, 0x7f020135, 0x7f020136, 0x7f020137 } 1294 | int styleable AppCompatTheme_android_windowIsFloating 0 1295 | int styleable AppCompatTheme_android_windowAnimationStyle 1 1296 | int styleable AppCompatTheme_actionBarDivider 2 1297 | int styleable AppCompatTheme_actionBarItemBackground 3 1298 | int styleable AppCompatTheme_actionBarPopupTheme 4 1299 | int styleable AppCompatTheme_actionBarSize 5 1300 | int styleable AppCompatTheme_actionBarSplitStyle 6 1301 | int styleable AppCompatTheme_actionBarStyle 7 1302 | int styleable AppCompatTheme_actionBarTabBarStyle 8 1303 | int styleable AppCompatTheme_actionBarTabStyle 9 1304 | int styleable AppCompatTheme_actionBarTabTextStyle 10 1305 | int styleable AppCompatTheme_actionBarTheme 11 1306 | int styleable AppCompatTheme_actionBarWidgetTheme 12 1307 | int styleable AppCompatTheme_actionButtonStyle 13 1308 | int styleable AppCompatTheme_actionDropDownStyle 14 1309 | int styleable AppCompatTheme_actionMenuTextAppearance 15 1310 | int styleable AppCompatTheme_actionMenuTextColor 16 1311 | int styleable AppCompatTheme_actionModeBackground 17 1312 | int styleable AppCompatTheme_actionModeCloseButtonStyle 18 1313 | int styleable AppCompatTheme_actionModeCloseDrawable 19 1314 | int styleable AppCompatTheme_actionModeCopyDrawable 20 1315 | int styleable AppCompatTheme_actionModeCutDrawable 21 1316 | int styleable AppCompatTheme_actionModeFindDrawable 22 1317 | int styleable AppCompatTheme_actionModePasteDrawable 23 1318 | int styleable AppCompatTheme_actionModePopupWindowStyle 24 1319 | int styleable AppCompatTheme_actionModeSelectAllDrawable 25 1320 | int styleable AppCompatTheme_actionModeShareDrawable 26 1321 | int styleable AppCompatTheme_actionModeSplitBackground 27 1322 | int styleable AppCompatTheme_actionModeStyle 28 1323 | int styleable AppCompatTheme_actionModeWebSearchDrawable 29 1324 | int styleable AppCompatTheme_actionOverflowButtonStyle 30 1325 | int styleable AppCompatTheme_actionOverflowMenuStyle 31 1326 | int styleable AppCompatTheme_activityChooserViewStyle 32 1327 | int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 1328 | int styleable AppCompatTheme_alertDialogCenterButtons 34 1329 | int styleable AppCompatTheme_alertDialogStyle 35 1330 | int styleable AppCompatTheme_alertDialogTheme 36 1331 | int styleable AppCompatTheme_autoCompleteTextViewStyle 37 1332 | int styleable AppCompatTheme_borderlessButtonStyle 38 1333 | int styleable AppCompatTheme_buttonBarButtonStyle 39 1334 | int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 1335 | int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 1336 | int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 1337 | int styleable AppCompatTheme_buttonBarStyle 43 1338 | int styleable AppCompatTheme_buttonStyle 44 1339 | int styleable AppCompatTheme_buttonStyleSmall 45 1340 | int styleable AppCompatTheme_checkboxStyle 46 1341 | int styleable AppCompatTheme_checkedTextViewStyle 47 1342 | int styleable AppCompatTheme_colorAccent 48 1343 | int styleable AppCompatTheme_colorBackgroundFloating 49 1344 | int styleable AppCompatTheme_colorButtonNormal 50 1345 | int styleable AppCompatTheme_colorControlActivated 51 1346 | int styleable AppCompatTheme_colorControlHighlight 52 1347 | int styleable AppCompatTheme_colorControlNormal 53 1348 | int styleable AppCompatTheme_colorError 54 1349 | int styleable AppCompatTheme_colorPrimary 55 1350 | int styleable AppCompatTheme_colorPrimaryDark 56 1351 | int styleable AppCompatTheme_colorSwitchThumbNormal 57 1352 | int styleable AppCompatTheme_controlBackground 58 1353 | int styleable AppCompatTheme_dialogPreferredPadding 59 1354 | int styleable AppCompatTheme_dialogTheme 60 1355 | int styleable AppCompatTheme_dividerHorizontal 61 1356 | int styleable AppCompatTheme_dividerVertical 62 1357 | int styleable AppCompatTheme_dropDownListViewStyle 63 1358 | int styleable AppCompatTheme_dropdownListPreferredItemHeight 64 1359 | int styleable AppCompatTheme_editTextBackground 65 1360 | int styleable AppCompatTheme_editTextColor 66 1361 | int styleable AppCompatTheme_editTextStyle 67 1362 | int styleable AppCompatTheme_homeAsUpIndicator 68 1363 | int styleable AppCompatTheme_imageButtonStyle 69 1364 | int styleable AppCompatTheme_listChoiceBackgroundIndicator 70 1365 | int styleable AppCompatTheme_listDividerAlertDialog 71 1366 | int styleable AppCompatTheme_listMenuViewStyle 72 1367 | int styleable AppCompatTheme_listPopupWindowStyle 73 1368 | int styleable AppCompatTheme_listPreferredItemHeight 74 1369 | int styleable AppCompatTheme_listPreferredItemHeightLarge 75 1370 | int styleable AppCompatTheme_listPreferredItemHeightSmall 76 1371 | int styleable AppCompatTheme_listPreferredItemPaddingLeft 77 1372 | int styleable AppCompatTheme_listPreferredItemPaddingRight 78 1373 | int styleable AppCompatTheme_panelBackground 79 1374 | int styleable AppCompatTheme_panelMenuListTheme 80 1375 | int styleable AppCompatTheme_panelMenuListWidth 81 1376 | int styleable AppCompatTheme_popupMenuStyle 82 1377 | int styleable AppCompatTheme_popupWindowStyle 83 1378 | int styleable AppCompatTheme_radioButtonStyle 84 1379 | int styleable AppCompatTheme_ratingBarStyle 85 1380 | int styleable AppCompatTheme_ratingBarStyleIndicator 86 1381 | int styleable AppCompatTheme_ratingBarStyleSmall 87 1382 | int styleable AppCompatTheme_searchViewStyle 88 1383 | int styleable AppCompatTheme_seekBarStyle 89 1384 | int styleable AppCompatTheme_selectableItemBackground 90 1385 | int styleable AppCompatTheme_selectableItemBackgroundBorderless 91 1386 | int styleable AppCompatTheme_spinnerDropDownItemStyle 92 1387 | int styleable AppCompatTheme_spinnerStyle 93 1388 | int styleable AppCompatTheme_switchStyle 94 1389 | int styleable AppCompatTheme_textAppearanceLargePopupMenu 95 1390 | int styleable AppCompatTheme_textAppearanceListItem 96 1391 | int styleable AppCompatTheme_textAppearanceListItemSecondary 97 1392 | int styleable AppCompatTheme_textAppearanceListItemSmall 98 1393 | int styleable AppCompatTheme_textAppearancePopupMenuHeader 99 1394 | int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 100 1395 | int styleable AppCompatTheme_textAppearanceSearchResultTitle 101 1396 | int styleable AppCompatTheme_textAppearanceSmallPopupMenu 102 1397 | int styleable AppCompatTheme_textColorAlertDialogListItem 103 1398 | int styleable AppCompatTheme_textColorSearchUrl 104 1399 | int styleable AppCompatTheme_toolbarNavigationButtonStyle 105 1400 | int styleable AppCompatTheme_toolbarStyle 106 1401 | int styleable AppCompatTheme_tooltipForegroundColor 107 1402 | int styleable AppCompatTheme_tooltipFrameBackground 108 1403 | int styleable AppCompatTheme_windowActionBar 109 1404 | int styleable AppCompatTheme_windowActionBarOverlay 110 1405 | int styleable AppCompatTheme_windowActionModeOverlay 111 1406 | int styleable AppCompatTheme_windowFixedHeightMajor 112 1407 | int styleable AppCompatTheme_windowFixedHeightMinor 113 1408 | int styleable AppCompatTheme_windowFixedWidthMajor 114 1409 | int styleable AppCompatTheme_windowFixedWidthMinor 115 1410 | int styleable AppCompatTheme_windowMinWidthMajor 116 1411 | int styleable AppCompatTheme_windowMinWidthMinor 117 1412 | int styleable AppCompatTheme_windowNoTitle 118 1413 | int[] styleable ButtonBarLayout { 0x7f020026 } 1414 | int styleable ButtonBarLayout_allowStacking 0 1415 | int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f020027 } 1416 | int styleable ColorStateListItem_android_color 0 1417 | int styleable ColorStateListItem_android_alpha 1 1418 | int styleable ColorStateListItem_alpha 2 1419 | int[] styleable CompoundButton { 0x01010107, 0x7f020043, 0x7f020044 } 1420 | int styleable CompoundButton_android_button 0 1421 | int styleable CompoundButton_buttonTint 1 1422 | int styleable CompoundButton_buttonTintMode 2 1423 | int[] styleable ConstraintLayout_Layout { 0x010100c4, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020058, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1 } 1424 | int styleable ConstraintLayout_Layout_android_orientation 0 1425 | int styleable ConstraintLayout_Layout_android_maxWidth 1 1426 | int styleable ConstraintLayout_Layout_android_maxHeight 2 1427 | int styleable ConstraintLayout_Layout_android_minWidth 3 1428 | int styleable ConstraintLayout_Layout_android_minHeight 4 1429 | int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 1430 | int styleable ConstraintLayout_Layout_barrierDirection 6 1431 | int styleable ConstraintLayout_Layout_chainUseRtl 7 1432 | int styleable ConstraintLayout_Layout_constraintSet 8 1433 | int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 1434 | int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 1435 | int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 1436 | int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 1437 | int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 1438 | int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 1439 | int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 1440 | int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 1441 | int styleable ConstraintLayout_Layout_layout_constraintCircle 17 1442 | int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 1443 | int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 1444 | int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 1445 | int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 1446 | int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 1447 | int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 1448 | int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 1449 | int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 1450 | int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 1451 | int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 1452 | int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 1453 | int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 1454 | int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 1455 | int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 1456 | int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 1457 | int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 1458 | int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 1459 | int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 1460 | int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 1461 | int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 1462 | int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 1463 | int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 1464 | int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 1465 | int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 1466 | int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 1467 | int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 1468 | int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 1469 | int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 1470 | int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 1471 | int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 1472 | int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 1473 | int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 1474 | int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 1475 | int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 1476 | int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 1477 | int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 1478 | int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 1479 | int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 1480 | int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 1481 | int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 1482 | int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 1483 | int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 1484 | int[] styleable ConstraintLayout_placeholder { 0x7f02005a, 0x7f020074 } 1485 | int styleable ConstraintLayout_placeholder_content 0 1486 | int styleable ConstraintLayout_placeholder_emptyVisibility 1 1487 | int[] styleable ConstraintSet { 0x010100c4, 0x010100d0, 0x010100dc, 0x010100f4, 0x010100f5, 0x010100f7, 0x010100f8, 0x010100f9, 0x010100fa, 0x0101011f, 0x01010120, 0x0101013f, 0x01010140, 0x0101031f, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x01010324, 0x01010325, 0x01010326, 0x01010327, 0x01010328, 0x010103b5, 0x010103b6, 0x010103fa, 0x01010440, 0x7f020037, 0x7f020038, 0x7f020045, 0x7f020059, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020094, 0x7f020095, 0x7f020096, 0x7f020097, 0x7f020098, 0x7f020099, 0x7f02009a, 0x7f02009b, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a0, 0x7f0200a1, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200a6, 0x7f0200a7, 0x7f0200a8, 0x7f0200a9, 0x7f0200aa, 0x7f0200ab, 0x7f0200ac, 0x7f0200ad, 0x7f0200ae, 0x7f0200af, 0x7f0200b0, 0x7f0200b1, 0x7f0200b2, 0x7f0200b3, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200b7, 0x7f0200b8, 0x7f0200b9, 0x7f0200ba, 0x7f0200bb, 0x7f0200bc, 0x7f0200bd, 0x7f0200be, 0x7f0200bf, 0x7f0200c0 } 1488 | int styleable ConstraintSet_android_orientation 0 1489 | int styleable ConstraintSet_android_id 1 1490 | int styleable ConstraintSet_android_visibility 2 1491 | int styleable ConstraintSet_android_layout_width 3 1492 | int styleable ConstraintSet_android_layout_height 4 1493 | int styleable ConstraintSet_android_layout_marginLeft 5 1494 | int styleable ConstraintSet_android_layout_marginTop 6 1495 | int styleable ConstraintSet_android_layout_marginRight 7 1496 | int styleable ConstraintSet_android_layout_marginBottom 8 1497 | int styleable ConstraintSet_android_maxWidth 9 1498 | int styleable ConstraintSet_android_maxHeight 10 1499 | int styleable ConstraintSet_android_minWidth 11 1500 | int styleable ConstraintSet_android_minHeight 12 1501 | int styleable ConstraintSet_android_alpha 13 1502 | int styleable ConstraintSet_android_transformPivotX 14 1503 | int styleable ConstraintSet_android_transformPivotY 15 1504 | int styleable ConstraintSet_android_translationX 16 1505 | int styleable ConstraintSet_android_translationY 17 1506 | int styleable ConstraintSet_android_scaleX 18 1507 | int styleable ConstraintSet_android_scaleY 19 1508 | int styleable ConstraintSet_android_rotation 20 1509 | int styleable ConstraintSet_android_rotationX 21 1510 | int styleable ConstraintSet_android_rotationY 22 1511 | int styleable ConstraintSet_android_layout_marginStart 23 1512 | int styleable ConstraintSet_android_layout_marginEnd 24 1513 | int styleable ConstraintSet_android_translationZ 25 1514 | int styleable ConstraintSet_android_elevation 26 1515 | int styleable ConstraintSet_barrierAllowsGoneWidgets 27 1516 | int styleable ConstraintSet_barrierDirection 28 1517 | int styleable ConstraintSet_chainUseRtl 29 1518 | int styleable ConstraintSet_constraint_referenced_ids 30 1519 | int styleable ConstraintSet_layout_constrainedHeight 31 1520 | int styleable ConstraintSet_layout_constrainedWidth 32 1521 | int styleable ConstraintSet_layout_constraintBaseline_creator 33 1522 | int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 34 1523 | int styleable ConstraintSet_layout_constraintBottom_creator 35 1524 | int styleable ConstraintSet_layout_constraintBottom_toBottomOf 36 1525 | int styleable ConstraintSet_layout_constraintBottom_toTopOf 37 1526 | int styleable ConstraintSet_layout_constraintCircle 38 1527 | int styleable ConstraintSet_layout_constraintCircleAngle 39 1528 | int styleable ConstraintSet_layout_constraintCircleRadius 40 1529 | int styleable ConstraintSet_layout_constraintDimensionRatio 41 1530 | int styleable ConstraintSet_layout_constraintEnd_toEndOf 42 1531 | int styleable ConstraintSet_layout_constraintEnd_toStartOf 43 1532 | int styleable ConstraintSet_layout_constraintGuide_begin 44 1533 | int styleable ConstraintSet_layout_constraintGuide_end 45 1534 | int styleable ConstraintSet_layout_constraintGuide_percent 46 1535 | int styleable ConstraintSet_layout_constraintHeight_default 47 1536 | int styleable ConstraintSet_layout_constraintHeight_max 48 1537 | int styleable ConstraintSet_layout_constraintHeight_min 49 1538 | int styleable ConstraintSet_layout_constraintHeight_percent 50 1539 | int styleable ConstraintSet_layout_constraintHorizontal_bias 51 1540 | int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 52 1541 | int styleable ConstraintSet_layout_constraintHorizontal_weight 53 1542 | int styleable ConstraintSet_layout_constraintLeft_creator 54 1543 | int styleable ConstraintSet_layout_constraintLeft_toLeftOf 55 1544 | int styleable ConstraintSet_layout_constraintLeft_toRightOf 56 1545 | int styleable ConstraintSet_layout_constraintRight_creator 57 1546 | int styleable ConstraintSet_layout_constraintRight_toLeftOf 58 1547 | int styleable ConstraintSet_layout_constraintRight_toRightOf 59 1548 | int styleable ConstraintSet_layout_constraintStart_toEndOf 60 1549 | int styleable ConstraintSet_layout_constraintStart_toStartOf 61 1550 | int styleable ConstraintSet_layout_constraintTop_creator 62 1551 | int styleable ConstraintSet_layout_constraintTop_toBottomOf 63 1552 | int styleable ConstraintSet_layout_constraintTop_toTopOf 64 1553 | int styleable ConstraintSet_layout_constraintVertical_bias 65 1554 | int styleable ConstraintSet_layout_constraintVertical_chainStyle 66 1555 | int styleable ConstraintSet_layout_constraintVertical_weight 67 1556 | int styleable ConstraintSet_layout_constraintWidth_default 68 1557 | int styleable ConstraintSet_layout_constraintWidth_max 69 1558 | int styleable ConstraintSet_layout_constraintWidth_min 70 1559 | int styleable ConstraintSet_layout_constraintWidth_percent 71 1560 | int styleable ConstraintSet_layout_editor_absoluteX 72 1561 | int styleable ConstraintSet_layout_editor_absoluteY 73 1562 | int styleable ConstraintSet_layout_goneMarginBottom 74 1563 | int styleable ConstraintSet_layout_goneMarginEnd 75 1564 | int styleable ConstraintSet_layout_goneMarginLeft 76 1565 | int styleable ConstraintSet_layout_goneMarginRight 77 1566 | int styleable ConstraintSet_layout_goneMarginStart 78 1567 | int styleable ConstraintSet_layout_goneMarginTop 79 1568 | int[] styleable DrawerArrowToggle { 0x7f020029, 0x7f02002a, 0x7f020036, 0x7f02004c, 0x7f02006c, 0x7f020080, 0x7f0200f5, 0x7f020112 } 1569 | int styleable DrawerArrowToggle_arrowHeadLength 0 1570 | int styleable DrawerArrowToggle_arrowShaftLength 1 1571 | int styleable DrawerArrowToggle_barLength 2 1572 | int styleable DrawerArrowToggle_color 3 1573 | int styleable DrawerArrowToggle_drawableSize 4 1574 | int styleable DrawerArrowToggle_gapBetweenBars 5 1575 | int styleable DrawerArrowToggle_spinBars 6 1576 | int styleable DrawerArrowToggle_thickness 7 1577 | int[] styleable FontFamily { 0x7f020078, 0x7f020079, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d } 1578 | int styleable FontFamily_fontProviderAuthority 0 1579 | int styleable FontFamily_fontProviderCerts 1 1580 | int styleable FontFamily_fontProviderFetchStrategy 2 1581 | int styleable FontFamily_fontProviderFetchTimeout 3 1582 | int styleable FontFamily_fontProviderPackage 4 1583 | int styleable FontFamily_fontProviderQuery 5 1584 | int[] styleable FontFamilyFont { 0x7f020076, 0x7f02007e, 0x7f02007f } 1585 | int styleable FontFamilyFont_font 0 1586 | int styleable FontFamilyFont_fontStyle 1 1587 | int styleable FontFamilyFont_fontWeight 2 1588 | int[] styleable LinearConstraintLayout { 0x010100c4 } 1589 | int styleable LinearConstraintLayout_android_orientation 0 1590 | int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f020068, 0x7f02006a, 0x7f0200d0, 0x7f0200f1 } 1591 | int styleable LinearLayoutCompat_android_gravity 0 1592 | int styleable LinearLayoutCompat_android_orientation 1 1593 | int styleable LinearLayoutCompat_android_baselineAligned 2 1594 | int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 1595 | int styleable LinearLayoutCompat_android_weightSum 4 1596 | int styleable LinearLayoutCompat_divider 5 1597 | int styleable LinearLayoutCompat_dividerPadding 6 1598 | int styleable LinearLayoutCompat_measureWithLargestChild 7 1599 | int styleable LinearLayoutCompat_showDividers 8 1600 | int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } 1601 | int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 1602 | int styleable LinearLayoutCompat_Layout_android_layout_width 1 1603 | int styleable LinearLayoutCompat_Layout_android_layout_height 2 1604 | int styleable LinearLayoutCompat_Layout_android_layout_weight 3 1605 | int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } 1606 | int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 1607 | int styleable ListPopupWindow_android_dropDownVerticalOffset 1 1608 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 1609 | int styleable MenuGroup_android_enabled 0 1610 | int styleable MenuGroup_android_id 1 1611 | int styleable MenuGroup_android_visible 2 1612 | int styleable MenuGroup_android_menuCategory 3 1613 | int styleable MenuGroup_android_orderInCategory 4 1614 | int styleable MenuGroup_android_checkableBehavior 5 1615 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f020028, 0x7f02005b, 0x7f020087, 0x7f020088, 0x7f0200d5, 0x7f0200f0, 0x7f020129 } 1616 | int styleable MenuItem_android_icon 0 1617 | int styleable MenuItem_android_enabled 1 1618 | int styleable MenuItem_android_id 2 1619 | int styleable MenuItem_android_checked 3 1620 | int styleable MenuItem_android_visible 4 1621 | int styleable MenuItem_android_menuCategory 5 1622 | int styleable MenuItem_android_orderInCategory 6 1623 | int styleable MenuItem_android_title 7 1624 | int styleable MenuItem_android_titleCondensed 8 1625 | int styleable MenuItem_android_alphabeticShortcut 9 1626 | int styleable MenuItem_android_numericShortcut 10 1627 | int styleable MenuItem_android_checkable 11 1628 | int styleable MenuItem_android_onClick 12 1629 | int styleable MenuItem_actionLayout 13 1630 | int styleable MenuItem_actionProviderClass 14 1631 | int styleable MenuItem_actionViewClass 15 1632 | int styleable MenuItem_alphabeticModifiers 16 1633 | int styleable MenuItem_contentDescription 17 1634 | int styleable MenuItem_iconTint 18 1635 | int styleable MenuItem_iconTintMode 19 1636 | int styleable MenuItem_numericModifiers 20 1637 | int styleable MenuItem_showAsAction 21 1638 | int styleable MenuItem_tooltipText 22 1639 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0200e1, 0x7f0200fb } 1640 | int styleable MenuView_android_windowAnimationStyle 0 1641 | int styleable MenuView_android_itemTextAppearance 1 1642 | int styleable MenuView_android_horizontalDivider 2 1643 | int styleable MenuView_android_verticalDivider 3 1644 | int styleable MenuView_android_headerBackground 4 1645 | int styleable MenuView_android_itemBackground 5 1646 | int styleable MenuView_android_itemIconDisabledAlpha 6 1647 | int styleable MenuView_preserveIconSpacing 7 1648 | int styleable MenuView_subMenuArrow 8 1649 | int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f0200d6 } 1650 | int styleable PopupWindow_android_popupBackground 0 1651 | int styleable PopupWindow_android_popupAnimationStyle 1 1652 | int styleable PopupWindow_overlapAnchor 2 1653 | int[] styleable PopupWindowBackgroundState { 0x7f0200fa } 1654 | int styleable PopupWindowBackgroundState_state_above_anchor 0 1655 | int[] styleable RecycleListView { 0x7f0200d7, 0x7f0200da } 1656 | int styleable RecycleListView_paddingBottomNoButtons 0 1657 | int styleable RecycleListView_paddingTopNoTitle 1 1658 | int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f020048, 0x7f020057, 0x7f020064, 0x7f020081, 0x7f020089, 0x7f02008f, 0x7f0200e4, 0x7f0200e5, 0x7f0200ea, 0x7f0200eb, 0x7f0200fc, 0x7f020101, 0x7f02012d } 1659 | int styleable SearchView_android_focusable 0 1660 | int styleable SearchView_android_maxWidth 1 1661 | int styleable SearchView_android_inputType 2 1662 | int styleable SearchView_android_imeOptions 3 1663 | int styleable SearchView_closeIcon 4 1664 | int styleable SearchView_commitIcon 5 1665 | int styleable SearchView_defaultQueryHint 6 1666 | int styleable SearchView_goIcon 7 1667 | int styleable SearchView_iconifiedByDefault 8 1668 | int styleable SearchView_layout 9 1669 | int styleable SearchView_queryBackground 10 1670 | int styleable SearchView_queryHint 11 1671 | int styleable SearchView_searchHintIcon 12 1672 | int styleable SearchView_searchIcon 13 1673 | int styleable SearchView_submitBackground 14 1674 | int styleable SearchView_suggestionRowLayout 15 1675 | int styleable SearchView_voiceIcon 16 1676 | int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f0200df } 1677 | int styleable Spinner_android_entries 0 1678 | int styleable Spinner_android_popupBackground 1 1679 | int styleable Spinner_android_prompt 2 1680 | int styleable Spinner_android_dropDownWidth 3 1681 | int styleable Spinner_popupTheme 4 1682 | int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0200f2, 0x7f0200f8, 0x7f020102, 0x7f020103, 0x7f020105, 0x7f020113, 0x7f020114, 0x7f020115, 0x7f02012a, 0x7f02012b, 0x7f02012c } 1683 | int styleable SwitchCompat_android_textOn 0 1684 | int styleable SwitchCompat_android_textOff 1 1685 | int styleable SwitchCompat_android_thumb 2 1686 | int styleable SwitchCompat_showText 3 1687 | int styleable SwitchCompat_splitTrack 4 1688 | int styleable SwitchCompat_switchMinWidth 5 1689 | int styleable SwitchCompat_switchPadding 6 1690 | int styleable SwitchCompat_switchTextAppearance 7 1691 | int styleable SwitchCompat_thumbTextPadding 8 1692 | int styleable SwitchCompat_thumbTint 9 1693 | int styleable SwitchCompat_thumbTintMode 10 1694 | int styleable SwitchCompat_track 11 1695 | int styleable SwitchCompat_trackTint 12 1696 | int styleable SwitchCompat_trackTintMode 13 1697 | int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f020077, 0x7f020106 } 1698 | int styleable TextAppearance_android_textSize 0 1699 | int styleable TextAppearance_android_typeface 1 1700 | int styleable TextAppearance_android_textStyle 2 1701 | int styleable TextAppearance_android_textColor 3 1702 | int styleable TextAppearance_android_textColorHint 4 1703 | int styleable TextAppearance_android_textColorLink 5 1704 | int styleable TextAppearance_android_shadowColor 6 1705 | int styleable TextAppearance_android_shadowDx 7 1706 | int styleable TextAppearance_android_shadowDy 8 1707 | int styleable TextAppearance_android_shadowRadius 9 1708 | int styleable TextAppearance_android_fontFamily 10 1709 | int styleable TextAppearance_fontFamily 11 1710 | int styleable TextAppearance_textAllCaps 12 1711 | int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f02003f, 0x7f02004a, 0x7f02004b, 0x7f02005c, 0x7f02005d, 0x7f02005e, 0x7f02005f, 0x7f020060, 0x7f020061, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf, 0x7f0200d2, 0x7f0200d3, 0x7f0200df, 0x7f0200fd, 0x7f0200fe, 0x7f0200ff, 0x7f02011b, 0x7f02011c, 0x7f02011d, 0x7f02011e, 0x7f02011f, 0x7f020120, 0x7f020121, 0x7f020122, 0x7f020123 } 1712 | int styleable Toolbar_android_gravity 0 1713 | int styleable Toolbar_android_minHeight 1 1714 | int styleable Toolbar_buttonGravity 2 1715 | int styleable Toolbar_collapseContentDescription 3 1716 | int styleable Toolbar_collapseIcon 4 1717 | int styleable Toolbar_contentInsetEnd 5 1718 | int styleable Toolbar_contentInsetEndWithActions 6 1719 | int styleable Toolbar_contentInsetLeft 7 1720 | int styleable Toolbar_contentInsetRight 8 1721 | int styleable Toolbar_contentInsetStart 9 1722 | int styleable Toolbar_contentInsetStartWithNavigation 10 1723 | int styleable Toolbar_logo 11 1724 | int styleable Toolbar_logoDescription 12 1725 | int styleable Toolbar_maxButtonHeight 13 1726 | int styleable Toolbar_navigationContentDescription 14 1727 | int styleable Toolbar_navigationIcon 15 1728 | int styleable Toolbar_popupTheme 16 1729 | int styleable Toolbar_subtitle 17 1730 | int styleable Toolbar_subtitleTextAppearance 18 1731 | int styleable Toolbar_subtitleTextColor 19 1732 | int styleable Toolbar_title 20 1733 | int styleable Toolbar_titleMargin 21 1734 | int styleable Toolbar_titleMarginBottom 22 1735 | int styleable Toolbar_titleMarginEnd 23 1736 | int styleable Toolbar_titleMarginStart 24 1737 | int styleable Toolbar_titleMarginTop 25 1738 | int styleable Toolbar_titleMargins 26 1739 | int styleable Toolbar_titleTextAppearance 27 1740 | int styleable Toolbar_titleTextColor 28 1741 | int[] styleable View { 0x01010000, 0x010100da, 0x7f0200d8, 0x7f0200d9, 0x7f020111 } 1742 | int styleable View_android_theme 0 1743 | int styleable View_android_focusable 1 1744 | int styleable View_paddingEnd 2 1745 | int styleable View_paddingStart 3 1746 | int styleable View_theme 4 1747 | int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f020034, 0x7f020035 } 1748 | int styleable ViewBackgroundHelper_android_background 0 1749 | int styleable ViewBackgroundHelper_backgroundTint 1 1750 | int styleable ViewBackgroundHelper_backgroundTintMode 2 1751 | int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } 1752 | int styleable ViewStubCompat_android_id 0 1753 | int styleable ViewStubCompat_android_layout 1 1754 | int styleable ViewStubCompat_android_inflatedId 2 1755 | --------------------------------------------------------------------------------