├── bin ├── classes.dex ├── resources.ap_ ├── AndroidMaterialMenu.apk ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── ic_more.png │ │ ├── ic_filter.png │ │ ├── ic_impmail.png │ │ ├── ic_logout.png │ │ ├── ic_mypost.png │ │ ├── ic_profile.png │ │ ├── ic_search.png │ │ ├── ic_launcher.png │ │ ├── ic_profilepic.png │ │ └── ic_settings.png │ │ ├── drawable-ldpi │ │ └── ic_more.png │ │ ├── drawable-mdpi │ │ ├── ic_more.png │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ ├── ic_more.png │ │ ├── ic_filter.png │ │ ├── ic_logout.png │ │ ├── ic_mypost.png │ │ ├── ic_search.png │ │ ├── ic_impmail.png │ │ ├── ic_launcher.png │ │ ├── ic_profile.png │ │ └── ic_settings.png │ │ └── drawable-xxhdpi │ │ ├── ic_more.png │ │ └── ic_launcher.png ├── dexedLibs │ ├── appcompat_v7-48146dac21fdf85794587d623277fef8.jar │ ├── android-support-v4-5c268ddddf2a1e2689829df403248fde.jar │ ├── appcompat_v7_recylerview-b5ab1221b4ba134d62948c9ee027dcbf.jar │ ├── android-support-v7-appcompat-247a579aba1d18d66c1f44ce45c17bc9.jar │ └── android-support-v7-recyclerview-d5d0e77be86bd165539fa2eeac4c02de.jar ├── jarlist.cache ├── AndroidManifest.xml └── R.txt ├── ic_launcher-web.png ├── libs ├── android-support-v4.jar └── universal-image-loader-1.9.2-SNAPSHOT-with-sources.jar ├── res ├── drawable-hdpi │ ├── ic_filter.png │ ├── ic_logout.png │ ├── ic_more.png │ ├── ic_mypost.png │ ├── ic_search.png │ ├── ic_impmail.png │ ├── ic_launcher.png │ ├── ic_profile.png │ ├── ic_settings.png │ └── ic_profilepic.png ├── drawable-ldpi │ └── ic_more.png ├── drawable-mdpi │ ├── ic_more.png │ └── ic_launcher.png ├── drawable-xhdpi │ ├── ic_more.png │ ├── ic_filter.png │ ├── ic_impmail.png │ ├── ic_logout.png │ ├── ic_mypost.png │ ├── ic_profile.png │ ├── ic_search.png │ ├── ic_launcher.png │ └── ic_settings.png ├── drawable-xxhdpi │ ├── ic_more.png │ └── ic_launcher.png ├── values │ ├── dimens.xml │ ├── attrs.xml │ ├── strings.xml │ ├── color.xml │ └── styles.xml ├── menu │ ├── optionmenu.xml │ └── home.xml ├── values-w820dp │ └── dimens.xml ├── layout │ ├── activity_myprofile.xml │ ├── actiontool_bar.xml │ ├── slider_item_row.xml │ ├── activity_home.xml │ ├── slidemenu_pfpic_header.xml │ └── inflate_homeitem_row.xml ├── drawable │ └── shape_circle_bg.xml └── values-v21 │ └── styles.xml ├── src └── com │ └── androidmaterialmenu │ ├── Constants.java │ ├── MyProfileActivity.java │ ├── HomeListBaseAdapter.java │ ├── SlideMenuAdapter.java │ ├── HomeActivity.java │ └── CircleImageView.java ├── .classpath ├── project.properties ├── proguard-project.txt ├── .project ├── AndroidManifest.xml └── README.md /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/classes.dex -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/resources.ap_ -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /bin/AndroidMaterialMenu.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/AndroidMaterialMenu.apk -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_filter.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_logout.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_more.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_mypost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_mypost.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_search.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-ldpi/ic_more.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-mdpi/ic_more.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_more.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xxhdpi/ic_more.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_impmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_impmail.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_profile.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_settings.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_filter.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_impmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_impmail.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_logout.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_mypost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_mypost.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_profile.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_search.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_profilepic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-hdpi/ic_profilepic.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xhdpi/ic_settings.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_more.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-ldpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-ldpi/ic_more.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-mdpi/ic_more.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_more.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_filter.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_impmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_impmail.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_logout.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_mypost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_mypost.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_profile.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_search.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_filter.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_logout.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_mypost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_mypost.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_search.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xxhdpi/ic_more.png -------------------------------------------------------------------------------- /src/com/androidmaterialmenu/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/src/com/androidmaterialmenu/Constants.java -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_profilepic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_profilepic.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-hdpi/ic_settings.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_impmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_impmail.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_profile.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xhdpi/ic_settings.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /libs/universal-image-loader-1.9.2-SNAPSHOT-with-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/libs/universal-image-loader-1.9.2-SNAPSHOT-with-sources.jar -------------------------------------------------------------------------------- /bin/dexedLibs/appcompat_v7-48146dac21fdf85794587d623277fef8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/dexedLibs/appcompat_v7-48146dac21fdf85794587d623277fef8.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-5c268ddddf2a1e2689829df403248fde.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/dexedLibs/android-support-v4-5c268ddddf2a1e2689829df403248fde.jar -------------------------------------------------------------------------------- /bin/dexedLibs/appcompat_v7_recylerview-b5ab1221b4ba134d62948c9ee027dcbf.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/dexedLibs/appcompat_v7_recylerview-b5ab1221b4ba134d62948c9ee027dcbf.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-appcompat-247a579aba1d18d66c1f44ce45c17bc9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/dexedLibs/android-support-v7-appcompat-247a579aba1d18d66c1f44ce45c17bc9.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v7-recyclerview-d5d0e77be86bd165539fa2eeac4c02de.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dibakarece/AndroidMaterialMenu/HEAD/bin/dexedLibs/android-support-v7-recyclerview-d5d0e77be86bd165539fa2eeac4c02de.jar -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16dp 5 | 16dp 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/menu/optionmenu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AndroidMaterialMenu 5 | Hello world! 6 | Settings 7 | openDrawer 8 | closeDrawer 9 | 10 | -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1420739290635 995624 3e4e879d0b3dc11f2feb3f55e77e3b5bd82c4a28 D:\ANDROID\AndroidWorkSpaceForOFCAPUS\AndroidMaterialMenu\libs\android-support-v4.jar 5 | 1418795620426 995624 3e4e879d0b3dc11f2feb3f55e77e3b5bd82c4a28 D:\ANDROID\AndroidWorkSpaceForOFCAPUS\appcompat_v7\libs\android-support-v4.jar 6 | -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 64dp 9 | 10 | 11 | -------------------------------------------------------------------------------- /res/values/color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | #009688 5 | #009688 6 | #009688 7 | #009688 8 | 9 | #1F497D 10 | #e23737 11 | #d0dae6 12 | 13 | -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /res/layout/activity_myprofile.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /res/drawable/shape_circle_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 12 | 13 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 15 | 16 | -------------------------------------------------------------------------------- /res/layout/actiontool_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 12 | 13 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-21 15 | android.library.reference.1=../appcompat_v7_Recylerview 16 | android.library.reference.2=../appcompat_v7 17 | -------------------------------------------------------------------------------- /res/menu/home.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 12 | 13 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | AndroidMaterialMenu 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /res/layout/slider_item_row.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 16 | 17 | 27 | 28 | -------------------------------------------------------------------------------- /src/com/androidmaterialmenu/MyProfileActivity.java: -------------------------------------------------------------------------------- 1 | package com.androidmaterialmenu; 2 | 3 | import android.os.Bundle; 4 | import android.support.v7.app.ActionBarActivity; 5 | import android.support.v7.widget.Toolbar; 6 | import android.view.MenuItem; 7 | 8 | public class MyProfileActivity extends ActionBarActivity { 9 | 10 | @Override 11 | protected void onCreate(Bundle savedInstanceState) { 12 | super.onCreate(savedInstanceState); 13 | setContentView(R.layout.activity_myprofile); 14 | 15 | /**Initialize the Action tool bar**/ 16 | Toolbar mToolbar = (Toolbar) findViewById(R.id.tool_bar); 17 | mToolbar.setTitle("My Profile"); 18 | setSupportActionBar(mToolbar); 19 | getSupportActionBar().setDisplayHomeAsUpEnabled(true); 20 | } 21 | 22 | @Override 23 | public void onBackPressed() { 24 | super.onBackPressed(); 25 | overridePendingTransition(0,0); 26 | finish(); 27 | } 28 | 29 | @Override 30 | public boolean onOptionsItemSelected(MenuItem item) { 31 | switch (item.getItemId()) { 32 | case android.R.id.home: 33 | onBackPressed(); 34 | break; 35 | } 36 | return super.onOptionsItemSelected(item); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AndroidMaterialMenu 2 | AndroidMaterialMenu 3 | 4 | This is a simple Material Desing Demo project. Which help you learn, how to design a material in android for android 2.2 to higher. Import this project in your Eclipse workspace and import two lib (appcompact-v7, android-appcompact-v7Recyclerviw). 5 | 6 | Project View index: 7 | 1. Slide Panel. 8 | 2. Search View. 9 | 3. Profile view in Slide Panel. 10 | 4. Popup Menu in list item (android 2.2 supported). 11 | 12 | 13 | ![device-2015-02-06-131340](https://cloud.githubusercontent.com/assets/10453203/6075979/e7d5a09c-ae02-11e4-95c8-616d164378fc.png) 14 | ![device-2015-02-06-131359](https://cloud.githubusercontent.com/assets/10453203/6075986/01a1990e-ae03-11e4-9ec0-54a5e2ae2aea.png) 15 | ![device-2015-02-06-131527](https://cloud.githubusercontent.com/assets/10453203/6075991/0e136168-ae03-11e4-803e-d992020465e2.png) 16 | 17 | #License 18 | Copyright 2015 dibakar.ece@gmail.com Dibakar Mistry 19 | 20 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at: 21 | 22 | http://www.apache.org/licenses/LICENSE-2.0 23 | 24 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 25 | -------------------------------------------------------------------------------- /res/layout/activity_home.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 13 | 19 | 20 | 25 | 26 | 31 | 32 | 33 | 34 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /res/layout/slidemenu_pfpic_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 16 | 17 | 26 | 27 | 37 | 38 | 39 | 44 | 45 | 53 | 54 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /res/layout/inflate_homeitem_row.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 17 | 25 | 26 | 31 | 32 | 33 | 40 | 41 | 49 | 50 | 60 | 61 | 62 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /src/com/androidmaterialmenu/HomeListBaseAdapter.java: -------------------------------------------------------------------------------- 1 | package com.androidmaterialmenu; 2 | 3 | import android.content.Context; 4 | import android.graphics.drawable.GradientDrawable; 5 | import android.support.v7.widget.PopupMenu; 6 | import android.view.LayoutInflater; 7 | import android.view.MenuItem; 8 | import android.view.View; 9 | import android.view.View.OnClickListener; 10 | import android.view.ViewGroup; 11 | import android.widget.BaseAdapter; 12 | import android.widget.ImageView; 13 | import android.widget.TextView; 14 | 15 | import com.nostra13.universalimageloader.core.DisplayImageOptions; 16 | import com.nostra13.universalimageloader.core.ImageLoader; 17 | import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; 18 | 19 | public class HomeListBaseAdapter extends BaseAdapter { 20 | 21 | private LayoutInflater inflater; 22 | private String[] images; 23 | private Context context; 24 | 25 | private ImageLoader imageLoader=ImageLoader.getInstance(); 26 | private DisplayImageOptions options; 27 | 28 | public HomeListBaseAdapter(Context mContext, String[] ImageUrls) { 29 | this.context = mContext; 30 | this.images = ImageUrls; 31 | this.inflater = LayoutInflater.from(mContext); 32 | 33 | options = new DisplayImageOptions.Builder().cacheInMemory(true) 34 | .cacheOnDisc(true).showImageForEmptyUri(R.drawable.ic_profile) 35 | .considerExifParams(true) 36 | .showImageOnFail(R.drawable.ic_profile) 37 | .showImageOnLoading(R.drawable.ic_profile).build(); 38 | imageLoader.init(ImageLoaderConfiguration.createDefault(context)); 39 | } 40 | 41 | @Override 42 | public int getCount() { 43 | return 10; 44 | } 45 | 46 | @Override 47 | public Object getItem(int position) { 48 | return null; 49 | } 50 | 51 | @Override 52 | public long getItemId(int position) { 53 | return 0; 54 | } 55 | 56 | @Override 57 | public View getView(int position, View convertView, ViewGroup parent) { 58 | 59 | ViewHolder mHolder; 60 | if (convertView == null) { 61 | mHolder=new ViewHolder(); 62 | convertView = inflater.inflate(R.layout.inflate_homeitem_row, null); 63 | mHolder.profilepic=(CircleImageView)convertView.findViewById(R.id.circleView); 64 | mHolder.circle_shape=(ImageView)convertView.findViewById(R.id.circle_shape); 65 | mHolder.ic_moreoptione=(ImageView)convertView.findViewById(R.id.ic_moreoptione); 66 | mHolder.txt_name=(TextView)convertView.findViewById(R.id.inf_homerow_txt_name); 67 | mHolder.txt_date=(TextView)convertView.findViewById(R.id.inf_homerow_txt_date); 68 | convertView.setTag(mHolder); 69 | }else { 70 | mHolder = (ViewHolder) convertView.getTag(); 71 | } 72 | 73 | 74 | try { 75 | GradientDrawable gradientDrawable = (GradientDrawable) mHolder.circle_shape.getBackground(); 76 | gradientDrawable.setStroke(5, context.getResources().getColor(R.color.primary_dark)); 77 | } catch (Exception e) { 78 | e.printStackTrace(); 79 | } 80 | 81 | String picURL = images[position]; 82 | imageLoader.displayImage(picURL, mHolder.profilepic, options,null); 83 | 84 | 85 | mHolder.ic_moreoptione.setOnClickListener(new OnClickListener() { 86 | 87 | @Override 88 | public void onClick(View v) { 89 | try { 90 | PopupMenu popup = new PopupMenu(context, v); 91 | popup.getMenuInflater().inflate(R.menu.optionmenu, popup.getMenu()); 92 | popup.show(); 93 | popup.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() { 94 | @Override 95 | public boolean onMenuItemClick(MenuItem item) { 96 | 97 | switch (item.getItemId()) { 98 | case R.id.hidepost: 99 | 100 | break; 101 | case R.id.spampost: 102 | 103 | break; 104 | 105 | default: 106 | break; 107 | } 108 | 109 | return true; 110 | } 111 | }); 112 | } catch (Exception e) { 113 | e.printStackTrace(); 114 | } 115 | } 116 | }); 117 | 118 | return convertView; 119 | } 120 | 121 | private class ViewHolder { 122 | ImageView circle_shape,ic_moreoptione; 123 | CircleImageView profilepic; 124 | TextView txt_name; 125 | TextView txt_date; 126 | } 127 | 128 | } 129 | -------------------------------------------------------------------------------- /src/com/androidmaterialmenu/SlideMenuAdapter.java: -------------------------------------------------------------------------------- 1 | package com.androidmaterialmenu; 2 | 3 | import android.content.Context; 4 | import android.graphics.drawable.GradientDrawable; 5 | import android.support.v7.widget.RecyclerView; 6 | import android.view.LayoutInflater; 7 | import android.view.View; 8 | import android.view.View.OnClickListener; 9 | import android.view.ViewGroup; 10 | import android.widget.ImageView; 11 | import android.widget.TextView; 12 | 13 | import com.nostra13.universalimageloader.core.DisplayImageOptions; 14 | import com.nostra13.universalimageloader.core.ImageLoader; 15 | import com.nostra13.universalimageloader.core.ImageLoaderConfiguration; 16 | 17 | /** 18 | * Created by hp1 on 28-12-2014. 19 | */ 20 | public class SlideMenuAdapter extends RecyclerView.Adapter { 21 | 22 | private static final int TYPE_HEADER = 0; 23 | private static final int TYPE_ITEM = 1; 24 | 25 | private String mNavTitles[]; 26 | private int mIcons[]; 27 | 28 | private String name; 29 | private int profile; 30 | private String email; 31 | 32 | private Context context; 33 | 34 | private DisplayImageOptions options; 35 | private ImageLoader imageLoader=ImageLoader.getInstance(); 36 | 37 | public SlideMenuAdapter(Context context,String Titles[], int Icons[], String Name,String Email, int Profile) { 38 | 39 | this.context=context; 40 | mNavTitles = Titles; 41 | mIcons = Icons; 42 | name = Name; 43 | email = Email; 44 | profile = Profile; 45 | 46 | options = new DisplayImageOptions.Builder() 47 | .showImageOnLoading(R.drawable.ic_profilepic) 48 | .showImageForEmptyUri(R.drawable.ic_profilepic) 49 | .showImageOnFail(R.drawable.ic_profilepic).cacheInMemory(true) 50 | .cacheOnDisc(true).considerExifParams(true).build(); 51 | imageLoader.init(ImageLoaderConfiguration.createDefault(context)); 52 | } 53 | 54 | 55 | public static class ViewHolder extends RecyclerView.ViewHolder { 56 | int Holderid; 57 | 58 | TextView textView; 59 | ImageView imageView,shape; 60 | CircleImageView profile; 61 | TextView Name; 62 | TextView email; 63 | 64 | public ViewHolder(View itemView, int ViewType) { 65 | super(itemView); 66 | 67 | if (ViewType == TYPE_ITEM) { 68 | textView = (TextView) itemView.findViewById(R.id.rowText); 69 | imageView = (ImageView) itemView.findViewById(R.id.rowIcon); 70 | Holderid = 1; 71 | } else { 72 | Name = (TextView) itemView.findViewById(R.id.name); 73 | email = (TextView) itemView.findViewById(R.id.email); 74 | profile = (CircleImageView) itemView.findViewById(R.id.circleView); 75 | shape = (ImageView) itemView.findViewById(R.id.shape); 76 | Holderid = 0; 77 | } 78 | } 79 | } 80 | 81 | 82 | @Override 83 | public SlideMenuAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) { 84 | 85 | if (viewType == TYPE_ITEM) { 86 | View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.slider_item_row,parent,false); 87 | ViewHolder vhItem = new ViewHolder(v,viewType); 88 | return vhItem; 89 | 90 | } else if (viewType == TYPE_HEADER) { 91 | View v = LayoutInflater.from(parent.getContext()).inflate(R.layout.slidemenu_pfpic_header,parent,false); 92 | ViewHolder vhHeader = new ViewHolder(v,viewType); 93 | return vhHeader; 94 | } 95 | return null; 96 | 97 | } 98 | 99 | 100 | @Override 101 | public void onBindViewHolder(SlideMenuAdapter.ViewHolder holder,final int position) { 102 | if (holder.Holderid == 1) { 103 | holder.textView.setText(mNavTitles[position - 1]); 104 | holder.imageView.setImageResource(mIcons[position - 1]); 105 | 106 | holder.textView.setOnClickListener(new OnClickListener() { 107 | 108 | @Override 109 | public void onClick(View v) { 110 | if (viewclickevent!=null) { 111 | viewclickevent.OnViewItemClick(position); 112 | } 113 | } 114 | }); 115 | holder.imageView.setOnClickListener(new OnClickListener() { 116 | 117 | @Override 118 | public void onClick(View v) { 119 | if (viewclickevent!=null) { 120 | viewclickevent.OnViewItemClick(position); 121 | } 122 | } 123 | }); 124 | 125 | } else { 126 | imageLoader.displayImage(Constants.IMAGES[12], holder.profile, options); 127 | try { 128 | GradientDrawable gradientDrawable = (GradientDrawable) holder.shape.getBackground(); 129 | gradientDrawable.setStroke(5, context.getResources().getColor(android.R.color.white)); 130 | } catch (Exception e) { 131 | e.printStackTrace(); 132 | } 133 | holder.Name.setText(name); 134 | holder.email.setText(email); 135 | } 136 | } 137 | 138 | @Override 139 | public int getItemCount() { 140 | return mNavTitles.length + 1; 141 | } 142 | 143 | @Override 144 | public int getItemViewType(int position) { 145 | if (isPositionHeader(position)) 146 | return TYPE_HEADER; 147 | 148 | return TYPE_ITEM; 149 | } 150 | 151 | private boolean isPositionHeader(int position) { 152 | return position == 0; 153 | } 154 | 155 | public viewCLickEvent viewclickevent; 156 | 157 | public viewCLickEvent getViewclickevent() { 158 | return viewclickevent; 159 | } 160 | 161 | public void setViewclickevent(viewCLickEvent viewclickevent) { 162 | this.viewclickevent = viewclickevent; 163 | } 164 | 165 | public interface viewCLickEvent { 166 | public void OnViewItemClick(int position); 167 | } 168 | 169 | } 170 | -------------------------------------------------------------------------------- /src/com/androidmaterialmenu/HomeActivity.java: -------------------------------------------------------------------------------- 1 | package com.androidmaterialmenu; 2 | 3 | import android.app.SearchManager; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | import android.os.Bundle; 7 | import android.support.v4.view.GravityCompat; 8 | import android.support.v4.view.MenuItemCompat; 9 | import android.support.v4.view.MenuItemCompat.OnActionExpandListener; 10 | import android.support.v4.widget.DrawerLayout; 11 | import android.support.v7.app.ActionBarActivity; 12 | import android.support.v7.app.ActionBarDrawerToggle; 13 | import android.support.v7.widget.LinearLayoutManager; 14 | import android.support.v7.widget.RecyclerView; 15 | import android.support.v7.widget.SearchView; 16 | import android.support.v7.widget.SearchView.OnCloseListener; 17 | import android.support.v7.widget.SearchView.OnQueryTextListener; 18 | import android.support.v7.widget.Toolbar; 19 | import android.view.Gravity; 20 | import android.view.Menu; 21 | import android.view.MenuInflater; 22 | import android.view.MenuItem; 23 | import android.view.View; 24 | import android.view.View.OnClickListener; 25 | import android.widget.ListView; 26 | import android.widget.Toast; 27 | 28 | import com.androidmaterialmenu.SlideMenuAdapter.viewCLickEvent; 29 | 30 | public class HomeActivity extends ActionBarActivity implements viewCLickEvent{ 31 | 32 | 33 | private String NAME = "Dibakar Mistry"; 34 | private String EMAIL = "dibakar.ece@gmail.com"; 35 | private int PROFILE = R.drawable.ic_profilepic; 36 | 37 | private Toolbar toolbar; 38 | private RecyclerView mRecyclerView; 39 | private SlideMenuAdapter mAdapter; 40 | private RecyclerView.LayoutManager mLayoutManager; 41 | private DrawerLayout Drawer; 42 | private SearchView searchView = null; 43 | 44 | private ActionBarDrawerToggle mDrawerToggle; 45 | private Context mContext; 46 | 47 | public static String TITLES[] = {"My Profile","My Message","Important Mail","Settings","Logout"}; 48 | public static int ICONS[] = {R.drawable.ic_profile,R.drawable.ic_mypost,R.drawable.ic_impmail,R.drawable.ic_settings,R.drawable.ic_logout}; 49 | private ListView listView; 50 | 51 | @Override 52 | protected void onCreate(Bundle savedInstanceState) { 53 | super.onCreate(savedInstanceState); 54 | setContentView(R.layout.activity_home); 55 | 56 | 57 | mContext=HomeActivity.this; 58 | initilizActionBarDrawer(); 59 | initializeView(); 60 | loadData(); 61 | 62 | } 63 | 64 | @Override 65 | public boolean onCreateOptionsMenu(Menu menu) { 66 | MenuInflater inflater = getMenuInflater(); 67 | inflater.inflate(R.menu.home, menu); 68 | SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE); 69 | MenuItem searchItem = menu.findItem(R.id.action_search); 70 | if (searchItem != null) { 71 | searchView = (SearchView) MenuItemCompat.getActionView(searchItem); 72 | } 73 | 74 | if (searchView != null) { 75 | searchView.setIconifiedByDefault(true); 76 | searchView.setQueryHint("Search job"); 77 | searchView.setOnQueryTextListener(new OnQueryTextListener() { 78 | 79 | @Override 80 | public boolean onQueryTextSubmit(String s) { 81 | searchView.clearFocus(); 82 | ShowToast(mContext, "SerachText : " + s); 83 | return true; 84 | } 85 | 86 | @Override 87 | public boolean onQueryTextChange(String arg0) { 88 | return false; 89 | } 90 | }); 91 | 92 | searchView.setOnSearchClickListener(new OnClickListener() { 93 | 94 | @Override 95 | public void onClick(View v) { 96 | closeDraware(); 97 | } 98 | }); 99 | 100 | MenuItemCompat.setOnActionExpandListener(searchItem, new OnActionExpandListener() { 101 | @Override 102 | public boolean onMenuItemActionCollapse(MenuItem item) { 103 | return true; 104 | } 105 | 106 | @Override 107 | public boolean onMenuItemActionExpand(MenuItem item) { 108 | return true; 109 | } 110 | }); 111 | 112 | searchView.setOnCloseListener(new OnCloseListener() { 113 | 114 | @Override 115 | public boolean onClose() { 116 | return false; 117 | } 118 | }); 119 | } 120 | return super.onCreateOptionsMenu(menu); 121 | } 122 | 123 | @Override 124 | public boolean onOptionsItemSelected(MenuItem item) { 125 | int id = item.getItemId(); 126 | if (id == R.id.action_search) { 127 | return true; 128 | }else if (id == R.id.action_settings) { 129 | return true; 130 | } 131 | return super.onOptionsItemSelected(item); 132 | } 133 | 134 | @Override 135 | public void OnViewItemClick(int position) { 136 | switch (position) { 137 | 138 | case 1: 139 | closeDraware(); 140 | startActivity(new Intent(HomeActivity.this,MyProfileActivity.class)); 141 | overridePendingTransition(0,0); 142 | break; 143 | case 2: 144 | closeDraware(); 145 | break; 146 | case 3: 147 | closeDraware(); 148 | break; 149 | case 4: 150 | closeDraware(); 151 | break; 152 | case 5: 153 | closeDraware(); 154 | break; 155 | 156 | default: 157 | break; 158 | } 159 | } 160 | 161 | private void initilizActionBarDrawer() { 162 | toolbar = (Toolbar) findViewById(R.id.tool_bar); 163 | toolbar.setTitle("My App"); 164 | setSupportActionBar(toolbar); 165 | 166 | mRecyclerView = (RecyclerView) findViewById(R.id.RecyclerView); 167 | mRecyclerView.setHasFixedSize(true); 168 | 169 | mAdapter = new SlideMenuAdapter(HomeActivity.this,TITLES, ICONS, NAME, EMAIL,PROFILE); 170 | mAdapter.setViewclickevent(this); 171 | mRecyclerView.setAdapter(mAdapter); 172 | mLayoutManager = new LinearLayoutManager(this); 173 | mRecyclerView.setLayoutManager(mLayoutManager); 174 | 175 | Drawer = (DrawerLayout) findViewById(R.id.DrawerLayout); 176 | mDrawerToggle = new ActionBarDrawerToggle(this, Drawer, toolbar, 177 | R.string.openDrawer, R.string.closeDrawer) { 178 | 179 | @Override 180 | public void onDrawerOpened(View drawerView) { 181 | super.onDrawerOpened(drawerView); 182 | 183 | } 184 | 185 | @Override 186 | public void onDrawerClosed(View drawerView) { 187 | super.onDrawerClosed(drawerView); 188 | } 189 | 190 | }; 191 | Drawer.setDrawerListener(mDrawerToggle); 192 | mDrawerToggle.syncState(); 193 | } 194 | 195 | private void closeDraware(){ 196 | if (Drawer.isDrawerOpen(GravityCompat.START)) { 197 | Drawer.closeDrawers(); 198 | } 199 | } 200 | 201 | private void initializeView() { 202 | listView=(ListView)findViewById(R.id.list_myitem); 203 | 204 | } 205 | 206 | private void loadData() { 207 | listView.setAdapter(new HomeListBaseAdapter(mContext, Constants.IMAGES)); 208 | } 209 | 210 | 211 | 212 | 213 | /** 214 | * Show Alert Toast message. 215 | */ 216 | public static void ShowToast(Context context,String msg){ 217 | Toast mToast = Toast.makeText(context, msg, Toast.LENGTH_SHORT); 218 | mToast.setGravity(Gravity.CENTER, 0, 0); 219 | mToast.show(); 220 | } 221 | } 222 | -------------------------------------------------------------------------------- /src/com/androidmaterialmenu/CircleImageView.java: -------------------------------------------------------------------------------- 1 | package com.androidmaterialmenu; 2 | 3 | import android.content.Context; 4 | import android.content.res.TypedArray; 5 | import android.graphics.Bitmap; 6 | import android.graphics.BitmapShader; 7 | import android.graphics.Canvas; 8 | import android.graphics.Color; 9 | import android.graphics.Matrix; 10 | import android.graphics.Paint; 11 | import android.graphics.RectF; 12 | import android.graphics.Shader; 13 | import android.graphics.drawable.BitmapDrawable; 14 | import android.graphics.drawable.ColorDrawable; 15 | import android.graphics.drawable.Drawable; 16 | import android.net.Uri; 17 | import android.util.AttributeSet; 18 | import android.widget.ImageView; 19 | 20 | public class CircleImageView extends ImageView { 21 | 22 | private static final ScaleType SCALE_TYPE = ScaleType.CENTER_CROP; 23 | 24 | private static final Bitmap.Config BITMAP_CONFIG = Bitmap.Config.ARGB_8888; 25 | private static final int COLORDRAWABLE_DIMENSION = 2; 26 | 27 | private static final int DEFAULT_BORDER_WIDTH = 0; 28 | private static final int DEFAULT_BORDER_COLOR = Color.BLACK; 29 | 30 | private final RectF mDrawableRect = new RectF(); 31 | private final RectF mBorderRect = new RectF(); 32 | 33 | private final Matrix mShaderMatrix = new Matrix(); 34 | private final Paint mBitmapPaint = new Paint(); 35 | private final Paint mBorderPaint = new Paint(); 36 | 37 | private int mBorderColor = DEFAULT_BORDER_COLOR; 38 | private int mBorderWidth = DEFAULT_BORDER_WIDTH; 39 | 40 | private Bitmap mBitmap; 41 | private BitmapShader mBitmapShader; 42 | private int mBitmapWidth; 43 | private int mBitmapHeight; 44 | 45 | private float mDrawableRadius; 46 | private float mBorderRadius; 47 | 48 | private boolean mReady; 49 | private boolean mSetupPending; 50 | 51 | public CircleImageView(Context context) { 52 | super(context); 53 | 54 | init(); 55 | } 56 | 57 | public CircleImageView(Context context, AttributeSet attrs) { 58 | this(context, attrs, 0); 59 | } 60 | 61 | public CircleImageView(Context context, AttributeSet attrs, int defStyle) { 62 | super(context, attrs, defStyle); 63 | 64 | TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CircleImageView, defStyle, 0); 65 | 66 | mBorderWidth = a.getDimensionPixelSize(R.styleable.CircleImageView_border_width, DEFAULT_BORDER_WIDTH); 67 | mBorderColor = a.getColor(R.styleable.CircleImageView_border_color, DEFAULT_BORDER_COLOR); 68 | 69 | a.recycle(); 70 | 71 | init(); 72 | } 73 | 74 | private void init() { 75 | super.setScaleType(SCALE_TYPE); 76 | mReady = true; 77 | 78 | if (mSetupPending) { 79 | setup(); 80 | mSetupPending = false; 81 | } 82 | } 83 | 84 | @Override 85 | public ScaleType getScaleType() { 86 | return SCALE_TYPE; 87 | } 88 | 89 | @Override 90 | public void setScaleType(ScaleType scaleType) { 91 | if (scaleType != SCALE_TYPE) { 92 | throw new IllegalArgumentException(String.format("ScaleType %s not supported.", scaleType)); 93 | } 94 | } 95 | 96 | @Override 97 | public void setAdjustViewBounds(boolean adjustViewBounds) { 98 | if (adjustViewBounds) { 99 | throw new IllegalArgumentException("adjustViewBounds not supported."); 100 | } 101 | } 102 | 103 | @Override 104 | protected void onDraw(Canvas canvas) { 105 | if (getDrawable() == null) { 106 | return; 107 | } 108 | 109 | canvas.drawCircle(getWidth() / 2, getHeight() / 2, mDrawableRadius, mBitmapPaint); 110 | if (mBorderWidth != 0) { 111 | canvas.drawCircle(getWidth() / 2, getHeight() / 2, mBorderRadius, mBorderPaint); 112 | } 113 | } 114 | 115 | @Override 116 | protected void onSizeChanged(int w, int h, int oldw, int oldh) { 117 | super.onSizeChanged(w, h, oldw, oldh); 118 | setup(); 119 | } 120 | 121 | public int getBorderColor() { 122 | return mBorderColor; 123 | } 124 | 125 | public void setBorderColor(int borderColor) { 126 | if (borderColor == mBorderColor) { 127 | return; 128 | } 129 | 130 | mBorderColor = borderColor; 131 | mBorderPaint.setColor(mBorderColor); 132 | invalidate(); 133 | } 134 | 135 | public int getBorderWidth() { 136 | return mBorderWidth; 137 | } 138 | 139 | public void setBorderWidth(int borderWidth) { 140 | if (borderWidth == mBorderWidth) { 141 | return; 142 | } 143 | 144 | mBorderWidth = borderWidth; 145 | setup(); 146 | } 147 | 148 | @Override 149 | public void setImageBitmap(Bitmap bm) { 150 | super.setImageBitmap(bm); 151 | mBitmap = bm; 152 | setup(); 153 | } 154 | 155 | @Override 156 | public void setImageDrawable(Drawable drawable) { 157 | super.setImageDrawable(drawable); 158 | mBitmap = getBitmapFromDrawable(drawable); 159 | setup(); 160 | } 161 | 162 | @Override 163 | public void setImageResource(int resId) { 164 | super.setImageResource(resId); 165 | mBitmap = getBitmapFromDrawable(getDrawable()); 166 | setup(); 167 | } 168 | 169 | @Override 170 | public void setImageURI(Uri uri) { 171 | super.setImageURI(uri); 172 | mBitmap = getBitmapFromDrawable(getDrawable()); 173 | setup(); 174 | } 175 | 176 | private Bitmap getBitmapFromDrawable(Drawable drawable) { 177 | if (drawable == null) { 178 | return null; 179 | } 180 | 181 | if (drawable instanceof BitmapDrawable) { 182 | return ((BitmapDrawable) drawable).getBitmap(); 183 | } 184 | 185 | try { 186 | Bitmap bitmap; 187 | 188 | if (drawable instanceof ColorDrawable) { 189 | bitmap = Bitmap.createBitmap(COLORDRAWABLE_DIMENSION, COLORDRAWABLE_DIMENSION, BITMAP_CONFIG); 190 | } else { 191 | bitmap = Bitmap.createBitmap(drawable.getIntrinsicWidth(), drawable.getIntrinsicHeight(), BITMAP_CONFIG); 192 | } 193 | 194 | Canvas canvas = new Canvas(bitmap); 195 | drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight()); 196 | drawable.draw(canvas); 197 | return bitmap; 198 | } catch (OutOfMemoryError e) { 199 | return null; 200 | } 201 | } 202 | 203 | private void setup() { 204 | if (!mReady) { 205 | mSetupPending = true; 206 | return; 207 | } 208 | 209 | if (mBitmap == null) { 210 | return; 211 | } 212 | 213 | mBitmapShader = new BitmapShader(mBitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP); 214 | 215 | mBitmapPaint.setAntiAlias(true); 216 | mBitmapPaint.setShader(mBitmapShader); 217 | 218 | mBorderPaint.setStyle(Paint.Style.STROKE); 219 | mBorderPaint.setAntiAlias(true); 220 | mBorderPaint.setColor(mBorderColor); 221 | mBorderPaint.setStrokeWidth(mBorderWidth); 222 | 223 | mBitmapHeight = mBitmap.getHeight(); 224 | mBitmapWidth = mBitmap.getWidth(); 225 | 226 | mBorderRect.set(0, 0, getWidth(), getHeight()); 227 | mBorderRadius = Math.min((mBorderRect.height() - mBorderWidth) / 2, (mBorderRect.width() - mBorderWidth) / 2); 228 | 229 | mDrawableRect.set(mBorderWidth, mBorderWidth, mBorderRect.width() - mBorderWidth, mBorderRect.height() - mBorderWidth); 230 | mDrawableRadius = Math.min(mDrawableRect.height() / 2, mDrawableRect.width() / 2); 231 | 232 | updateShaderMatrix(); 233 | invalidate(); 234 | } 235 | 236 | private void updateShaderMatrix() { 237 | float scale; 238 | float dx = 0; 239 | float dy = 0; 240 | 241 | mShaderMatrix.set(null); 242 | 243 | if (mBitmapWidth * mDrawableRect.height() > mDrawableRect.width() * mBitmapHeight) { 244 | scale = mDrawableRect.height() / (float) mBitmapHeight; 245 | dx = (mDrawableRect.width() - mBitmapWidth * scale) * 0.5f; 246 | } else { 247 | scale = mDrawableRect.width() / (float) mBitmapWidth; 248 | dy = (mDrawableRect.height() - mBitmapHeight * scale) * 0.5f; 249 | } 250 | 251 | mShaderMatrix.setScale(scale, scale); 252 | mShaderMatrix.postTranslate((int) (dx + 0.5f) + mBorderWidth, (int) (dy + 0.5f) + mBorderWidth); 253 | 254 | mBitmapShader.setLocalMatrix(mShaderMatrix); 255 | } 256 | 257 | } -------------------------------------------------------------------------------- /bin/R.txt: -------------------------------------------------------------------------------- 1 | int anim abc_fade_in 0x7f040000 2 | int anim abc_fade_out 0x7f040001 3 | int anim abc_slide_in_bottom 0x7f040002 4 | int anim abc_slide_in_top 0x7f040003 5 | int anim abc_slide_out_bottom 0x7f040004 6 | int anim abc_slide_out_top 0x7f040005 7 | int attr actionBarDivider 0x7f010015 8 | int attr actionBarItemBackground 0x7f010016 9 | int attr actionBarPopupTheme 0x7f01000f 10 | int attr actionBarSize 0x7f010014 11 | int attr actionBarSplitStyle 0x7f010011 12 | int attr actionBarStyle 0x7f010010 13 | int attr actionBarTabBarStyle 0x7f01000b 14 | int attr actionBarTabStyle 0x7f01000a 15 | int attr actionBarTabTextStyle 0x7f01000c 16 | int attr actionBarTheme 0x7f010012 17 | int attr actionBarWidgetTheme 0x7f010013 18 | int attr actionButtonStyle 0x7f01002d 19 | int attr actionDropDownStyle 0x7f010028 20 | int attr actionLayout 0x7f010072 21 | int attr actionMenuTextAppearance 0x7f010017 22 | int attr actionMenuTextColor 0x7f010018 23 | int attr actionModeBackground 0x7f01001b 24 | int attr actionModeCloseButtonStyle 0x7f01001a 25 | int attr actionModeCloseDrawable 0x7f01001d 26 | int attr actionModeCopyDrawable 0x7f01001f 27 | int attr actionModeCutDrawable 0x7f01001e 28 | int attr actionModeFindDrawable 0x7f010023 29 | int attr actionModePasteDrawable 0x7f010020 30 | int attr actionModePopupWindowStyle 0x7f010025 31 | int attr actionModeSelectAllDrawable 0x7f010021 32 | int attr actionModeShareDrawable 0x7f010022 33 | int attr actionModeSplitBackground 0x7f01001c 34 | int attr actionModeStyle 0x7f010019 35 | int attr actionModeWebSearchDrawable 0x7f010024 36 | int attr actionOverflowButtonStyle 0x7f01000d 37 | int attr actionOverflowMenuStyle 0x7f01000e 38 | int attr actionProviderClass 0x7f010074 39 | int attr actionViewClass 0x7f010073 40 | int attr activityChooserViewStyle 0x7f010034 41 | int attr background 0x7f01005d 42 | int attr backgroundSplit 0x7f01005f 43 | int attr backgroundStacked 0x7f01005e 44 | int attr barSize 0x7f01009f 45 | int attr border_color 0x7f0100aa 46 | int attr border_width 0x7f0100a9 47 | int attr buttonBarButtonStyle 0x7f01002f 48 | int attr buttonBarStyle 0x7f01002e 49 | int attr closeIcon 0x7f01007c 50 | int attr closeItemLayout 0x7f01006d 51 | int attr collapseContentDescription 0x7f010094 52 | int attr collapseIcon 0x7f010093 53 | int attr color 0x7f010099 54 | int attr colorAccent 0x7f01004f 55 | int attr colorButtonNormal 0x7f010053 56 | int attr colorControlActivated 0x7f010051 57 | int attr colorControlHighlight 0x7f010052 58 | int attr colorControlNormal 0x7f010050 59 | int attr colorPrimary 0x7f01004d 60 | int attr colorPrimaryDark 0x7f01004e 61 | int attr colorSwitchThumbNormal 0x7f010054 62 | int attr commitIcon 0x7f010080 63 | int attr contentInsetEnd 0x7f010068 64 | int attr contentInsetLeft 0x7f010069 65 | int attr contentInsetRight 0x7f01006a 66 | int attr contentInsetStart 0x7f010067 67 | int attr customNavigationLayout 0x7f010060 68 | int attr disableChildrenWhenDisabled 0x7f010078 69 | int attr displayOptions 0x7f010056 70 | int attr divider 0x7f01005c 71 | int attr dividerHorizontal 0x7f010033 72 | int attr dividerPadding 0x7f010089 73 | int attr dividerVertical 0x7f010032 74 | int attr drawableSize 0x7f01009b 75 | int attr drawerArrowStyle 0x7f0100a1 76 | int attr dropDownListViewStyle 0x7f010045 77 | int attr dropdownListPreferredItemHeight 0x7f010029 78 | int attr editTextBackground 0x7f01003a 79 | int attr editTextColor 0x7f010039 80 | int attr elevation 0x7f01006b 81 | int attr expandActivityOverflowButtonDrawable 0x7f010085 82 | int attr gapBetweenBars 0x7f01009c 83 | int attr goIcon 0x7f01007d 84 | int attr height 0x7f010001 85 | int attr hideOnContentScroll 0x7f010066 86 | int attr homeAsUpIndicator 0x7f01002c 87 | int attr homeLayout 0x7f010061 88 | int attr icon 0x7f01005a 89 | int attr iconifiedByDefault 0x7f01007a 90 | int attr indeterminateProgressStyle 0x7f010063 91 | int attr initialActivityCount 0x7f010084 92 | int attr isLightTheme 0x7f010002 93 | int attr itemPadding 0x7f010065 94 | int attr layout 0x7f010079 95 | int attr listChoiceBackgroundIndicator 0x7f01004c 96 | int attr listPopupWindowStyle 0x7f010046 97 | int attr listPreferredItemHeight 0x7f010040 98 | int attr listPreferredItemHeightLarge 0x7f010042 99 | int attr listPreferredItemHeightSmall 0x7f010041 100 | int attr listPreferredItemPaddingLeft 0x7f010043 101 | int attr listPreferredItemPaddingRight 0x7f010044 102 | int attr logo 0x7f01005b 103 | int attr maxButtonHeight 0x7f010091 104 | int attr measureWithLargestChild 0x7f010087 105 | int attr middleBarArrowSize 0x7f01009e 106 | int attr navigationContentDescription 0x7f010096 107 | int attr navigationIcon 0x7f010095 108 | int attr navigationMode 0x7f010055 109 | int attr overlapAnchor 0x7f010098 110 | int attr paddingEnd 0x7f01006f 111 | int attr paddingStart 0x7f01006e 112 | int attr panelBackground 0x7f010049 113 | int attr panelMenuListTheme 0x7f01004b 114 | int attr panelMenuListWidth 0x7f01004a 115 | int attr popupMenuStyle 0x7f010037 116 | int attr popupPromptView 0x7f010077 117 | int attr popupTheme 0x7f01006c 118 | int attr popupWindowStyle 0x7f010038 119 | int attr preserveIconSpacing 0x7f010070 120 | int attr progressBarPadding 0x7f010064 121 | int attr progressBarStyle 0x7f010062 122 | int attr prompt 0x7f010075 123 | int attr queryBackground 0x7f010082 124 | int attr queryHint 0x7f01007b 125 | int attr searchIcon 0x7f01007e 126 | int attr searchViewStyle 0x7f01003f 127 | int attr selectableItemBackground 0x7f010030 128 | int attr selectableItemBackgroundBorderless 0x7f010031 129 | int attr showAsAction 0x7f010071 130 | int attr showDividers 0x7f010088 131 | int attr showText 0x7f0100a8 132 | int attr spinBars 0x7f01009a 133 | int attr spinnerDropDownItemStyle 0x7f01002b 134 | int attr spinnerMode 0x7f010076 135 | int attr spinnerStyle 0x7f01002a 136 | int attr splitTrack 0x7f0100a7 137 | int attr state_above_anchor 0x7f010097 138 | int attr submitBackground 0x7f010083 139 | int attr subtitle 0x7f010057 140 | int attr subtitleTextAppearance 0x7f01008b 141 | int attr subtitleTextStyle 0x7f010059 142 | int attr suggestionRowLayout 0x7f010081 143 | int attr switchMinWidth 0x7f0100a5 144 | int attr switchPadding 0x7f0100a6 145 | int attr switchStyle 0x7f01003b 146 | int attr switchTextAppearance 0x7f0100a4 147 | int attr textAllCaps 0x7f010086 148 | int attr textAppearanceLargePopupMenu 0x7f010026 149 | int attr textAppearanceListItem 0x7f010047 150 | int attr textAppearanceListItemSmall 0x7f010048 151 | int attr textAppearanceSearchResultSubtitle 0x7f01003d 152 | int attr textAppearanceSearchResultTitle 0x7f01003c 153 | int attr textAppearanceSmallPopupMenu 0x7f010027 154 | int attr textColorSearchUrl 0x7f01003e 155 | int attr theme 0x7f010092 156 | int attr thickness 0x7f0100a0 157 | int attr thumbTextPadding 0x7f0100a3 158 | int attr title 0x7f010000 159 | int attr titleMarginBottom 0x7f010090 160 | int attr titleMarginEnd 0x7f01008e 161 | int attr titleMarginStart 0x7f01008d 162 | int attr titleMarginTop 0x7f01008f 163 | int attr titleMargins 0x7f01008c 164 | int attr titleTextAppearance 0x7f01008a 165 | int attr titleTextStyle 0x7f010058 166 | int attr toolbarNavigationButtonStyle 0x7f010036 167 | int attr toolbarStyle 0x7f010035 168 | int attr topBottomBarArrowSize 0x7f01009d 169 | int attr track 0x7f0100a2 170 | int attr voiceIcon 0x7f01007f 171 | int attr windowActionBar 0x7f010003 172 | int attr windowActionBarOverlay 0x7f010004 173 | int attr windowActionModeOverlay 0x7f010005 174 | int attr windowFixedHeightMajor 0x7f010009 175 | int attr windowFixedHeightMinor 0x7f010007 176 | int attr windowFixedWidthMajor 0x7f010006 177 | int attr windowFixedWidthMinor 0x7f010008 178 | int bool abc_action_bar_embed_tabs 0x7f060000 179 | int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001 180 | int bool abc_action_bar_expanded_action_views_exclusive 0x7f060002 181 | int bool abc_config_actionMenuItemAllCaps 0x7f060005 182 | int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060004 183 | int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060003 184 | int color ColorPrimary 0x7f070033 185 | int color ColorPrimaryDark 0x7f070034 186 | int color abc_background_cache_hint_selector_material_dark 0x7f070038 187 | int color abc_background_cache_hint_selector_material_light 0x7f070039 188 | int color abc_input_method_navigation_guard 0x7f070003 189 | int color abc_primary_text_disable_only_material_dark 0x7f07003a 190 | int color abc_primary_text_disable_only_material_light 0x7f07003b 191 | int color abc_primary_text_material_dark 0x7f07003c 192 | int color abc_primary_text_material_light 0x7f07003d 193 | int color abc_search_url_text 0x7f07003e 194 | int color abc_search_url_text_normal 0x7f070000 195 | int color abc_search_url_text_pressed 0x7f070002 196 | int color abc_search_url_text_selected 0x7f070001 197 | int color abc_secondary_text_material_dark 0x7f07003f 198 | int color abc_secondary_text_material_light 0x7f070040 199 | int color accent_material_dark 0x7f07000f 200 | int color accent_material_light 0x7f07000e 201 | int color background_floating_material_dark 0x7f070006 202 | int color background_floating_material_light 0x7f070007 203 | int color background_material_dark 0x7f070004 204 | int color background_material_light 0x7f070005 205 | int color bright_foreground_disabled_material_dark 0x7f070016 206 | int color bright_foreground_disabled_material_light 0x7f070017 207 | int color bright_foreground_inverse_material_dark 0x7f070018 208 | int color bright_foreground_inverse_material_light 0x7f070019 209 | int color bright_foreground_material_dark 0x7f070014 210 | int color bright_foreground_material_light 0x7f070015 211 | int color button_material_dark 0x7f070010 212 | int color button_material_light 0x7f070011 213 | int color dim_foreground_disabled_material_dark 0x7f07001c 214 | int color dim_foreground_disabled_material_light 0x7f07001d 215 | int color dim_foreground_material_dark 0x7f07001a 216 | int color dim_foreground_material_light 0x7f07001b 217 | int color gplusbtncolor 0x7f070036 218 | int color highlighted_text_material_dark 0x7f070020 219 | int color highlighted_text_material_light 0x7f070021 220 | int color hint_foreground_material_dark 0x7f07001e 221 | int color hint_foreground_material_light 0x7f07001f 222 | int color joblist_bg_color 0x7f070037 223 | int color link_text_material_dark 0x7f070022 224 | int color link_text_material_light 0x7f070023 225 | int color material_blue_grey_800 0x7f07002e 226 | int color material_blue_grey_900 0x7f07002f 227 | int color material_blue_grey_950 0x7f070030 228 | int color material_deep_teal_200 0x7f07002c 229 | int color material_deep_teal_500 0x7f07002d 230 | int color primary 0x7f070031 231 | int color primary_dark 0x7f070032 232 | int color primary_dark_material_dark 0x7f07000a 233 | int color primary_dark_material_light 0x7f07000b 234 | int color primary_material_dark 0x7f070008 235 | int color primary_material_light 0x7f070009 236 | int color primary_text_default_material_dark 0x7f070026 237 | int color primary_text_default_material_light 0x7f070024 238 | int color primary_text_disabled_material_dark 0x7f07002a 239 | int color primary_text_disabled_material_light 0x7f070028 240 | int color ripple_material_dark 0x7f07000c 241 | int color ripple_material_light 0x7f07000d 242 | int color secondary_text_default_material_dark 0x7f070027 243 | int color secondary_text_default_material_light 0x7f070025 244 | int color secondary_text_disabled_material_dark 0x7f07002b 245 | int color secondary_text_disabled_material_light 0x7f070029 246 | int color switch_thumb_normal_material_dark 0x7f070012 247 | int color switch_thumb_normal_material_light 0x7f070013 248 | int color theme_color 0x7f070035 249 | int dimen abc_action_bar_default_height_material 0x7f080014 250 | int dimen abc_action_bar_default_padding_material 0x7f080015 251 | int dimen abc_action_bar_icon_vertical_padding_material 0x7f080016 252 | int dimen abc_action_bar_progress_bar_size 0x7f080005 253 | int dimen abc_action_bar_stacked_max_height 0x7f080004 254 | int dimen abc_action_bar_stacked_tab_max_width 0x7f080003 255 | int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f080018 256 | int dimen abc_action_bar_subtitle_top_margin_material 0x7f080017 257 | int dimen abc_action_button_min_height_material 0x7f08001b 258 | int dimen abc_action_button_min_width_material 0x7f08001a 259 | int dimen abc_action_button_min_width_overflow_material 0x7f080019 260 | int dimen abc_config_prefDialogWidth 0x7f080002 261 | int dimen abc_control_inset_material 0x7f080010 262 | int dimen abc_control_padding_material 0x7f080011 263 | int dimen abc_dropdownitem_icon_width 0x7f08000b 264 | int dimen abc_dropdownitem_text_padding_left 0x7f080009 265 | int dimen abc_dropdownitem_text_padding_right 0x7f08000a 266 | int dimen abc_panel_menu_list_width 0x7f080006 267 | int dimen abc_search_view_preferred_width 0x7f080008 268 | int dimen abc_search_view_text_min_width 0x7f080007 269 | int dimen abc_text_size_body_1_material 0x7f080025 270 | int dimen abc_text_size_body_2_material 0x7f080024 271 | int dimen abc_text_size_button_material 0x7f080027 272 | int dimen abc_text_size_caption_material 0x7f080026 273 | int dimen abc_text_size_display_1_material 0x7f08001f 274 | int dimen abc_text_size_display_2_material 0x7f08001e 275 | int dimen abc_text_size_display_3_material 0x7f08001d 276 | int dimen abc_text_size_display_4_material 0x7f08001c 277 | int dimen abc_text_size_headline_material 0x7f080020 278 | int dimen abc_text_size_large_material 0x7f080028 279 | int dimen abc_text_size_medium_material 0x7f080029 280 | int dimen abc_text_size_menu_material 0x7f080023 281 | int dimen abc_text_size_small_material 0x7f08002a 282 | int dimen abc_text_size_subhead_material 0x7f080022 283 | int dimen abc_text_size_subtitle_material_toolbar 0x7f080013 284 | int dimen abc_text_size_title_material 0x7f080021 285 | int dimen abc_text_size_title_material_toolbar 0x7f080012 286 | int dimen activity_horizontal_margin 0x7f08002b 287 | int dimen activity_vertical_margin 0x7f08002c 288 | int dimen dialog_fixed_height_major 0x7f08000e 289 | int dimen dialog_fixed_height_minor 0x7f08000f 290 | int dimen dialog_fixed_width_major 0x7f08000c 291 | int dimen dialog_fixed_width_minor 0x7f08000d 292 | int dimen disabled_alpha_material_dark 0x7f080001 293 | int dimen disabled_alpha_material_light 0x7f080000 294 | int drawable abc_ab_share_pack_holo_dark 0x7f020000 295 | int drawable abc_ab_share_pack_holo_light 0x7f020001 296 | int drawable abc_btn_check_material 0x7f020002 297 | int drawable abc_btn_check_to_on_mtrl_000 0x7f020003 298 | int drawable abc_btn_check_to_on_mtrl_015 0x7f020004 299 | int drawable abc_btn_radio_material 0x7f020005 300 | int drawable abc_btn_radio_to_on_mtrl_000 0x7f020006 301 | int drawable abc_btn_radio_to_on_mtrl_015 0x7f020007 302 | int drawable abc_btn_switch_to_on_mtrl_00001 0x7f020008 303 | int drawable abc_btn_switch_to_on_mtrl_00012 0x7f020009 304 | int drawable abc_cab_background_internal_bg 0x7f02000a 305 | int drawable abc_cab_background_top_material 0x7f02000b 306 | int drawable abc_cab_background_top_mtrl_alpha 0x7f02000c 307 | int drawable abc_edit_text_material 0x7f02000d 308 | int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f02000e 309 | int drawable abc_ic_clear_mtrl_alpha 0x7f02000f 310 | int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020010 311 | int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020011 312 | int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f020012 313 | int drawable abc_ic_menu_cut_mtrl_alpha 0x7f020013 314 | int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f020014 315 | int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f020015 316 | int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f020016 317 | int drawable abc_ic_menu_share_mtrl_alpha 0x7f020017 318 | int drawable abc_ic_search_api_mtrl_alpha 0x7f020018 319 | int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020019 320 | int drawable abc_item_background_holo_dark 0x7f02001a 321 | int drawable abc_item_background_holo_light 0x7f02001b 322 | int drawable abc_list_divider_mtrl_alpha 0x7f02001c 323 | int drawable abc_list_focused_holo 0x7f02001d 324 | int drawable abc_list_longpressed_holo 0x7f02001e 325 | int drawable abc_list_pressed_holo_dark 0x7f02001f 326 | int drawable abc_list_pressed_holo_light 0x7f020020 327 | int drawable abc_list_selector_background_transition_holo_dark 0x7f020021 328 | int drawable abc_list_selector_background_transition_holo_light 0x7f020022 329 | int drawable abc_list_selector_disabled_holo_dark 0x7f020023 330 | int drawable abc_list_selector_disabled_holo_light 0x7f020024 331 | int drawable abc_list_selector_holo_dark 0x7f020025 332 | int drawable abc_list_selector_holo_light 0x7f020026 333 | int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020027 334 | int drawable abc_popup_background_mtrl_mult 0x7f020028 335 | int drawable abc_spinner_mtrl_am_alpha 0x7f020029 336 | int drawable abc_switch_thumb_material 0x7f02002a 337 | int drawable abc_switch_track_mtrl_alpha 0x7f02002b 338 | int drawable abc_tab_indicator_material 0x7f02002c 339 | int drawable abc_tab_indicator_mtrl_alpha 0x7f02002d 340 | int drawable abc_textfield_activated_mtrl_alpha 0x7f02002e 341 | int drawable abc_textfield_default_mtrl_alpha 0x7f02002f 342 | int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020030 343 | int drawable abc_textfield_search_default_mtrl_alpha 0x7f020031 344 | int drawable abc_textfield_search_material 0x7f020032 345 | int drawable ic_filter 0x7f020033 346 | int drawable ic_impmail 0x7f020034 347 | int drawable ic_launcher 0x7f020035 348 | int drawable ic_logout 0x7f020036 349 | int drawable ic_mypost 0x7f020037 350 | int drawable ic_profile 0x7f020038 351 | int drawable ic_profilepic 0x7f020039 352 | int drawable ic_search 0x7f02003a 353 | int drawable ic_settings 0x7f02003b 354 | int id DrawerLayout 0x7f050041 355 | int id RecyclerView 0x7f050043 356 | int id action_bar 0x7f050031 357 | int id action_bar_activity_content 0x7f050018 358 | int id action_bar_container 0x7f050030 359 | int id action_bar_root 0x7f05002c 360 | int id action_bar_spinner 0x7f050017 361 | int id action_bar_subtitle 0x7f05001f 362 | int id action_bar_title 0x7f05001e 363 | int id action_context_bar 0x7f050032 364 | int id action_menu_divider 0x7f05001a 365 | int id action_menu_presenter 0x7f05001b 366 | int id action_mode_bar 0x7f05002e 367 | int id action_mode_bar_stub 0x7f05002d 368 | int id action_mode_close_button 0x7f050020 369 | int id action_search 0x7f050049 370 | int id action_settings 0x7f05004a 371 | int id activity_chooser_view_content 0x7f050021 372 | int id activity_home_mainView 0x7f050042 373 | int id always 0x7f05000d 374 | int id beginning 0x7f050012 375 | int id checkbox 0x7f050029 376 | int id circleView 0x7f050046 377 | int id collapseActionView 0x7f05000f 378 | int id decor_content_parent 0x7f05002f 379 | int id default_activity_button 0x7f050024 380 | int id dialog 0x7f050010 381 | int id disableHome 0x7f05000a 382 | int id dropdown 0x7f050011 383 | int id edit_query 0x7f050033 384 | int id email 0x7f050045 385 | int id end 0x7f050014 386 | int id expand_activities_button 0x7f050022 387 | int id expanded_menu 0x7f050028 388 | int id home 0x7f050015 389 | int id homeAsUp 0x7f050007 390 | int id icon 0x7f050026 391 | int id ifRoom 0x7f05000c 392 | int id image 0x7f050023 393 | int id listMode 0x7f050002 394 | int id list_item 0x7f050025 395 | int id middle 0x7f050013 396 | int id name 0x7f050044 397 | int id never 0x7f05000b 398 | int id none 0x7f050004 399 | int id normal 0x7f050001 400 | int id progress_circular 0x7f05001c 401 | int id progress_horizontal 0x7f05001d 402 | int id radio 0x7f05002b 403 | int id rowIcon 0x7f050047 404 | int id rowText 0x7f050048 405 | int id search_badge 0x7f050035 406 | int id search_bar 0x7f050034 407 | int id search_button 0x7f050036 408 | int id search_close_btn 0x7f05003b 409 | int id search_edit_frame 0x7f050037 410 | int id search_go_btn 0x7f05003d 411 | int id search_mag_icon 0x7f050038 412 | int id search_plate 0x7f050039 413 | int id search_src_text 0x7f05003a 414 | int id search_voice_btn 0x7f05003e 415 | int id shortcut 0x7f05002a 416 | int id showCustom 0x7f050009 417 | int id showHome 0x7f050006 418 | int id showTitle 0x7f050008 419 | int id split_action_bar 0x7f050019 420 | int id submit_area 0x7f05003c 421 | int id tabMode 0x7f050003 422 | int id title 0x7f050027 423 | int id tool_bar 0x7f050040 424 | int id up 0x7f050016 425 | int id useLogo 0x7f050005 426 | int id view 0x7f05003f 427 | int id withText 0x7f05000e 428 | int id wrap_content 0x7f050000 429 | int integer abc_max_action_buttons 0x7f090000 430 | int layout abc_action_bar_title_item 0x7f030000 431 | int layout abc_action_bar_up_container 0x7f030001 432 | int layout abc_action_bar_view_list_nav_layout 0x7f030002 433 | int layout abc_action_menu_item_layout 0x7f030003 434 | int layout abc_action_menu_layout 0x7f030004 435 | int layout abc_action_mode_bar 0x7f030005 436 | int layout abc_action_mode_close_item_material 0x7f030006 437 | int layout abc_activity_chooser_view 0x7f030007 438 | int layout abc_activity_chooser_view_include 0x7f030008 439 | int layout abc_activity_chooser_view_list_item 0x7f030009 440 | int layout abc_expanded_menu_layout 0x7f03000a 441 | int layout abc_list_menu_item_checkbox 0x7f03000b 442 | int layout abc_list_menu_item_icon 0x7f03000c 443 | int layout abc_list_menu_item_layout 0x7f03000d 444 | int layout abc_list_menu_item_radio 0x7f03000e 445 | int layout abc_popup_menu_item_layout 0x7f03000f 446 | int layout abc_screen_content_include 0x7f030010 447 | int layout abc_screen_simple 0x7f030011 448 | int layout abc_screen_simple_overlay_action_mode 0x7f030012 449 | int layout abc_screen_toolbar 0x7f030013 450 | int layout abc_search_dropdown_item_icons_2line 0x7f030014 451 | int layout abc_search_view 0x7f030015 452 | int layout abc_simple_dropdown_hint 0x7f030016 453 | int layout actiontool_bar 0x7f030017 454 | int layout activity_home 0x7f030018 455 | int layout slidemenu_pfpic_header 0x7f030019 456 | int layout slider_item_row 0x7f03001a 457 | int layout support_simple_spinner_dropdown_item 0x7f03001b 458 | int menu home 0x7f0c0000 459 | int string abc_action_bar_home_description 0x7f0a0001 460 | int string abc_action_bar_home_description_format 0x7f0a0005 461 | int string abc_action_bar_home_subtitle_description_format 0x7f0a0006 462 | int string abc_action_bar_up_description 0x7f0a0002 463 | int string abc_action_menu_overflow_description 0x7f0a0003 464 | int string abc_action_mode_done 0x7f0a0000 465 | int string abc_activity_chooser_view_see_all 0x7f0a000d 466 | int string abc_activitychooserview_choose_application 0x7f0a000c 467 | int string abc_searchview_description_clear 0x7f0a0009 468 | int string abc_searchview_description_query 0x7f0a0008 469 | int string abc_searchview_description_search 0x7f0a0007 470 | int string abc_searchview_description_submit 0x7f0a000a 471 | int string abc_searchview_description_voice 0x7f0a000b 472 | int string abc_shareactionprovider_share_with 0x7f0a000f 473 | int string abc_shareactionprovider_share_with_application 0x7f0a000e 474 | int string abc_toolbar_collapse_description 0x7f0a0004 475 | int string action_settings 0x7f0a0012 476 | int string app_name 0x7f0a0010 477 | int string closeDrawer 0x7f0a0014 478 | int string hello_world 0x7f0a0011 479 | int string openDrawer 0x7f0a0013 480 | int style AppTheme 0x7f0b00eb 481 | int style Base_TextAppearance_AppCompat 0x7f0b0098 482 | int style Base_TextAppearance_AppCompat_Body1 0x7f0b00a3 483 | int style Base_TextAppearance_AppCompat_Body2 0x7f0b00a2 484 | int style Base_TextAppearance_AppCompat_Button 0x7f0b00a6 485 | int style Base_TextAppearance_AppCompat_Caption 0x7f0b00a4 486 | int style Base_TextAppearance_AppCompat_Display1 0x7f0b009c 487 | int style Base_TextAppearance_AppCompat_Display2 0x7f0b009b 488 | int style Base_TextAppearance_AppCompat_Display3 0x7f0b009a 489 | int style Base_TextAppearance_AppCompat_Display4 0x7f0b0099 490 | int style Base_TextAppearance_AppCompat_Headline 0x7f0b009d 491 | int style Base_TextAppearance_AppCompat_Inverse 0x7f0b00a7 492 | int style Base_TextAppearance_AppCompat_Large 0x7f0b00a8 493 | int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0b00a9 494 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0085 495 | int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b0086 496 | int style Base_TextAppearance_AppCompat_Medium 0x7f0b00aa 497 | int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0b00ab 498 | int style Base_TextAppearance_AppCompat_Menu 0x7f0b00a5 499 | int style Base_TextAppearance_AppCompat_SearchResult 0x7f0b0087 500 | int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b0089 501 | int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0b0088 502 | int style Base_TextAppearance_AppCompat_Small 0x7f0b00ac 503 | int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0b00ad 504 | int style Base_TextAppearance_AppCompat_Subhead 0x7f0b00a0 505 | int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0b00a1 506 | int style Base_TextAppearance_AppCompat_Title 0x7f0b009e 507 | int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0b009f 508 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0070 509 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0072 510 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0074 511 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0071 512 | int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0073 513 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b006f 514 | int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b006e 515 | int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b007b 516 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0083 517 | int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0084 518 | int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0b0097 519 | int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b007c 520 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0092 521 | int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0091 522 | int style Base_Theme_AppCompat 0x7f0b00cf 523 | int style Base_Theme_AppCompat_CompactMenu 0x7f0b00d2 524 | int style Base_Theme_AppCompat_Dialog 0x7f0b00d4 525 | int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0b00d6 526 | int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0b00d8 527 | int style Base_Theme_AppCompat_Light 0x7f0b00d0 528 | int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0b00d1 529 | int style Base_Theme_AppCompat_Light_Dialog 0x7f0b00d5 530 | int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0b00d7 531 | int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0b00d9 532 | int style Base_ThemeOverlay_AppCompat 0x7f0b00da 533 | int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0b00dd 534 | int style Base_ThemeOverlay_AppCompat_Dark 0x7f0b00dc 535 | int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b00de 536 | int style Base_ThemeOverlay_AppCompat_Light 0x7f0b00db 537 | int style Base_V11_Theme_AppCompat 0x7f0b00df 538 | int style Base_V11_Theme_AppCompat_Dialog 0x7f0b00e1 539 | int style Base_V11_Theme_AppCompat_Light 0x7f0b00e0 540 | int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f0b00e2 541 | int style Base_V14_Theme_AppCompat 0x7f0b00e3 542 | int style Base_V14_Theme_AppCompat_Dialog 0x7f0b00e5 543 | int style Base_V14_Theme_AppCompat_Light 0x7f0b00e4 544 | int style Base_V14_Theme_AppCompat_Light_Dialog 0x7f0b00e6 545 | int style Base_V21_Theme_AppCompat 0x7f0b00e7 546 | int style Base_V21_Theme_AppCompat_Dialog 0x7f0b00e9 547 | int style Base_V21_Theme_AppCompat_Light 0x7f0b00e8 548 | int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0b00ea 549 | int style Base_V7_Theme_AppCompat 0x7f0b00cd 550 | int style Base_V7_Theme_AppCompat_Dialog 0x7f0b00d3 551 | int style Base_V7_Theme_AppCompat_Light 0x7f0b00ce 552 | int style Base_Widget_AppCompat_ActionBar 0x7f0b005f 553 | int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0b0061 554 | int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0b0066 555 | int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0b006a 556 | int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0b0068 557 | int style Base_Widget_AppCompat_ActionButton 0x7f0b0063 558 | int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0b0064 559 | int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0b0065 560 | int style Base_Widget_AppCompat_ActionMode 0x7f0b006d 561 | int style Base_Widget_AppCompat_ActivityChooserView 0x7f0b008c 562 | int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0b008a 563 | int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0b0096 564 | int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0b0095 565 | int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0b0079 566 | int style Base_Widget_AppCompat_EditText 0x7f0b0094 567 | int style Base_Widget_AppCompat_Light_ActionBar 0x7f0b0060 568 | int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0062 569 | int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b0067 570 | int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0b006b 571 | int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b006c 572 | int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0069 573 | int style Base_Widget_AppCompat_Light_ActivityChooserView 0x7f0b008d 574 | int style Base_Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b008b 575 | int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0b0082 576 | int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b0080 577 | int style Base_Widget_AppCompat_ListPopupWindow 0x7f0b007e 578 | int style Base_Widget_AppCompat_ListView_DropDown 0x7f0b007a 579 | int style Base_Widget_AppCompat_ListView_Menu 0x7f0b007d 580 | int style Base_Widget_AppCompat_PopupMenu 0x7f0b0081 581 | int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0b007f 582 | int style Base_Widget_AppCompat_PopupWindow 0x7f0b008e 583 | int style Base_Widget_AppCompat_ProgressBar 0x7f0b0076 584 | int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0075 585 | int style Base_Widget_AppCompat_SearchView 0x7f0b0093 586 | int style Base_Widget_AppCompat_Spinner 0x7f0b0077 587 | int style Base_Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b0078 588 | int style Base_Widget_AppCompat_Toolbar 0x7f0b008f 589 | int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0090 590 | int style Platform_AppCompat 0x7f0b00c9 591 | int style Platform_AppCompat_Dialog 0x7f0b00cb 592 | int style Platform_AppCompat_Light 0x7f0b00ca 593 | int style Platform_AppCompat_Light_Dialog 0x7f0b00cc 594 | int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0b00b4 595 | int style RtlOverlay_Widget_AppCompat_ActionButton_CloseMode 0x7f0b00b5 596 | int style RtlOverlay_Widget_AppCompat_ActionButton_Overflow 0x7f0b00b6 597 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0b00b7 598 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0b00b8 599 | int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0b00b9 600 | int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0b00af 601 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0b00b1 602 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0b00b2 603 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0b00b0 604 | int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0b00b3 605 | int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0b00ae 606 | int style TextAppearance_AppCompat 0x7f0b0038 607 | int style TextAppearance_AppCompat_Body1 0x7f0b0043 608 | int style TextAppearance_AppCompat_Body2 0x7f0b0042 609 | int style TextAppearance_AppCompat_Button 0x7f0b004d 610 | int style TextAppearance_AppCompat_Caption 0x7f0b0044 611 | int style TextAppearance_AppCompat_Display1 0x7f0b003c 612 | int style TextAppearance_AppCompat_Display2 0x7f0b003b 613 | int style TextAppearance_AppCompat_Display3 0x7f0b003a 614 | int style TextAppearance_AppCompat_Display4 0x7f0b0039 615 | int style TextAppearance_AppCompat_Headline 0x7f0b003d 616 | int style TextAppearance_AppCompat_Inverse 0x7f0b0046 617 | int style TextAppearance_AppCompat_Large 0x7f0b0047 618 | int style TextAppearance_AppCompat_Large_Inverse 0x7f0b0048 619 | int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0b0053 620 | int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0b0052 621 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0b0029 622 | int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0b002a 623 | int style TextAppearance_AppCompat_Medium 0x7f0b0049 624 | int style TextAppearance_AppCompat_Medium_Inverse 0x7f0b004a 625 | int style TextAppearance_AppCompat_Menu 0x7f0b0045 626 | int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0b002c 627 | int style TextAppearance_AppCompat_SearchResult_Title 0x7f0b002b 628 | int style TextAppearance_AppCompat_Small 0x7f0b004b 629 | int style TextAppearance_AppCompat_Small_Inverse 0x7f0b004c 630 | int style TextAppearance_AppCompat_Subhead 0x7f0b0040 631 | int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0b0041 632 | int style TextAppearance_AppCompat_Title 0x7f0b003e 633 | int style TextAppearance_AppCompat_Title_Inverse 0x7f0b003f 634 | int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0b0015 635 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0b0005 636 | int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0b0007 637 | int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0b0004 638 | int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0b0006 639 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0b0018 640 | int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0b0056 641 | int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0b0017 642 | int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0b0055 643 | int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0b0019 644 | int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0b0027 645 | int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0b0028 646 | int style TextAppearance_AppCompat_Widget_Switch 0x7f0b004e 647 | int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0b001f 648 | int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0b0037 649 | int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0b0036 650 | int style Theme_AppCompat 0x7f0b00ba 651 | int style Theme_AppCompat_CompactMenu 0x7f0b00c3 652 | int style Theme_AppCompat_Dialog 0x7f0b00c1 653 | int style Theme_AppCompat_DialogWhenLarge 0x7f0b00bf 654 | int style Theme_AppCompat_Light 0x7f0b00bb 655 | int style Theme_AppCompat_Light_DarkActionBar 0x7f0b00bc 656 | int style Theme_AppCompat_Light_Dialog 0x7f0b00c2 657 | int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0b00c0 658 | int style Theme_AppCompat_Light_NoActionBar 0x7f0b00be 659 | int style Theme_AppCompat_NoActionBar 0x7f0b00bd 660 | int style ThemeOverlay_AppCompat 0x7f0b00c4 661 | int style ThemeOverlay_AppCompat_ActionBar 0x7f0b00c7 662 | int style ThemeOverlay_AppCompat_Dark 0x7f0b00c6 663 | int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0b00c8 664 | int style ThemeOverlay_AppCompat_Light 0x7f0b00c5 665 | int style Widget_AppCompat_ActionBar 0x7f0b0000 666 | int style Widget_AppCompat_ActionBar_Solid 0x7f0b0002 667 | int style Widget_AppCompat_ActionBar_TabBar 0x7f0b000d 668 | int style Widget_AppCompat_ActionBar_TabText 0x7f0b0011 669 | int style Widget_AppCompat_ActionBar_TabView 0x7f0b000f 670 | int style Widget_AppCompat_ActionButton 0x7f0b000a 671 | int style Widget_AppCompat_ActionButton_CloseMode 0x7f0b000b 672 | int style Widget_AppCompat_ActionButton_Overflow 0x7f0b000c 673 | int style Widget_AppCompat_ActionMode 0x7f0b0016 674 | int style Widget_AppCompat_ActivityChooserView 0x7f0b002f 675 | int style Widget_AppCompat_AutoCompleteTextView 0x7f0b002d 676 | int style Widget_AppCompat_CompoundButton_Switch 0x7f0b0033 677 | int style Widget_AppCompat_DrawerArrowToggle 0x7f0b0012 678 | int style Widget_AppCompat_DropDownItem_Spinner 0x7f0b001d 679 | int style Widget_AppCompat_EditText 0x7f0b0032 680 | int style Widget_AppCompat_Light_ActionBar 0x7f0b0001 681 | int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0b0003 682 | int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0b004f 683 | int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0b000e 684 | int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0b0050 685 | int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0b0013 686 | int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0b0014 687 | int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0b0010 688 | int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0b0051 689 | int style Widget_AppCompat_Light_ActionButton 0x7f0b0059 690 | int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0b005b 691 | int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0b005a 692 | int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0b0054 693 | int style Widget_AppCompat_Light_ActivityChooserView 0x7f0b0030 694 | int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0b002e 695 | int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0b0057 696 | int style Widget_AppCompat_Light_ListPopupWindow 0x7f0b005e 697 | int style Widget_AppCompat_Light_ListView_DropDown 0x7f0b005d 698 | int style Widget_AppCompat_Light_PopupMenu 0x7f0b0024 699 | int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0b0022 700 | int style Widget_AppCompat_Light_SearchView 0x7f0b0058 701 | int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0b005c 702 | int style Widget_AppCompat_ListPopupWindow 0x7f0b0020 703 | int style Widget_AppCompat_ListView_DropDown 0x7f0b001e 704 | int style Widget_AppCompat_ListView_Menu 0x7f0b0025 705 | int style Widget_AppCompat_PopupMenu 0x7f0b0023 706 | int style Widget_AppCompat_PopupMenu_Overflow 0x7f0b0021 707 | int style Widget_AppCompat_PopupWindow 0x7f0b0026 708 | int style Widget_AppCompat_ProgressBar 0x7f0b0009 709 | int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0b0008 710 | int style Widget_AppCompat_SearchView 0x7f0b0031 711 | int style Widget_AppCompat_Spinner 0x7f0b001a 712 | int style Widget_AppCompat_Spinner_DropDown 0x7f0b001b 713 | int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0b001c 714 | int style Widget_AppCompat_Toolbar 0x7f0b0034 715 | int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0b0035 716 | int[] styleable ActionBar { 0x7f010000, 0x7f010001, 0x7f01002c, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c } 717 | int styleable ActionBar_background 11 718 | int styleable ActionBar_backgroundSplit 13 719 | int styleable ActionBar_backgroundStacked 12 720 | int styleable ActionBar_contentInsetEnd 22 721 | int styleable ActionBar_contentInsetLeft 23 722 | int styleable ActionBar_contentInsetRight 24 723 | int styleable ActionBar_contentInsetStart 21 724 | int styleable ActionBar_customNavigationLayout 14 725 | int styleable ActionBar_displayOptions 4 726 | int styleable ActionBar_divider 10 727 | int styleable ActionBar_elevation 25 728 | int styleable ActionBar_height 1 729 | int styleable ActionBar_hideOnContentScroll 20 730 | int styleable ActionBar_homeAsUpIndicator 2 731 | int styleable ActionBar_homeLayout 15 732 | int styleable ActionBar_icon 8 733 | int styleable ActionBar_indeterminateProgressStyle 17 734 | int styleable ActionBar_itemPadding 19 735 | int styleable ActionBar_logo 9 736 | int styleable ActionBar_navigationMode 3 737 | int styleable ActionBar_popupTheme 26 738 | int styleable ActionBar_progressBarPadding 18 739 | int styleable ActionBar_progressBarStyle 16 740 | int styleable ActionBar_subtitle 5 741 | int styleable ActionBar_subtitleTextStyle 7 742 | int styleable ActionBar_title 0 743 | int styleable ActionBar_titleTextStyle 6 744 | int[] styleable ActionBarLayout { 0x010100b3 } 745 | int styleable ActionBarLayout_android_layout_gravity 0 746 | int[] styleable ActionMenuItemView { 0x0101013f } 747 | int styleable ActionMenuItemView_android_minWidth 0 748 | int[] styleable ActionMenuView { } 749 | int[] styleable ActionMode { 0x7f010001, 0x7f010058, 0x7f010059, 0x7f01005d, 0x7f01005f, 0x7f01006d } 750 | int styleable ActionMode_background 3 751 | int styleable ActionMode_backgroundSplit 4 752 | int styleable ActionMode_closeItemLayout 5 753 | int styleable ActionMode_height 0 754 | int styleable ActionMode_subtitleTextStyle 2 755 | int styleable ActionMode_titleTextStyle 1 756 | int[] styleable ActivityChooserView { 0x7f010084, 0x7f010085 } 757 | int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 758 | int styleable ActivityChooserView_initialActivityCount 0 759 | int[] styleable CircleImageView { 0x7f0100a9, 0x7f0100aa } 760 | int styleable CircleImageView_border_color 1 761 | int styleable CircleImageView_border_width 0 762 | int[] styleable CompatTextView { 0x7f010086 } 763 | int styleable CompatTextView_textAllCaps 0 764 | int[] styleable DrawerArrowToggle { 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0 } 765 | int styleable DrawerArrowToggle_barSize 6 766 | int styleable DrawerArrowToggle_color 0 767 | int styleable DrawerArrowToggle_drawableSize 2 768 | int styleable DrawerArrowToggle_gapBetweenBars 3 769 | int styleable DrawerArrowToggle_middleBarArrowSize 5 770 | int styleable DrawerArrowToggle_spinBars 1 771 | int styleable DrawerArrowToggle_thickness 7 772 | int styleable DrawerArrowToggle_topBottomBarArrowSize 4 773 | int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01005c, 0x7f010087, 0x7f010088, 0x7f010089 } 774 | int styleable LinearLayoutCompat_android_baselineAligned 2 775 | int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 776 | int styleable LinearLayoutCompat_android_gravity 0 777 | int styleable LinearLayoutCompat_android_orientation 1 778 | int styleable LinearLayoutCompat_android_weightSum 4 779 | int styleable LinearLayoutCompat_divider 5 780 | int styleable LinearLayoutCompat_dividerPadding 8 781 | int styleable LinearLayoutCompat_measureWithLargestChild 6 782 | int styleable LinearLayoutCompat_showDividers 7 783 | int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } 784 | int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 785 | int styleable LinearLayoutCompat_Layout_android_layout_height 2 786 | int styleable LinearLayoutCompat_Layout_android_layout_weight 3 787 | int styleable LinearLayoutCompat_Layout_android_layout_width 1 788 | int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } 789 | int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 790 | int styleable ListPopupWindow_android_dropDownVerticalOffset 1 791 | int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } 792 | int styleable MenuGroup_android_checkableBehavior 5 793 | int styleable MenuGroup_android_enabled 0 794 | int styleable MenuGroup_android_id 1 795 | int styleable MenuGroup_android_menuCategory 3 796 | int styleable MenuGroup_android_orderInCategory 4 797 | int styleable MenuGroup_android_visible 2 798 | int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074 } 799 | int styleable MenuItem_actionLayout 14 800 | int styleable MenuItem_actionProviderClass 16 801 | int styleable MenuItem_actionViewClass 15 802 | int styleable MenuItem_android_alphabeticShortcut 9 803 | int styleable MenuItem_android_checkable 11 804 | int styleable MenuItem_android_checked 3 805 | int styleable MenuItem_android_enabled 1 806 | int styleable MenuItem_android_icon 0 807 | int styleable MenuItem_android_id 2 808 | int styleable MenuItem_android_menuCategory 5 809 | int styleable MenuItem_android_numericShortcut 10 810 | int styleable MenuItem_android_onClick 12 811 | int styleable MenuItem_android_orderInCategory 6 812 | int styleable MenuItem_android_title 7 813 | int styleable MenuItem_android_titleCondensed 8 814 | int styleable MenuItem_android_visible 4 815 | int styleable MenuItem_showAsAction 13 816 | int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f010070 } 817 | int styleable MenuView_android_headerBackground 4 818 | int styleable MenuView_android_horizontalDivider 2 819 | int styleable MenuView_android_itemBackground 5 820 | int styleable MenuView_android_itemIconDisabledAlpha 6 821 | int styleable MenuView_android_itemTextAppearance 1 822 | int styleable MenuView_android_verticalDivider 3 823 | int styleable MenuView_android_windowAnimationStyle 0 824 | int styleable MenuView_preserveIconSpacing 7 825 | int[] styleable PopupWindow { 0x01010176, 0x7f010098 } 826 | int styleable PopupWindow_android_popupBackground 0 827 | int styleable PopupWindow_overlapAnchor 1 828 | int[] styleable PopupWindowBackgroundState { 0x7f010097 } 829 | int styleable PopupWindowBackgroundState_state_above_anchor 0 830 | int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083 } 831 | int styleable SearchView_android_focusable 0 832 | int styleable SearchView_android_imeOptions 3 833 | int styleable SearchView_android_inputType 2 834 | int styleable SearchView_android_maxWidth 1 835 | int styleable SearchView_closeIcon 7 836 | int styleable SearchView_commitIcon 11 837 | int styleable SearchView_goIcon 8 838 | int styleable SearchView_iconifiedByDefault 5 839 | int styleable SearchView_layout 4 840 | int styleable SearchView_queryBackground 13 841 | int styleable SearchView_queryHint 6 842 | int styleable SearchView_searchIcon 9 843 | int styleable SearchView_submitBackground 14 844 | int styleable SearchView_suggestionRowLayout 12 845 | int styleable SearchView_voiceIcon 10 846 | int[] styleable Spinner { 0x010100af, 0x010100d4, 0x01010175, 0x01010176, 0x01010262, 0x010102ac, 0x010102ad, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078 } 847 | int styleable Spinner_android_background 1 848 | int styleable Spinner_android_dropDownHorizontalOffset 5 849 | int styleable Spinner_android_dropDownSelector 2 850 | int styleable Spinner_android_dropDownVerticalOffset 6 851 | int styleable Spinner_android_dropDownWidth 4 852 | int styleable Spinner_android_gravity 0 853 | int styleable Spinner_android_popupBackground 3 854 | int styleable Spinner_disableChildrenWhenDisabled 10 855 | int styleable Spinner_popupPromptView 9 856 | int styleable Spinner_prompt 7 857 | int styleable Spinner_spinnerMode 8 858 | int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 } 859 | int styleable SwitchCompat_android_textOff 1 860 | int styleable SwitchCompat_android_textOn 0 861 | int styleable SwitchCompat_android_thumb 2 862 | int styleable SwitchCompat_showText 9 863 | int styleable SwitchCompat_splitTrack 8 864 | int styleable SwitchCompat_switchMinWidth 6 865 | int styleable SwitchCompat_switchPadding 7 866 | int styleable SwitchCompat_switchTextAppearance 5 867 | int styleable SwitchCompat_thumbTextPadding 4 868 | int styleable SwitchCompat_track 3 869 | int[] styleable Theme { 0x01010057, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054 } 870 | int styleable Theme_actionBarDivider 19 871 | int styleable Theme_actionBarItemBackground 20 872 | int styleable Theme_actionBarPopupTheme 13 873 | int styleable Theme_actionBarSize 18 874 | int styleable Theme_actionBarSplitStyle 15 875 | int styleable Theme_actionBarStyle 14 876 | int styleable Theme_actionBarTabBarStyle 9 877 | int styleable Theme_actionBarTabStyle 8 878 | int styleable Theme_actionBarTabTextStyle 10 879 | int styleable Theme_actionBarTheme 16 880 | int styleable Theme_actionBarWidgetTheme 17 881 | int styleable Theme_actionButtonStyle 43 882 | int styleable Theme_actionDropDownStyle 38 883 | int styleable Theme_actionMenuTextAppearance 21 884 | int styleable Theme_actionMenuTextColor 22 885 | int styleable Theme_actionModeBackground 25 886 | int styleable Theme_actionModeCloseButtonStyle 24 887 | int styleable Theme_actionModeCloseDrawable 27 888 | int styleable Theme_actionModeCopyDrawable 29 889 | int styleable Theme_actionModeCutDrawable 28 890 | int styleable Theme_actionModeFindDrawable 33 891 | int styleable Theme_actionModePasteDrawable 30 892 | int styleable Theme_actionModePopupWindowStyle 35 893 | int styleable Theme_actionModeSelectAllDrawable 31 894 | int styleable Theme_actionModeShareDrawable 32 895 | int styleable Theme_actionModeSplitBackground 26 896 | int styleable Theme_actionModeStyle 23 897 | int styleable Theme_actionModeWebSearchDrawable 34 898 | int styleable Theme_actionOverflowButtonStyle 11 899 | int styleable Theme_actionOverflowMenuStyle 12 900 | int styleable Theme_activityChooserViewStyle 50 901 | int styleable Theme_android_windowIsFloating 0 902 | int styleable Theme_buttonBarButtonStyle 45 903 | int styleable Theme_buttonBarStyle 44 904 | int styleable Theme_colorAccent 77 905 | int styleable Theme_colorButtonNormal 81 906 | int styleable Theme_colorControlActivated 79 907 | int styleable Theme_colorControlHighlight 80 908 | int styleable Theme_colorControlNormal 78 909 | int styleable Theme_colorPrimary 75 910 | int styleable Theme_colorPrimaryDark 76 911 | int styleable Theme_colorSwitchThumbNormal 82 912 | int styleable Theme_dividerHorizontal 49 913 | int styleable Theme_dividerVertical 48 914 | int styleable Theme_dropDownListViewStyle 67 915 | int styleable Theme_dropdownListPreferredItemHeight 39 916 | int styleable Theme_editTextBackground 56 917 | int styleable Theme_editTextColor 55 918 | int styleable Theme_homeAsUpIndicator 42 919 | int styleable Theme_listChoiceBackgroundIndicator 74 920 | int styleable Theme_listPopupWindowStyle 68 921 | int styleable Theme_listPreferredItemHeight 62 922 | int styleable Theme_listPreferredItemHeightLarge 64 923 | int styleable Theme_listPreferredItemHeightSmall 63 924 | int styleable Theme_listPreferredItemPaddingLeft 65 925 | int styleable Theme_listPreferredItemPaddingRight 66 926 | int styleable Theme_panelBackground 71 927 | int styleable Theme_panelMenuListTheme 73 928 | int styleable Theme_panelMenuListWidth 72 929 | int styleable Theme_popupMenuStyle 53 930 | int styleable Theme_popupWindowStyle 54 931 | int styleable Theme_searchViewStyle 61 932 | int styleable Theme_selectableItemBackground 46 933 | int styleable Theme_selectableItemBackgroundBorderless 47 934 | int styleable Theme_spinnerDropDownItemStyle 41 935 | int styleable Theme_spinnerStyle 40 936 | int styleable Theme_switchStyle 57 937 | int styleable Theme_textAppearanceLargePopupMenu 36 938 | int styleable Theme_textAppearanceListItem 69 939 | int styleable Theme_textAppearanceListItemSmall 70 940 | int styleable Theme_textAppearanceSearchResultSubtitle 59 941 | int styleable Theme_textAppearanceSearchResultTitle 58 942 | int styleable Theme_textAppearanceSmallPopupMenu 37 943 | int styleable Theme_textColorSearchUrl 60 944 | int styleable Theme_toolbarNavigationButtonStyle 52 945 | int styleable Theme_toolbarStyle 51 946 | int styleable Theme_windowActionBar 1 947 | int styleable Theme_windowActionBarOverlay 2 948 | int styleable Theme_windowActionModeOverlay 3 949 | int styleable Theme_windowFixedHeightMajor 7 950 | int styleable Theme_windowFixedHeightMinor 5 951 | int styleable Theme_windowFixedWidthMajor 4 952 | int styleable Theme_windowFixedWidthMinor 6 953 | int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010000, 0x7f010057, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006c, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 } 954 | int styleable Toolbar_android_gravity 0 955 | int styleable Toolbar_android_minHeight 1 956 | int styleable Toolbar_collapseContentDescription 19 957 | int styleable Toolbar_collapseIcon 18 958 | int styleable Toolbar_contentInsetEnd 5 959 | int styleable Toolbar_contentInsetLeft 6 960 | int styleable Toolbar_contentInsetRight 7 961 | int styleable Toolbar_contentInsetStart 4 962 | int styleable Toolbar_maxButtonHeight 16 963 | int styleable Toolbar_navigationContentDescription 21 964 | int styleable Toolbar_navigationIcon 20 965 | int styleable Toolbar_popupTheme 8 966 | int styleable Toolbar_subtitle 3 967 | int styleable Toolbar_subtitleTextAppearance 10 968 | int styleable Toolbar_theme 17 969 | int styleable Toolbar_title 2 970 | int styleable Toolbar_titleMarginBottom 15 971 | int styleable Toolbar_titleMarginEnd 13 972 | int styleable Toolbar_titleMarginStart 12 973 | int styleable Toolbar_titleMarginTop 14 974 | int styleable Toolbar_titleMargins 11 975 | int styleable Toolbar_titleTextAppearance 9 976 | int[] styleable View { 0x010100da, 0x7f01006e, 0x7f01006f } 977 | int styleable View_android_focusable 0 978 | int styleable View_paddingEnd 2 979 | int styleable View_paddingStart 1 980 | int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } 981 | int styleable ViewStubCompat_android_id 0 982 | int styleable ViewStubCompat_android_inflatedId 2 983 | int styleable ViewStubCompat_android_layout 1 984 | --------------------------------------------------------------------------------