├── .gitignore ├── FUNDING.yml ├── FantasySlide.sln ├── FantasySlide ├── Additions │ └── AboutAdditions.txt ├── FantasySlide.csproj ├── Jars │ ├── AboutJars.txt │ └── library-1.0.4.aar ├── Properties │ └── AssemblyInfo.cs ├── Transforms │ ├── EnumFields.xml │ ├── EnumMethods.xml │ └── Metadata.xml └── packages.config ├── LICENSE ├── README.md ├── Sample ├── Assets │ └── AboutAssets.txt ├── CircleImageView.cs ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── color │ │ └── menu_text_color.xml │ ├── drawable-xxhdpi │ │ ├── circle.png │ │ ├── coupon.png │ │ ├── fake.jpg │ │ ├── friends.png │ │ ├── home.png │ │ ├── me.jpg │ │ ├── settings.png │ │ └── wallet.png │ ├── drawable │ │ └── bg_right_bar.xml │ ├── layout │ │ └── activity_main.xml │ ├── mipmap-hdpi │ │ └── Icon.png │ ├── mipmap-mdpi │ │ └── Icon.png │ ├── mipmap-xhdpi │ │ └── Icon.png │ ├── mipmap-xxhdpi │ │ └── Icon.png │ ├── mipmap-xxxhdpi │ │ └── Icon.png │ └── values │ │ ├── Strings.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ └── styles.xml ├── Sample.csproj ├── UniversalActivity.cs └── packages.config ├── icon_fantasyslide.png └── nuspec └── Xam.Plugins.Android.FantasySlide.nuspec /.gitignore: -------------------------------------------------------------------------------- 1 | #Autosave files 2 | *~ 3 | 4 | #build 5 | [Oo]bj/ 6 | [Bb]in/ 7 | packages/ 8 | TestResults/ 9 | 10 | # globs 11 | Makefile.in 12 | *.DS_Store 13 | *.sln.cache 14 | *.suo 15 | *.cache 16 | *.pidb 17 | *.userprefs 18 | *.usertasks 19 | config.log 20 | config.make 21 | config.status 22 | aclocal.m4 23 | install-sh 24 | autom4te.cache/ 25 | *.user 26 | *.tar.gz 27 | tarballs/ 28 | test-results/ 29 | Thumbs.db 30 | 31 | #Mac bundle stuff 32 | *.dmg 33 | *.app 34 | 35 | #resharper 36 | *_Resharper.* 37 | *.Resharper 38 | 39 | #dotCover 40 | *.dotCover 41 | -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Baseflow 2 | custom: https://baseflow.com/contact 3 | -------------------------------------------------------------------------------- /FantasySlide.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FantasySlide", "FantasySlide\FantasySlide.csproj", "{946CDCE2-4113-4975-A797-8875C46AD5A7}" 5 | EndProject 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sample", "Sample\Sample.csproj", "{1344278C-190D-4682-A560-BAAFF4792290}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {946CDCE2-4113-4975-A797-8875C46AD5A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {946CDCE2-4113-4975-A797-8875C46AD5A7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {946CDCE2-4113-4975-A797-8875C46AD5A7}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {946CDCE2-4113-4975-A797-8875C46AD5A7}.Release|Any CPU.Build.0 = Release|Any CPU 18 | {1344278C-190D-4682-A560-BAAFF4792290}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {1344278C-190D-4682-A560-BAAFF4792290}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {1344278C-190D-4682-A560-BAAFF4792290}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {1344278C-190D-4682-A560-BAAFF4792290}.Release|Any CPU.Build.0 = Release|Any CPU 22 | EndGlobalSection 23 | EndGlobal 24 | -------------------------------------------------------------------------------- /FantasySlide/Additions/AboutAdditions.txt: -------------------------------------------------------------------------------- 1 | Additions allow you to add arbitrary C# to the generated classes 2 | before they are compiled. This can be helpful for providing convenience 3 | methods or adding pure C# classes. 4 | 5 | == Adding Methods to Generated Classes == 6 | 7 | Let's say the library being bound has a Rectangle class with a constructor 8 | that takes an x and y position, and a width and length size. It will look like 9 | this: 10 | 11 | public partial class Rectangle 12 | { 13 | public Rectangle (int x, int y, int width, int height) 14 | { 15 | // JNI bindings 16 | } 17 | } 18 | 19 | Imagine we want to add a constructor to this class that takes a Point and 20 | Size structure instead of 4 ints. We can add a new file called Rectangle.cs 21 | with a partial class containing our new method: 22 | 23 | public partial class Rectangle 24 | { 25 | public Rectangle (Point location, Size size) : 26 | this (location.X, location.Y, size.Width, size.Height) 27 | { 28 | } 29 | } 30 | 31 | At compile time, the additions class will be added to the generated class 32 | and the final assembly will a Rectangle class with both constructors. 33 | 34 | 35 | == Adding C# Classes == 36 | 37 | Another thing that can be done is adding fully C# managed classes to the 38 | generated library. In the above example, let's assume that there isn't a 39 | Point class available in Java or our library. The one we create doesn't need 40 | to interact with Java, so we'll create it like a normal class in C#. 41 | 42 | By adding a Point.cs file with this class, it will end up in the binding library: 43 | 44 | public class Point 45 | { 46 | public int X { get; set; } 47 | public int Y { get; set; } 48 | } 49 | -------------------------------------------------------------------------------- /FantasySlide/FantasySlide.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {946CDCE2-4113-4975-A797-8875C46AD5A7} 7 | {10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | FantasySlide 10 | FantasySlide 11 | v6.0 12 | Resources 13 | Assets 14 | false 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\Debug 21 | DEBUG; 22 | prompt 23 | 4 24 | false 25 | None 26 | 27 | 28 | true 29 | bin\Release 30 | prompt 31 | 4 32 | false 33 | false 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | ..\packages\Xamarin.Android.Support.v4.23.4.0.1\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /FantasySlide/Jars/AboutJars.txt: -------------------------------------------------------------------------------- 1 | This directory is for Android .jars. 2 | 3 | There are 4 types of jars that are supported: 4 | 5 | == Input Jar and Embedded Jar == 6 | 7 | This is the jar that bindings should be generated for. 8 | 9 | For example, if you were binding the Google Maps library, this would 10 | be Google's "maps.jar". 11 | 12 | The difference between EmbeddedJar and InputJar is, EmbeddedJar is to be 13 | embedded in the resulting dll as EmbeddedResource, while InputJar is not. 14 | There are couple of reasons you wouldn't like to embed the target jar 15 | in your dll (the ones that could be internally loaded by 16 | feature e.g. maps.jar, or you cannot embed jars that are under some 17 | proprietary license). 18 | 19 | Set the build action for these jars in the properties page to "InputJar". 20 | 21 | 22 | == Reference Jar and Embedded Reference Jar == 23 | 24 | These are jars that are referenced by the input jar. C# bindings will 25 | not be created for these jars. These jars will be used to resolve 26 | types used by the input jar. 27 | 28 | NOTE: Do not add "android.jar" as a reference jar. It will be added automatically 29 | based on the Target Framework selected. 30 | 31 | Set the build action for these jars in the properties page to "ReferenceJar". 32 | 33 | "EmbeddedJar" works like "ReferenceJar", but like "EmbeddedJar", it is 34 | embedded in your dll. But at application build time, they are not included 35 | in the final apk, like ReferenceJar files. 36 | 37 | 38 | -------------------------------------------------------------------------------- /FantasySlide/Jars/library-1.0.4.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/FantasySlide/Jars/library-1.0.4.aar -------------------------------------------------------------------------------- /FantasySlide/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using Android.App; 4 | 5 | // Information about this assembly is defined by the following attributes. 6 | // Change them to the values specific to your project. 7 | 8 | [assembly: AssemblyTitle("FantasySlide")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("")] 13 | [assembly: AssemblyCopyright("martijnvandijk")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 20 | 21 | [assembly: AssemblyVersion("1.0.0")] 22 | 23 | // The following attributes are used to specify the signing key for the assembly, 24 | // if desired. See the Mono documentation for more information about signing. 25 | 26 | //[assembly: AssemblyDelaySign(false)] 27 | //[assembly: AssemblyKeyFile("")] 28 | 29 | -------------------------------------------------------------------------------- /FantasySlide/Transforms/EnumFields.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 19 | 20 | -------------------------------------------------------------------------------- /FantasySlide/Transforms/EnumMethods.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 19 | 20 | -------------------------------------------------------------------------------- /FantasySlide/Transforms/Metadata.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 10 | 11 | -------------------------------------------------------------------------------- /FantasySlide/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # FantasySlideXamarin 2 | Another sliding menu base on DrawerLayout 3 | 4 | Xamarin bindings library for FantasySlide [library](https://github.com/mzule/FantasySlide). 5 | 6 | Plugin is available on [Nuget](https://www.nuget.org/packages/Xam.Plugins.Android.FantasySlide/). 7 | 8 | # Support 9 | 10 | * Feel free to open an issue. Make sure to use one of the templates! 11 | * Commercial support is available. Integration with your app or services, samples, feature request, etc. Email: [hello@baseflow.com](mailto:hello@baseflow.com) 12 | * Powered by: [baseflow.com](https://baseflow.com) 13 | 14 | #### Preview 15 | ![](https://raw.githubusercontent.com/mzule/FantasySlide/master/sample.gif) 16 | 17 | See the sample for implementation. 18 | -------------------------------------------------------------------------------- /Sample/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with your package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /Sample/CircleImageView.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Content; 3 | using Android.Graphics; 4 | using Android.Util; 5 | 6 | namespace Sample 7 | { 8 | public class CircleImageView : DE.Hdodenhof.Circleimageview.CircleImageView 9 | { 10 | public CircleImageView(Context context) : base(context) 11 | { 12 | } 13 | 14 | public CircleImageView(Context context, IAttributeSet attrs) : base(context, attrs) 15 | { 16 | } 17 | 18 | public CircleImageView(Context context, IAttributeSet attrs, int defStyle) : base(context, attrs, defStyle) 19 | { 20 | } 21 | 22 | protected override void DispatchSetPressed(bool pressed) 23 | { 24 | base.DispatchSetPressed(pressed); 25 | if (pressed) 26 | { 27 | BorderColor = Resources.GetColor(Resource.Color.colorAccent); 28 | } 29 | else { 30 | BorderColor = Color.White; 31 | } 32 | } 33 | } 34 | } 35 | 36 | -------------------------------------------------------------------------------- /Sample/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using Android.App; 2 | using Android.Widget; 3 | using Android.OS; 4 | using Android.Support.V7.App; 5 | using Android.Support.V7.Graphics.Drawable; 6 | using Android.Graphics; 7 | using Android.Support.V4.Widget; 8 | using Android.Animation; 9 | using Android.Support.V4.View; 10 | using Android.Views; 11 | using System; 12 | using Com.Github.Mzule.Fantasyslide; 13 | 14 | namespace Sample 15 | { 16 | [Activity(Label = "FantasySlide", MainLauncher = true, Icon = "@mipmap/icon", Theme = "@style/AppTheme")] 17 | public class MainActivity : AppCompatActivity, DrawerLayout.IDrawerListener 18 | { 19 | private DrawerLayout drawerLayout; 20 | private DrawerArrowDrawable indicator; 21 | 22 | protected override void OnCreate(Bundle savedInstanceState) 23 | { 24 | base.OnCreate(savedInstanceState); 25 | 26 | SetContentView(Resource.Layout.activity_main); 27 | 28 | SupportActionBar.SetDisplayHomeAsUpEnabled(true); 29 | indicator = new DrawerArrowDrawable(this); 30 | indicator.Color = Color.White; 31 | SupportActionBar.SetHomeAsUpIndicator(indicator); 32 | 33 | SetTransformer(); 34 | // setListener(); 35 | drawerLayout = FindViewById(Resource.Id.drawerLayout); 36 | drawerLayout.SetScrimColor(Color.Transparent); 37 | drawerLayout.AddDrawerListener(this); 38 | } 39 | 40 | private void SetTransformer() 41 | { 42 | float spacing = Resources.GetDimensionPixelSize(Resource.Dimension.spacing); 43 | SideBar rightSideBar = FindViewById(Resource.Id.rightSideBar); 44 | rightSideBar.SetTransformer(new Transformer(spacing)); 45 | } 46 | 47 | public override bool OnOptionsItemSelected(Android.Views.IMenuItem item) 48 | { 49 | if (item.ItemId == Android.Resource.Id.Home) 50 | { 51 | if (drawerLayout.IsDrawerOpen(GravityCompat.Start)) 52 | { 53 | drawerLayout.CloseDrawer(GravityCompat.Start); 54 | } 55 | else { 56 | drawerLayout.OpenDrawer(GravityCompat.Start); 57 | } 58 | } 59 | return true; 60 | } 61 | 62 | public void OnDrawerClosed(View drawerView) 63 | { 64 | } 65 | 66 | public void OnDrawerOpened(View drawerView) 67 | { 68 | } 69 | 70 | public void OnDrawerSlide(View drawerView, float slideOffset) 71 | { 72 | if (((ViewGroup)drawerView).GetChildAt(1).Id == Resource.Id.leftSideBar) 73 | { 74 | indicator.Progress = slideOffset; 75 | } 76 | } 77 | 78 | public void OnDrawerStateChanged(int newState) 79 | { 80 | } 81 | 82 | 83 | public void OnClick(View view) 84 | { 85 | if (view is TextView) { 86 | String title = ((TextView)view).Text.ToString(); 87 | if (title.StartsWith("星期")) 88 | { 89 | Toast.MakeText(this, title, ToastLength.Short).Show(); 90 | } 91 | else { 92 | //StartActivity(UniversalActivity.newIntent(this, title)); 93 | } 94 | } else if (view.Id == Resource.Id.userInfo) 95 | { 96 | //StartActivity(UniversalActivity.newIntent(this, "个人中心")); 97 | } 98 | } 99 | } 100 | 101 | public class Transformer : Java.Lang.Object, ITransformer 102 | { 103 | private View lastHoverView; 104 | private float spacing; 105 | 106 | public Transformer(float spacing) 107 | { 108 | this.spacing = spacing; 109 | } 110 | 111 | public void Apply(ViewGroup sideBar, View itemView, float touchY, float slideOffset, bool isLeft) 112 | { 113 | bool hovered = itemView.Pressed; 114 | if (hovered && lastHoverView != itemView) 115 | { 116 | animateIn(itemView); 117 | animateOut(lastHoverView); 118 | lastHoverView = itemView; 119 | } 120 | } 121 | 122 | private void animateOut(View view) 123 | { 124 | if (view == null) 125 | { 126 | return; 127 | } 128 | ObjectAnimator translationX = ObjectAnimator.OfFloat(view, "translationX", -spacing, 0); 129 | translationX.SetDuration(200); 130 | translationX.Start(); 131 | } 132 | 133 | private void animateIn(View view) 134 | { 135 | ObjectAnimator translationX = ObjectAnimator.OfFloat(view, "translationX", 0, -spacing); 136 | translationX.SetDuration(200); 137 | translationX.Start(); 138 | } 139 | } 140 | } -------------------------------------------------------------------------------- /Sample/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using Android.App; 4 | 5 | // Information about this assembly is defined by the following attributes. 6 | // Change them to the values specific to your project. 7 | 8 | [assembly: AssemblyTitle("Sample")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("")] 13 | [assembly: AssemblyCopyright("martijnvandijk")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision, 19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision. 20 | 21 | [assembly: AssemblyVersion("1.0.0")] 22 | 23 | // The following attributes are used to specify the signing key for the assembly, 24 | // if desired. See the Mono documentation for more information about signing. 25 | 26 | //[assembly: AssemblyDelaySign(false)] 27 | //[assembly: AssemblyKeyFile("")] 28 | 29 | -------------------------------------------------------------------------------- /Sample/Resources/AboutResources.txt: -------------------------------------------------------------------------------- 1 | Images, layout descriptions, binary blobs and string dictionaries can be included 2 | in your application as resource files. Various Android APIs are designed to 3 | operate on the resource IDs instead of dealing with images, strings or binary blobs 4 | directly. 5 | 6 | For example, a sample Android app that contains a user interface layout (main.axml), 7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) 8 | would keep its resources in the "Resources" directory of the application: 9 | 10 | Resources/ 11 | drawable/ 12 | icon.png 13 | 14 | layout/ 15 | main.axml 16 | 17 | values/ 18 | strings.xml 19 | 20 | In order to get the build system to recognize Android resources, set the build action to 21 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 22 | instead operate on resource IDs. When you compile an Android application that uses resources, 23 | the build system will package the resources for distribution and generate a class called "R" 24 | (this is an Android convention) that contains the tokens for each one of the resources 25 | included. For example, for the above Resources layout, this is what the R class would expose: 26 | 27 | public class R { 28 | public class drawable { 29 | public const int icon = 0x123; 30 | } 31 | 32 | public class layout { 33 | public const int main = 0x456; 34 | } 35 | 36 | public class strings { 37 | public const int first_string = 0xabc; 38 | public const int second_string = 0xbcd; 39 | } 40 | } 41 | 42 | You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main 43 | to reference the layout/main.axml file, or R.strings.first_string to reference the first 44 | string in the dictionary file values/strings.xml. 45 | -------------------------------------------------------------------------------- /Sample/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- 1 | #pragma warning disable 1591 2 | // ------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Mono Runtime Version: 4.0.30319.42000 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | // ------------------------------------------------------------------------------ 11 | 12 | [assembly: Android.Runtime.ResourceDesignerAttribute("Sample.Resource", IsApplication=true)] 13 | 14 | namespace Sample 15 | { 16 | 17 | 18 | [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] 19 | public partial class Resource 20 | { 21 | 22 | static Resource() 23 | { 24 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 25 | } 26 | 27 | public static void UpdateIdValues() 28 | { 29 | } 30 | 31 | public partial class Animation 32 | { 33 | 34 | // aapt resource value: 0x7f050000 35 | public const int abc_fade_in = 2131034112; 36 | 37 | // aapt resource value: 0x7f050001 38 | public const int abc_fade_out = 2131034113; 39 | 40 | // aapt resource value: 0x7f050002 41 | public const int abc_grow_fade_in_from_bottom = 2131034114; 42 | 43 | // aapt resource value: 0x7f050003 44 | public const int abc_popup_enter = 2131034115; 45 | 46 | // aapt resource value: 0x7f050004 47 | public const int abc_popup_exit = 2131034116; 48 | 49 | // aapt resource value: 0x7f050005 50 | public const int abc_shrink_fade_out_from_bottom = 2131034117; 51 | 52 | // aapt resource value: 0x7f050006 53 | public const int abc_slide_in_bottom = 2131034118; 54 | 55 | // aapt resource value: 0x7f050007 56 | public const int abc_slide_in_top = 2131034119; 57 | 58 | // aapt resource value: 0x7f050008 59 | public const int abc_slide_out_bottom = 2131034120; 60 | 61 | // aapt resource value: 0x7f050009 62 | public const int abc_slide_out_top = 2131034121; 63 | 64 | static Animation() 65 | { 66 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 67 | } 68 | 69 | private Animation() 70 | { 71 | } 72 | } 73 | 74 | public partial class Attribute 75 | { 76 | 77 | // aapt resource value: 0x7f01003b 78 | public const int actionBarDivider = 2130772027; 79 | 80 | // aapt resource value: 0x7f01003c 81 | public const int actionBarItemBackground = 2130772028; 82 | 83 | // aapt resource value: 0x7f010035 84 | public const int actionBarPopupTheme = 2130772021; 85 | 86 | // aapt resource value: 0x7f01003a 87 | public const int actionBarSize = 2130772026; 88 | 89 | // aapt resource value: 0x7f010037 90 | public const int actionBarSplitStyle = 2130772023; 91 | 92 | // aapt resource value: 0x7f010036 93 | public const int actionBarStyle = 2130772022; 94 | 95 | // aapt resource value: 0x7f010031 96 | public const int actionBarTabBarStyle = 2130772017; 97 | 98 | // aapt resource value: 0x7f010030 99 | public const int actionBarTabStyle = 2130772016; 100 | 101 | // aapt resource value: 0x7f010032 102 | public const int actionBarTabTextStyle = 2130772018; 103 | 104 | // aapt resource value: 0x7f010038 105 | public const int actionBarTheme = 2130772024; 106 | 107 | // aapt resource value: 0x7f010039 108 | public const int actionBarWidgetTheme = 2130772025; 109 | 110 | // aapt resource value: 0x7f010055 111 | public const int actionButtonStyle = 2130772053; 112 | 113 | // aapt resource value: 0x7f010051 114 | public const int actionDropDownStyle = 2130772049; 115 | 116 | // aapt resource value: 0x7f0100a3 117 | public const int actionLayout = 2130772131; 118 | 119 | // aapt resource value: 0x7f01003d 120 | public const int actionMenuTextAppearance = 2130772029; 121 | 122 | // aapt resource value: 0x7f01003e 123 | public const int actionMenuTextColor = 2130772030; 124 | 125 | // aapt resource value: 0x7f010041 126 | public const int actionModeBackground = 2130772033; 127 | 128 | // aapt resource value: 0x7f010040 129 | public const int actionModeCloseButtonStyle = 2130772032; 130 | 131 | // aapt resource value: 0x7f010043 132 | public const int actionModeCloseDrawable = 2130772035; 133 | 134 | // aapt resource value: 0x7f010045 135 | public const int actionModeCopyDrawable = 2130772037; 136 | 137 | // aapt resource value: 0x7f010044 138 | public const int actionModeCutDrawable = 2130772036; 139 | 140 | // aapt resource value: 0x7f010049 141 | public const int actionModeFindDrawable = 2130772041; 142 | 143 | // aapt resource value: 0x7f010046 144 | public const int actionModePasteDrawable = 2130772038; 145 | 146 | // aapt resource value: 0x7f01004b 147 | public const int actionModePopupWindowStyle = 2130772043; 148 | 149 | // aapt resource value: 0x7f010047 150 | public const int actionModeSelectAllDrawable = 2130772039; 151 | 152 | // aapt resource value: 0x7f010048 153 | public const int actionModeShareDrawable = 2130772040; 154 | 155 | // aapt resource value: 0x7f010042 156 | public const int actionModeSplitBackground = 2130772034; 157 | 158 | // aapt resource value: 0x7f01003f 159 | public const int actionModeStyle = 2130772031; 160 | 161 | // aapt resource value: 0x7f01004a 162 | public const int actionModeWebSearchDrawable = 2130772042; 163 | 164 | // aapt resource value: 0x7f010033 165 | public const int actionOverflowButtonStyle = 2130772019; 166 | 167 | // aapt resource value: 0x7f010034 168 | public const int actionOverflowMenuStyle = 2130772020; 169 | 170 | // aapt resource value: 0x7f0100a5 171 | public const int actionProviderClass = 2130772133; 172 | 173 | // aapt resource value: 0x7f0100a4 174 | public const int actionViewClass = 2130772132; 175 | 176 | // aapt resource value: 0x7f01005d 177 | public const int activityChooserViewStyle = 2130772061; 178 | 179 | // aapt resource value: 0x7f010080 180 | public const int alertDialogButtonGroupStyle = 2130772096; 181 | 182 | // aapt resource value: 0x7f010081 183 | public const int alertDialogCenterButtons = 2130772097; 184 | 185 | // aapt resource value: 0x7f01007f 186 | public const int alertDialogStyle = 2130772095; 187 | 188 | // aapt resource value: 0x7f010082 189 | public const int alertDialogTheme = 2130772098; 190 | 191 | // aapt resource value: 0x7f010094 192 | public const int allowStacking = 2130772116; 193 | 194 | // aapt resource value: 0x7f01009b 195 | public const int arrowHeadLength = 2130772123; 196 | 197 | // aapt resource value: 0x7f01009c 198 | public const int arrowShaftLength = 2130772124; 199 | 200 | // aapt resource value: 0x7f010087 201 | public const int autoCompleteTextViewStyle = 2130772103; 202 | 203 | // aapt resource value: 0x7f01000c 204 | public const int background = 2130771980; 205 | 206 | // aapt resource value: 0x7f01000e 207 | public const int backgroundSplit = 2130771982; 208 | 209 | // aapt resource value: 0x7f01000d 210 | public const int backgroundStacked = 2130771981; 211 | 212 | // aapt resource value: 0x7f0100cf 213 | public const int backgroundTint = 2130772175; 214 | 215 | // aapt resource value: 0x7f0100d0 216 | public const int backgroundTintMode = 2130772176; 217 | 218 | // aapt resource value: 0x7f01009d 219 | public const int barLength = 2130772125; 220 | 221 | // aapt resource value: 0x7f01005a 222 | public const int borderlessButtonStyle = 2130772058; 223 | 224 | // aapt resource value: 0x7f010057 225 | public const int buttonBarButtonStyle = 2130772055; 226 | 227 | // aapt resource value: 0x7f010085 228 | public const int buttonBarNegativeButtonStyle = 2130772101; 229 | 230 | // aapt resource value: 0x7f010086 231 | public const int buttonBarNeutralButtonStyle = 2130772102; 232 | 233 | // aapt resource value: 0x7f010084 234 | public const int buttonBarPositiveButtonStyle = 2130772100; 235 | 236 | // aapt resource value: 0x7f010056 237 | public const int buttonBarStyle = 2130772054; 238 | 239 | // aapt resource value: 0x7f01001f 240 | public const int buttonPanelSideLayout = 2130771999; 241 | 242 | // aapt resource value: 0x7f010088 243 | public const int buttonStyle = 2130772104; 244 | 245 | // aapt resource value: 0x7f010089 246 | public const int buttonStyleSmall = 2130772105; 247 | 248 | // aapt resource value: 0x7f010095 249 | public const int buttonTint = 2130772117; 250 | 251 | // aapt resource value: 0x7f010096 252 | public const int buttonTintMode = 2130772118; 253 | 254 | // aapt resource value: 0x7f01008a 255 | public const int checkboxStyle = 2130772106; 256 | 257 | // aapt resource value: 0x7f01008b 258 | public const int checkedTextViewStyle = 2130772107; 259 | 260 | // aapt resource value: 0x7f0100d3 261 | public const int civ_border_color = 2130772179; 262 | 263 | // aapt resource value: 0x7f0100d4 264 | public const int civ_border_overlay = 2130772180; 265 | 266 | // aapt resource value: 0x7f0100d2 267 | public const int civ_border_width = 2130772178; 268 | 269 | // aapt resource value: 0x7f0100d5 270 | public const int civ_fill_color = 2130772181; 271 | 272 | // aapt resource value: 0x7f0100ad 273 | public const int closeIcon = 2130772141; 274 | 275 | // aapt resource value: 0x7f01001c 276 | public const int closeItemLayout = 2130771996; 277 | 278 | // aapt resource value: 0x7f0100c6 279 | public const int collapseContentDescription = 2130772166; 280 | 281 | // aapt resource value: 0x7f0100c5 282 | public const int collapseIcon = 2130772165; 283 | 284 | // aapt resource value: 0x7f010097 285 | public const int color = 2130772119; 286 | 287 | // aapt resource value: 0x7f010078 288 | public const int colorAccent = 2130772088; 289 | 290 | // aapt resource value: 0x7f01007c 291 | public const int colorButtonNormal = 2130772092; 292 | 293 | // aapt resource value: 0x7f01007a 294 | public const int colorControlActivated = 2130772090; 295 | 296 | // aapt resource value: 0x7f01007b 297 | public const int colorControlHighlight = 2130772091; 298 | 299 | // aapt resource value: 0x7f010079 300 | public const int colorControlNormal = 2130772089; 301 | 302 | // aapt resource value: 0x7f010076 303 | public const int colorPrimary = 2130772086; 304 | 305 | // aapt resource value: 0x7f010077 306 | public const int colorPrimaryDark = 2130772087; 307 | 308 | // aapt resource value: 0x7f01007d 309 | public const int colorSwitchThumbNormal = 2130772093; 310 | 311 | // aapt resource value: 0x7f0100b2 312 | public const int commitIcon = 2130772146; 313 | 314 | // aapt resource value: 0x7f010017 315 | public const int contentInsetEnd = 2130771991; 316 | 317 | // aapt resource value: 0x7f010018 318 | public const int contentInsetLeft = 2130771992; 319 | 320 | // aapt resource value: 0x7f010019 321 | public const int contentInsetRight = 2130771993; 322 | 323 | // aapt resource value: 0x7f010016 324 | public const int contentInsetStart = 2130771990; 325 | 326 | // aapt resource value: 0x7f01007e 327 | public const int controlBackground = 2130772094; 328 | 329 | // aapt resource value: 0x7f01000f 330 | public const int customNavigationLayout = 2130771983; 331 | 332 | // aapt resource value: 0x7f0100ac 333 | public const int defaultQueryHint = 2130772140; 334 | 335 | // aapt resource value: 0x7f01004f 336 | public const int dialogPreferredPadding = 2130772047; 337 | 338 | // aapt resource value: 0x7f01004e 339 | public const int dialogTheme = 2130772046; 340 | 341 | // aapt resource value: 0x7f010005 342 | public const int displayOptions = 2130771973; 343 | 344 | // aapt resource value: 0x7f01000b 345 | public const int divider = 2130771979; 346 | 347 | // aapt resource value: 0x7f01005c 348 | public const int dividerHorizontal = 2130772060; 349 | 350 | // aapt resource value: 0x7f0100a1 351 | public const int dividerPadding = 2130772129; 352 | 353 | // aapt resource value: 0x7f01005b 354 | public const int dividerVertical = 2130772059; 355 | 356 | // aapt resource value: 0x7f010099 357 | public const int drawableSize = 2130772121; 358 | 359 | // aapt resource value: 0x7f010000 360 | public const int drawerArrowStyle = 2130771968; 361 | 362 | // aapt resource value: 0x7f01006e 363 | public const int dropDownListViewStyle = 2130772078; 364 | 365 | // aapt resource value: 0x7f010052 366 | public const int dropdownListPreferredItemHeight = 2130772050; 367 | 368 | // aapt resource value: 0x7f010063 369 | public const int editTextBackground = 2130772067; 370 | 371 | // aapt resource value: 0x7f010062 372 | public const int editTextColor = 2130772066; 373 | 374 | // aapt resource value: 0x7f01008c 375 | public const int editTextStyle = 2130772108; 376 | 377 | // aapt resource value: 0x7f01001a 378 | public const int elevation = 2130771994; 379 | 380 | // aapt resource value: 0x7f01001e 381 | public const int expandActivityOverflowButtonDrawable = 2130771998; 382 | 383 | // aapt resource value: 0x7f01009a 384 | public const int gapBetweenBars = 2130772122; 385 | 386 | // aapt resource value: 0x7f0100ae 387 | public const int goIcon = 2130772142; 388 | 389 | // aapt resource value: 0x7f010001 390 | public const int height = 2130771969; 391 | 392 | // aapt resource value: 0x7f010015 393 | public const int hideOnContentScroll = 2130771989; 394 | 395 | // aapt resource value: 0x7f010054 396 | public const int homeAsUpIndicator = 2130772052; 397 | 398 | // aapt resource value: 0x7f010010 399 | public const int homeLayout = 2130771984; 400 | 401 | // aapt resource value: 0x7f010009 402 | public const int icon = 2130771977; 403 | 404 | // aapt resource value: 0x7f0100aa 405 | public const int iconifiedByDefault = 2130772138; 406 | 407 | // aapt resource value: 0x7f010064 408 | public const int imageButtonStyle = 2130772068; 409 | 410 | // aapt resource value: 0x7f010012 411 | public const int indeterminateProgressStyle = 2130771986; 412 | 413 | // aapt resource value: 0x7f01001d 414 | public const int initialActivityCount = 2130771997; 415 | 416 | // aapt resource value: 0x7f010002 417 | public const int isLightTheme = 2130771970; 418 | 419 | // aapt resource value: 0x7f010014 420 | public const int itemPadding = 2130771988; 421 | 422 | // aapt resource value: 0x7f0100a9 423 | public const int layout = 2130772137; 424 | 425 | // aapt resource value: 0x7f010075 426 | public const int listChoiceBackgroundIndicator = 2130772085; 427 | 428 | // aapt resource value: 0x7f010050 429 | public const int listDividerAlertDialog = 2130772048; 430 | 431 | // aapt resource value: 0x7f010023 432 | public const int listItemLayout = 2130772003; 433 | 434 | // aapt resource value: 0x7f010020 435 | public const int listLayout = 2130772000; 436 | 437 | // aapt resource value: 0x7f01006f 438 | public const int listPopupWindowStyle = 2130772079; 439 | 440 | // aapt resource value: 0x7f010069 441 | public const int listPreferredItemHeight = 2130772073; 442 | 443 | // aapt resource value: 0x7f01006b 444 | public const int listPreferredItemHeightLarge = 2130772075; 445 | 446 | // aapt resource value: 0x7f01006a 447 | public const int listPreferredItemHeightSmall = 2130772074; 448 | 449 | // aapt resource value: 0x7f01006c 450 | public const int listPreferredItemPaddingLeft = 2130772076; 451 | 452 | // aapt resource value: 0x7f01006d 453 | public const int listPreferredItemPaddingRight = 2130772077; 454 | 455 | // aapt resource value: 0x7f01000a 456 | public const int logo = 2130771978; 457 | 458 | // aapt resource value: 0x7f0100c9 459 | public const int logoDescription = 2130772169; 460 | 461 | // aapt resource value: 0x7f0100c4 462 | public const int maxButtonHeight = 2130772164; 463 | 464 | // aapt resource value: 0x7f0100d1 465 | public const int maxTranslationX = 2130772177; 466 | 467 | // aapt resource value: 0x7f01009f 468 | public const int measureWithLargestChild = 2130772127; 469 | 470 | // aapt resource value: 0x7f010021 471 | public const int multiChoiceItemLayout = 2130772001; 472 | 473 | // aapt resource value: 0x7f0100c8 474 | public const int navigationContentDescription = 2130772168; 475 | 476 | // aapt resource value: 0x7f0100c7 477 | public const int navigationIcon = 2130772167; 478 | 479 | // aapt resource value: 0x7f010004 480 | public const int navigationMode = 2130771972; 481 | 482 | // aapt resource value: 0x7f0100a7 483 | public const int overlapAnchor = 2130772135; 484 | 485 | // aapt resource value: 0x7f0100cd 486 | public const int paddingEnd = 2130772173; 487 | 488 | // aapt resource value: 0x7f0100cc 489 | public const int paddingStart = 2130772172; 490 | 491 | // aapt resource value: 0x7f010072 492 | public const int panelBackground = 2130772082; 493 | 494 | // aapt resource value: 0x7f010074 495 | public const int panelMenuListTheme = 2130772084; 496 | 497 | // aapt resource value: 0x7f010073 498 | public const int panelMenuListWidth = 2130772083; 499 | 500 | // aapt resource value: 0x7f010060 501 | public const int popupMenuStyle = 2130772064; 502 | 503 | // aapt resource value: 0x7f01001b 504 | public const int popupTheme = 2130771995; 505 | 506 | // aapt resource value: 0x7f010061 507 | public const int popupWindowStyle = 2130772065; 508 | 509 | // aapt resource value: 0x7f0100a6 510 | public const int preserveIconSpacing = 2130772134; 511 | 512 | // aapt resource value: 0x7f010013 513 | public const int progressBarPadding = 2130771987; 514 | 515 | // aapt resource value: 0x7f010011 516 | public const int progressBarStyle = 2130771985; 517 | 518 | // aapt resource value: 0x7f0100b4 519 | public const int queryBackground = 2130772148; 520 | 521 | // aapt resource value: 0x7f0100ab 522 | public const int queryHint = 2130772139; 523 | 524 | // aapt resource value: 0x7f01008d 525 | public const int radioButtonStyle = 2130772109; 526 | 527 | // aapt resource value: 0x7f01008e 528 | public const int ratingBarStyle = 2130772110; 529 | 530 | // aapt resource value: 0x7f01008f 531 | public const int ratingBarStyleIndicator = 2130772111; 532 | 533 | // aapt resource value: 0x7f010090 534 | public const int ratingBarStyleSmall = 2130772112; 535 | 536 | // aapt resource value: 0x7f0100b0 537 | public const int searchHintIcon = 2130772144; 538 | 539 | // aapt resource value: 0x7f0100af 540 | public const int searchIcon = 2130772143; 541 | 542 | // aapt resource value: 0x7f010068 543 | public const int searchViewStyle = 2130772072; 544 | 545 | // aapt resource value: 0x7f010091 546 | public const int seekBarStyle = 2130772113; 547 | 548 | // aapt resource value: 0x7f010058 549 | public const int selectableItemBackground = 2130772056; 550 | 551 | // aapt resource value: 0x7f010059 552 | public const int selectableItemBackgroundBorderless = 2130772057; 553 | 554 | // aapt resource value: 0x7f0100a2 555 | public const int showAsAction = 2130772130; 556 | 557 | // aapt resource value: 0x7f0100a0 558 | public const int showDividers = 2130772128; 559 | 560 | // aapt resource value: 0x7f0100bc 561 | public const int showText = 2130772156; 562 | 563 | // aapt resource value: 0x7f010022 564 | public const int singleChoiceItemLayout = 2130772002; 565 | 566 | // aapt resource value: 0x7f010098 567 | public const int spinBars = 2130772120; 568 | 569 | // aapt resource value: 0x7f010053 570 | public const int spinnerDropDownItemStyle = 2130772051; 571 | 572 | // aapt resource value: 0x7f010092 573 | public const int spinnerStyle = 2130772114; 574 | 575 | // aapt resource value: 0x7f0100bb 576 | public const int splitTrack = 2130772155; 577 | 578 | // aapt resource value: 0x7f010024 579 | public const int srcCompat = 2130772004; 580 | 581 | // aapt resource value: 0x7f0100a8 582 | public const int state_above_anchor = 2130772136; 583 | 584 | // aapt resource value: 0x7f0100b5 585 | public const int submitBackground = 2130772149; 586 | 587 | // aapt resource value: 0x7f010006 588 | public const int subtitle = 2130771974; 589 | 590 | // aapt resource value: 0x7f0100be 591 | public const int subtitleTextAppearance = 2130772158; 592 | 593 | // aapt resource value: 0x7f0100cb 594 | public const int subtitleTextColor = 2130772171; 595 | 596 | // aapt resource value: 0x7f010008 597 | public const int subtitleTextStyle = 2130771976; 598 | 599 | // aapt resource value: 0x7f0100b3 600 | public const int suggestionRowLayout = 2130772147; 601 | 602 | // aapt resource value: 0x7f0100b9 603 | public const int switchMinWidth = 2130772153; 604 | 605 | // aapt resource value: 0x7f0100ba 606 | public const int switchPadding = 2130772154; 607 | 608 | // aapt resource value: 0x7f010093 609 | public const int switchStyle = 2130772115; 610 | 611 | // aapt resource value: 0x7f0100b8 612 | public const int switchTextAppearance = 2130772152; 613 | 614 | // aapt resource value: 0x7f010025 615 | public const int textAllCaps = 2130772005; 616 | 617 | // aapt resource value: 0x7f01004c 618 | public const int textAppearanceLargePopupMenu = 2130772044; 619 | 620 | // aapt resource value: 0x7f010070 621 | public const int textAppearanceListItem = 2130772080; 622 | 623 | // aapt resource value: 0x7f010071 624 | public const int textAppearanceListItemSmall = 2130772081; 625 | 626 | // aapt resource value: 0x7f010066 627 | public const int textAppearanceSearchResultSubtitle = 2130772070; 628 | 629 | // aapt resource value: 0x7f010065 630 | public const int textAppearanceSearchResultTitle = 2130772069; 631 | 632 | // aapt resource value: 0x7f01004d 633 | public const int textAppearanceSmallPopupMenu = 2130772045; 634 | 635 | // aapt resource value: 0x7f010083 636 | public const int textColorAlertDialogListItem = 2130772099; 637 | 638 | // aapt resource value: 0x7f010067 639 | public const int textColorSearchUrl = 2130772071; 640 | 641 | // aapt resource value: 0x7f0100ce 642 | public const int theme = 2130772174; 643 | 644 | // aapt resource value: 0x7f01009e 645 | public const int thickness = 2130772126; 646 | 647 | // aapt resource value: 0x7f0100b7 648 | public const int thumbTextPadding = 2130772151; 649 | 650 | // aapt resource value: 0x7f010003 651 | public const int title = 2130771971; 652 | 653 | // aapt resource value: 0x7f0100c3 654 | public const int titleMarginBottom = 2130772163; 655 | 656 | // aapt resource value: 0x7f0100c1 657 | public const int titleMarginEnd = 2130772161; 658 | 659 | // aapt resource value: 0x7f0100c0 660 | public const int titleMarginStart = 2130772160; 661 | 662 | // aapt resource value: 0x7f0100c2 663 | public const int titleMarginTop = 2130772162; 664 | 665 | // aapt resource value: 0x7f0100bf 666 | public const int titleMargins = 2130772159; 667 | 668 | // aapt resource value: 0x7f0100bd 669 | public const int titleTextAppearance = 2130772157; 670 | 671 | // aapt resource value: 0x7f0100ca 672 | public const int titleTextColor = 2130772170; 673 | 674 | // aapt resource value: 0x7f010007 675 | public const int titleTextStyle = 2130771975; 676 | 677 | // aapt resource value: 0x7f01005f 678 | public const int toolbarNavigationButtonStyle = 2130772063; 679 | 680 | // aapt resource value: 0x7f01005e 681 | public const int toolbarStyle = 2130772062; 682 | 683 | // aapt resource value: 0x7f0100b6 684 | public const int track = 2130772150; 685 | 686 | // aapt resource value: 0x7f0100b1 687 | public const int voiceIcon = 2130772145; 688 | 689 | // aapt resource value: 0x7f010026 690 | public const int windowActionBar = 2130772006; 691 | 692 | // aapt resource value: 0x7f010028 693 | public const int windowActionBarOverlay = 2130772008; 694 | 695 | // aapt resource value: 0x7f010029 696 | public const int windowActionModeOverlay = 2130772009; 697 | 698 | // aapt resource value: 0x7f01002d 699 | public const int windowFixedHeightMajor = 2130772013; 700 | 701 | // aapt resource value: 0x7f01002b 702 | public const int windowFixedHeightMinor = 2130772011; 703 | 704 | // aapt resource value: 0x7f01002a 705 | public const int windowFixedWidthMajor = 2130772010; 706 | 707 | // aapt resource value: 0x7f01002c 708 | public const int windowFixedWidthMinor = 2130772012; 709 | 710 | // aapt resource value: 0x7f01002e 711 | public const int windowMinWidthMajor = 2130772014; 712 | 713 | // aapt resource value: 0x7f01002f 714 | public const int windowMinWidthMinor = 2130772015; 715 | 716 | // aapt resource value: 0x7f010027 717 | public const int windowNoTitle = 2130772007; 718 | 719 | static Attribute() 720 | { 721 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 722 | } 723 | 724 | private Attribute() 725 | { 726 | } 727 | } 728 | 729 | public partial class Boolean 730 | { 731 | 732 | // aapt resource value: 0x7f070003 733 | public const int abc_action_bar_embed_tabs = 2131165187; 734 | 735 | // aapt resource value: 0x7f070001 736 | public const int abc_action_bar_embed_tabs_pre_jb = 2131165185; 737 | 738 | // aapt resource value: 0x7f070004 739 | public const int abc_action_bar_expanded_action_views_exclusive = 2131165188; 740 | 741 | // aapt resource value: 0x7f070000 742 | public const int abc_allow_stacked_button_bar = 2131165184; 743 | 744 | // aapt resource value: 0x7f070005 745 | public const int abc_config_actionMenuItemAllCaps = 2131165189; 746 | 747 | // aapt resource value: 0x7f070002 748 | public const int abc_config_allowActionMenuItemTextWithIcon = 2131165186; 749 | 750 | // aapt resource value: 0x7f070006 751 | public const int abc_config_closeDialogWhenTouchOutside = 2131165190; 752 | 753 | // aapt resource value: 0x7f070007 754 | public const int abc_config_showMenuShortcutsWhenKeyboardPresent = 2131165191; 755 | 756 | static Boolean() 757 | { 758 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 759 | } 760 | 761 | private Boolean() 762 | { 763 | } 764 | } 765 | 766 | public partial class Color 767 | { 768 | 769 | // aapt resource value: 0x7f0b003d 770 | public const int abc_background_cache_hint_selector_material_dark = 2131427389; 771 | 772 | // aapt resource value: 0x7f0b003e 773 | public const int abc_background_cache_hint_selector_material_light = 2131427390; 774 | 775 | // aapt resource value: 0x7f0b003f 776 | public const int abc_color_highlight_material = 2131427391; 777 | 778 | // aapt resource value: 0x7f0b0000 779 | public const int abc_input_method_navigation_guard = 2131427328; 780 | 781 | // aapt resource value: 0x7f0b0040 782 | public const int abc_primary_text_disable_only_material_dark = 2131427392; 783 | 784 | // aapt resource value: 0x7f0b0041 785 | public const int abc_primary_text_disable_only_material_light = 2131427393; 786 | 787 | // aapt resource value: 0x7f0b0042 788 | public const int abc_primary_text_material_dark = 2131427394; 789 | 790 | // aapt resource value: 0x7f0b0043 791 | public const int abc_primary_text_material_light = 2131427395; 792 | 793 | // aapt resource value: 0x7f0b0044 794 | public const int abc_search_url_text = 2131427396; 795 | 796 | // aapt resource value: 0x7f0b0001 797 | public const int abc_search_url_text_normal = 2131427329; 798 | 799 | // aapt resource value: 0x7f0b0002 800 | public const int abc_search_url_text_pressed = 2131427330; 801 | 802 | // aapt resource value: 0x7f0b0003 803 | public const int abc_search_url_text_selected = 2131427331; 804 | 805 | // aapt resource value: 0x7f0b0045 806 | public const int abc_secondary_text_material_dark = 2131427397; 807 | 808 | // aapt resource value: 0x7f0b0046 809 | public const int abc_secondary_text_material_light = 2131427398; 810 | 811 | // aapt resource value: 0x7f0b0004 812 | public const int accent_material_dark = 2131427332; 813 | 814 | // aapt resource value: 0x7f0b0005 815 | public const int accent_material_light = 2131427333; 816 | 817 | // aapt resource value: 0x7f0b0006 818 | public const int background_floating_material_dark = 2131427334; 819 | 820 | // aapt resource value: 0x7f0b0007 821 | public const int background_floating_material_light = 2131427335; 822 | 823 | // aapt resource value: 0x7f0b0008 824 | public const int background_material_dark = 2131427336; 825 | 826 | // aapt resource value: 0x7f0b0009 827 | public const int background_material_light = 2131427337; 828 | 829 | // aapt resource value: 0x7f0b000a 830 | public const int bright_foreground_disabled_material_dark = 2131427338; 831 | 832 | // aapt resource value: 0x7f0b000b 833 | public const int bright_foreground_disabled_material_light = 2131427339; 834 | 835 | // aapt resource value: 0x7f0b000c 836 | public const int bright_foreground_inverse_material_dark = 2131427340; 837 | 838 | // aapt resource value: 0x7f0b000d 839 | public const int bright_foreground_inverse_material_light = 2131427341; 840 | 841 | // aapt resource value: 0x7f0b000e 842 | public const int bright_foreground_material_dark = 2131427342; 843 | 844 | // aapt resource value: 0x7f0b000f 845 | public const int bright_foreground_material_light = 2131427343; 846 | 847 | // aapt resource value: 0x7f0b0010 848 | public const int button_material_dark = 2131427344; 849 | 850 | // aapt resource value: 0x7f0b0011 851 | public const int button_material_light = 2131427345; 852 | 853 | // aapt resource value: 0x7f0b003c 854 | public const int colorAccent = 2131427388; 855 | 856 | // aapt resource value: 0x7f0b003a 857 | public const int colorPrimary = 2131427386; 858 | 859 | // aapt resource value: 0x7f0b003b 860 | public const int colorPrimaryDark = 2131427387; 861 | 862 | // aapt resource value: 0x7f0b0012 863 | public const int dim_foreground_disabled_material_dark = 2131427346; 864 | 865 | // aapt resource value: 0x7f0b0013 866 | public const int dim_foreground_disabled_material_light = 2131427347; 867 | 868 | // aapt resource value: 0x7f0b0014 869 | public const int dim_foreground_material_dark = 2131427348; 870 | 871 | // aapt resource value: 0x7f0b0015 872 | public const int dim_foreground_material_light = 2131427349; 873 | 874 | // aapt resource value: 0x7f0b0016 875 | public const int foreground_material_dark = 2131427350; 876 | 877 | // aapt resource value: 0x7f0b0017 878 | public const int foreground_material_light = 2131427351; 879 | 880 | // aapt resource value: 0x7f0b0018 881 | public const int highlighted_text_material_dark = 2131427352; 882 | 883 | // aapt resource value: 0x7f0b0019 884 | public const int highlighted_text_material_light = 2131427353; 885 | 886 | // aapt resource value: 0x7f0b001a 887 | public const int hint_foreground_material_dark = 2131427354; 888 | 889 | // aapt resource value: 0x7f0b001b 890 | public const int hint_foreground_material_light = 2131427355; 891 | 892 | // aapt resource value: 0x7f0b001c 893 | public const int material_blue_grey_800 = 2131427356; 894 | 895 | // aapt resource value: 0x7f0b001d 896 | public const int material_blue_grey_900 = 2131427357; 897 | 898 | // aapt resource value: 0x7f0b001e 899 | public const int material_blue_grey_950 = 2131427358; 900 | 901 | // aapt resource value: 0x7f0b001f 902 | public const int material_deep_teal_200 = 2131427359; 903 | 904 | // aapt resource value: 0x7f0b0020 905 | public const int material_deep_teal_500 = 2131427360; 906 | 907 | // aapt resource value: 0x7f0b0021 908 | public const int material_grey_100 = 2131427361; 909 | 910 | // aapt resource value: 0x7f0b0022 911 | public const int material_grey_300 = 2131427362; 912 | 913 | // aapt resource value: 0x7f0b0023 914 | public const int material_grey_50 = 2131427363; 915 | 916 | // aapt resource value: 0x7f0b0024 917 | public const int material_grey_600 = 2131427364; 918 | 919 | // aapt resource value: 0x7f0b0025 920 | public const int material_grey_800 = 2131427365; 921 | 922 | // aapt resource value: 0x7f0b0026 923 | public const int material_grey_850 = 2131427366; 924 | 925 | // aapt resource value: 0x7f0b0027 926 | public const int material_grey_900 = 2131427367; 927 | 928 | // aapt resource value: 0x7f0b0047 929 | public const int menu_text_color = 2131427399; 930 | 931 | // aapt resource value: 0x7f0b0028 932 | public const int primary_dark_material_dark = 2131427368; 933 | 934 | // aapt resource value: 0x7f0b0029 935 | public const int primary_dark_material_light = 2131427369; 936 | 937 | // aapt resource value: 0x7f0b002a 938 | public const int primary_material_dark = 2131427370; 939 | 940 | // aapt resource value: 0x7f0b002b 941 | public const int primary_material_light = 2131427371; 942 | 943 | // aapt resource value: 0x7f0b002c 944 | public const int primary_text_default_material_dark = 2131427372; 945 | 946 | // aapt resource value: 0x7f0b002d 947 | public const int primary_text_default_material_light = 2131427373; 948 | 949 | // aapt resource value: 0x7f0b002e 950 | public const int primary_text_disabled_material_dark = 2131427374; 951 | 952 | // aapt resource value: 0x7f0b002f 953 | public const int primary_text_disabled_material_light = 2131427375; 954 | 955 | // aapt resource value: 0x7f0b0030 956 | public const int ripple_material_dark = 2131427376; 957 | 958 | // aapt resource value: 0x7f0b0031 959 | public const int ripple_material_light = 2131427377; 960 | 961 | // aapt resource value: 0x7f0b0032 962 | public const int secondary_text_default_material_dark = 2131427378; 963 | 964 | // aapt resource value: 0x7f0b0033 965 | public const int secondary_text_default_material_light = 2131427379; 966 | 967 | // aapt resource value: 0x7f0b0034 968 | public const int secondary_text_disabled_material_dark = 2131427380; 969 | 970 | // aapt resource value: 0x7f0b0035 971 | public const int secondary_text_disabled_material_light = 2131427381; 972 | 973 | // aapt resource value: 0x7f0b0036 974 | public const int switch_thumb_disabled_material_dark = 2131427382; 975 | 976 | // aapt resource value: 0x7f0b0037 977 | public const int switch_thumb_disabled_material_light = 2131427383; 978 | 979 | // aapt resource value: 0x7f0b0048 980 | public const int switch_thumb_material_dark = 2131427400; 981 | 982 | // aapt resource value: 0x7f0b0049 983 | public const int switch_thumb_material_light = 2131427401; 984 | 985 | // aapt resource value: 0x7f0b0038 986 | public const int switch_thumb_normal_material_dark = 2131427384; 987 | 988 | // aapt resource value: 0x7f0b0039 989 | public const int switch_thumb_normal_material_light = 2131427385; 990 | 991 | static Color() 992 | { 993 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 994 | } 995 | 996 | private Color() 997 | { 998 | } 999 | } 1000 | 1001 | public partial class Dimension 1002 | { 1003 | 1004 | // aapt resource value: 0x7f08000d 1005 | public const int abc_action_bar_content_inset_material = 2131230733; 1006 | 1007 | // aapt resource value: 0x7f080001 1008 | public const int abc_action_bar_default_height_material = 2131230721; 1009 | 1010 | // aapt resource value: 0x7f08000e 1011 | public const int abc_action_bar_default_padding_end_material = 2131230734; 1012 | 1013 | // aapt resource value: 0x7f08000f 1014 | public const int abc_action_bar_default_padding_start_material = 2131230735; 1015 | 1016 | // aapt resource value: 0x7f080011 1017 | public const int abc_action_bar_icon_vertical_padding_material = 2131230737; 1018 | 1019 | // aapt resource value: 0x7f080012 1020 | public const int abc_action_bar_overflow_padding_end_material = 2131230738; 1021 | 1022 | // aapt resource value: 0x7f080013 1023 | public const int abc_action_bar_overflow_padding_start_material = 2131230739; 1024 | 1025 | // aapt resource value: 0x7f080002 1026 | public const int abc_action_bar_progress_bar_size = 2131230722; 1027 | 1028 | // aapt resource value: 0x7f080014 1029 | public const int abc_action_bar_stacked_max_height = 2131230740; 1030 | 1031 | // aapt resource value: 0x7f080015 1032 | public const int abc_action_bar_stacked_tab_max_width = 2131230741; 1033 | 1034 | // aapt resource value: 0x7f080016 1035 | public const int abc_action_bar_subtitle_bottom_margin_material = 2131230742; 1036 | 1037 | // aapt resource value: 0x7f080017 1038 | public const int abc_action_bar_subtitle_top_margin_material = 2131230743; 1039 | 1040 | // aapt resource value: 0x7f080018 1041 | public const int abc_action_button_min_height_material = 2131230744; 1042 | 1043 | // aapt resource value: 0x7f080019 1044 | public const int abc_action_button_min_width_material = 2131230745; 1045 | 1046 | // aapt resource value: 0x7f08001a 1047 | public const int abc_action_button_min_width_overflow_material = 2131230746; 1048 | 1049 | // aapt resource value: 0x7f080000 1050 | public const int abc_alert_dialog_button_bar_height = 2131230720; 1051 | 1052 | // aapt resource value: 0x7f08001b 1053 | public const int abc_button_inset_horizontal_material = 2131230747; 1054 | 1055 | // aapt resource value: 0x7f08001c 1056 | public const int abc_button_inset_vertical_material = 2131230748; 1057 | 1058 | // aapt resource value: 0x7f08001d 1059 | public const int abc_button_padding_horizontal_material = 2131230749; 1060 | 1061 | // aapt resource value: 0x7f08001e 1062 | public const int abc_button_padding_vertical_material = 2131230750; 1063 | 1064 | // aapt resource value: 0x7f080005 1065 | public const int abc_config_prefDialogWidth = 2131230725; 1066 | 1067 | // aapt resource value: 0x7f08001f 1068 | public const int abc_control_corner_material = 2131230751; 1069 | 1070 | // aapt resource value: 0x7f080020 1071 | public const int abc_control_inset_material = 2131230752; 1072 | 1073 | // aapt resource value: 0x7f080021 1074 | public const int abc_control_padding_material = 2131230753; 1075 | 1076 | // aapt resource value: 0x7f080006 1077 | public const int abc_dialog_fixed_height_major = 2131230726; 1078 | 1079 | // aapt resource value: 0x7f080007 1080 | public const int abc_dialog_fixed_height_minor = 2131230727; 1081 | 1082 | // aapt resource value: 0x7f080008 1083 | public const int abc_dialog_fixed_width_major = 2131230728; 1084 | 1085 | // aapt resource value: 0x7f080009 1086 | public const int abc_dialog_fixed_width_minor = 2131230729; 1087 | 1088 | // aapt resource value: 0x7f080022 1089 | public const int abc_dialog_list_padding_vertical_material = 2131230754; 1090 | 1091 | // aapt resource value: 0x7f08000a 1092 | public const int abc_dialog_min_width_major = 2131230730; 1093 | 1094 | // aapt resource value: 0x7f08000b 1095 | public const int abc_dialog_min_width_minor = 2131230731; 1096 | 1097 | // aapt resource value: 0x7f080023 1098 | public const int abc_dialog_padding_material = 2131230755; 1099 | 1100 | // aapt resource value: 0x7f080024 1101 | public const int abc_dialog_padding_top_material = 2131230756; 1102 | 1103 | // aapt resource value: 0x7f080025 1104 | public const int abc_disabled_alpha_material_dark = 2131230757; 1105 | 1106 | // aapt resource value: 0x7f080026 1107 | public const int abc_disabled_alpha_material_light = 2131230758; 1108 | 1109 | // aapt resource value: 0x7f080027 1110 | public const int abc_dropdownitem_icon_width = 2131230759; 1111 | 1112 | // aapt resource value: 0x7f080028 1113 | public const int abc_dropdownitem_text_padding_left = 2131230760; 1114 | 1115 | // aapt resource value: 0x7f080029 1116 | public const int abc_dropdownitem_text_padding_right = 2131230761; 1117 | 1118 | // aapt resource value: 0x7f08002a 1119 | public const int abc_edit_text_inset_bottom_material = 2131230762; 1120 | 1121 | // aapt resource value: 0x7f08002b 1122 | public const int abc_edit_text_inset_horizontal_material = 2131230763; 1123 | 1124 | // aapt resource value: 0x7f08002c 1125 | public const int abc_edit_text_inset_top_material = 2131230764; 1126 | 1127 | // aapt resource value: 0x7f08002d 1128 | public const int abc_floating_window_z = 2131230765; 1129 | 1130 | // aapt resource value: 0x7f08002e 1131 | public const int abc_list_item_padding_horizontal_material = 2131230766; 1132 | 1133 | // aapt resource value: 0x7f08002f 1134 | public const int abc_panel_menu_list_width = 2131230767; 1135 | 1136 | // aapt resource value: 0x7f080030 1137 | public const int abc_search_view_preferred_width = 2131230768; 1138 | 1139 | // aapt resource value: 0x7f08000c 1140 | public const int abc_search_view_text_min_width = 2131230732; 1141 | 1142 | // aapt resource value: 0x7f080031 1143 | public const int abc_seekbar_track_background_height_material = 2131230769; 1144 | 1145 | // aapt resource value: 0x7f080032 1146 | public const int abc_seekbar_track_progress_height_material = 2131230770; 1147 | 1148 | // aapt resource value: 0x7f080033 1149 | public const int abc_select_dialog_padding_start_material = 2131230771; 1150 | 1151 | // aapt resource value: 0x7f080010 1152 | public const int abc_switch_padding = 2131230736; 1153 | 1154 | // aapt resource value: 0x7f080034 1155 | public const int abc_text_size_body_1_material = 2131230772; 1156 | 1157 | // aapt resource value: 0x7f080035 1158 | public const int abc_text_size_body_2_material = 2131230773; 1159 | 1160 | // aapt resource value: 0x7f080036 1161 | public const int abc_text_size_button_material = 2131230774; 1162 | 1163 | // aapt resource value: 0x7f080037 1164 | public const int abc_text_size_caption_material = 2131230775; 1165 | 1166 | // aapt resource value: 0x7f080038 1167 | public const int abc_text_size_display_1_material = 2131230776; 1168 | 1169 | // aapt resource value: 0x7f080039 1170 | public const int abc_text_size_display_2_material = 2131230777; 1171 | 1172 | // aapt resource value: 0x7f08003a 1173 | public const int abc_text_size_display_3_material = 2131230778; 1174 | 1175 | // aapt resource value: 0x7f08003b 1176 | public const int abc_text_size_display_4_material = 2131230779; 1177 | 1178 | // aapt resource value: 0x7f08003c 1179 | public const int abc_text_size_headline_material = 2131230780; 1180 | 1181 | // aapt resource value: 0x7f08003d 1182 | public const int abc_text_size_large_material = 2131230781; 1183 | 1184 | // aapt resource value: 0x7f08003e 1185 | public const int abc_text_size_medium_material = 2131230782; 1186 | 1187 | // aapt resource value: 0x7f08003f 1188 | public const int abc_text_size_menu_material = 2131230783; 1189 | 1190 | // aapt resource value: 0x7f080040 1191 | public const int abc_text_size_small_material = 2131230784; 1192 | 1193 | // aapt resource value: 0x7f080041 1194 | public const int abc_text_size_subhead_material = 2131230785; 1195 | 1196 | // aapt resource value: 0x7f080003 1197 | public const int abc_text_size_subtitle_material_toolbar = 2131230723; 1198 | 1199 | // aapt resource value: 0x7f080042 1200 | public const int abc_text_size_title_material = 2131230786; 1201 | 1202 | // aapt resource value: 0x7f080004 1203 | public const int abc_text_size_title_material_toolbar = 2131230724; 1204 | 1205 | // aapt resource value: 0x7f08004b 1206 | public const int activity_horizontal_margin = 2131230795; 1207 | 1208 | // aapt resource value: 0x7f08004c 1209 | public const int activity_vertical_margin = 2131230796; 1210 | 1211 | // aapt resource value: 0x7f080043 1212 | public const int disabled_alpha_material_dark = 2131230787; 1213 | 1214 | // aapt resource value: 0x7f080044 1215 | public const int disabled_alpha_material_light = 2131230788; 1216 | 1217 | // aapt resource value: 0x7f080045 1218 | public const int highlight_alpha_material_colored = 2131230789; 1219 | 1220 | // aapt resource value: 0x7f080046 1221 | public const int highlight_alpha_material_dark = 2131230790; 1222 | 1223 | // aapt resource value: 0x7f080047 1224 | public const int highlight_alpha_material_light = 2131230791; 1225 | 1226 | // aapt resource value: 0x7f080048 1227 | public const int notification_large_icon_height = 2131230792; 1228 | 1229 | // aapt resource value: 0x7f080049 1230 | public const int notification_large_icon_width = 2131230793; 1231 | 1232 | // aapt resource value: 0x7f08004a 1233 | public const int notification_subtext_size = 2131230794; 1234 | 1235 | // aapt resource value: 0x7f08004d 1236 | public const int spacing = 2131230797; 1237 | 1238 | static Dimension() 1239 | { 1240 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1241 | } 1242 | 1243 | private Dimension() 1244 | { 1245 | } 1246 | } 1247 | 1248 | public partial class Drawable 1249 | { 1250 | 1251 | // aapt resource value: 0x7f020000 1252 | public const int abc_ab_share_pack_mtrl_alpha = 2130837504; 1253 | 1254 | // aapt resource value: 0x7f020001 1255 | public const int abc_action_bar_item_background_material = 2130837505; 1256 | 1257 | // aapt resource value: 0x7f020002 1258 | public const int abc_btn_borderless_material = 2130837506; 1259 | 1260 | // aapt resource value: 0x7f020003 1261 | public const int abc_btn_check_material = 2130837507; 1262 | 1263 | // aapt resource value: 0x7f020004 1264 | public const int abc_btn_check_to_on_mtrl_000 = 2130837508; 1265 | 1266 | // aapt resource value: 0x7f020005 1267 | public const int abc_btn_check_to_on_mtrl_015 = 2130837509; 1268 | 1269 | // aapt resource value: 0x7f020006 1270 | public const int abc_btn_colored_material = 2130837510; 1271 | 1272 | // aapt resource value: 0x7f020007 1273 | public const int abc_btn_default_mtrl_shape = 2130837511; 1274 | 1275 | // aapt resource value: 0x7f020008 1276 | public const int abc_btn_radio_material = 2130837512; 1277 | 1278 | // aapt resource value: 0x7f020009 1279 | public const int abc_btn_radio_to_on_mtrl_000 = 2130837513; 1280 | 1281 | // aapt resource value: 0x7f02000a 1282 | public const int abc_btn_radio_to_on_mtrl_015 = 2130837514; 1283 | 1284 | // aapt resource value: 0x7f02000b 1285 | public const int abc_btn_rating_star_off_mtrl_alpha = 2130837515; 1286 | 1287 | // aapt resource value: 0x7f02000c 1288 | public const int abc_btn_rating_star_on_mtrl_alpha = 2130837516; 1289 | 1290 | // aapt resource value: 0x7f02000d 1291 | public const int abc_btn_switch_to_on_mtrl_00001 = 2130837517; 1292 | 1293 | // aapt resource value: 0x7f02000e 1294 | public const int abc_btn_switch_to_on_mtrl_00012 = 2130837518; 1295 | 1296 | // aapt resource value: 0x7f02000f 1297 | public const int abc_cab_background_internal_bg = 2130837519; 1298 | 1299 | // aapt resource value: 0x7f020010 1300 | public const int abc_cab_background_top_material = 2130837520; 1301 | 1302 | // aapt resource value: 0x7f020011 1303 | public const int abc_cab_background_top_mtrl_alpha = 2130837521; 1304 | 1305 | // aapt resource value: 0x7f020012 1306 | public const int abc_control_background_material = 2130837522; 1307 | 1308 | // aapt resource value: 0x7f020013 1309 | public const int abc_dialog_material_background_dark = 2130837523; 1310 | 1311 | // aapt resource value: 0x7f020014 1312 | public const int abc_dialog_material_background_light = 2130837524; 1313 | 1314 | // aapt resource value: 0x7f020015 1315 | public const int abc_edit_text_material = 2130837525; 1316 | 1317 | // aapt resource value: 0x7f020016 1318 | public const int abc_ic_ab_back_mtrl_am_alpha = 2130837526; 1319 | 1320 | // aapt resource value: 0x7f020017 1321 | public const int abc_ic_clear_mtrl_alpha = 2130837527; 1322 | 1323 | // aapt resource value: 0x7f020018 1324 | public const int abc_ic_commit_search_api_mtrl_alpha = 2130837528; 1325 | 1326 | // aapt resource value: 0x7f020019 1327 | public const int abc_ic_go_search_api_mtrl_alpha = 2130837529; 1328 | 1329 | // aapt resource value: 0x7f02001a 1330 | public const int abc_ic_menu_copy_mtrl_am_alpha = 2130837530; 1331 | 1332 | // aapt resource value: 0x7f02001b 1333 | public const int abc_ic_menu_cut_mtrl_alpha = 2130837531; 1334 | 1335 | // aapt resource value: 0x7f02001c 1336 | public const int abc_ic_menu_moreoverflow_mtrl_alpha = 2130837532; 1337 | 1338 | // aapt resource value: 0x7f02001d 1339 | public const int abc_ic_menu_paste_mtrl_am_alpha = 2130837533; 1340 | 1341 | // aapt resource value: 0x7f02001e 1342 | public const int abc_ic_menu_selectall_mtrl_alpha = 2130837534; 1343 | 1344 | // aapt resource value: 0x7f02001f 1345 | public const int abc_ic_menu_share_mtrl_alpha = 2130837535; 1346 | 1347 | // aapt resource value: 0x7f020020 1348 | public const int abc_ic_search_api_mtrl_alpha = 2130837536; 1349 | 1350 | // aapt resource value: 0x7f020021 1351 | public const int abc_ic_star_black_16dp = 2130837537; 1352 | 1353 | // aapt resource value: 0x7f020022 1354 | public const int abc_ic_star_black_36dp = 2130837538; 1355 | 1356 | // aapt resource value: 0x7f020023 1357 | public const int abc_ic_star_half_black_16dp = 2130837539; 1358 | 1359 | // aapt resource value: 0x7f020024 1360 | public const int abc_ic_star_half_black_36dp = 2130837540; 1361 | 1362 | // aapt resource value: 0x7f020025 1363 | public const int abc_ic_voice_search_api_mtrl_alpha = 2130837541; 1364 | 1365 | // aapt resource value: 0x7f020026 1366 | public const int abc_item_background_holo_dark = 2130837542; 1367 | 1368 | // aapt resource value: 0x7f020027 1369 | public const int abc_item_background_holo_light = 2130837543; 1370 | 1371 | // aapt resource value: 0x7f020028 1372 | public const int abc_list_divider_mtrl_alpha = 2130837544; 1373 | 1374 | // aapt resource value: 0x7f020029 1375 | public const int abc_list_focused_holo = 2130837545; 1376 | 1377 | // aapt resource value: 0x7f02002a 1378 | public const int abc_list_longpressed_holo = 2130837546; 1379 | 1380 | // aapt resource value: 0x7f02002b 1381 | public const int abc_list_pressed_holo_dark = 2130837547; 1382 | 1383 | // aapt resource value: 0x7f02002c 1384 | public const int abc_list_pressed_holo_light = 2130837548; 1385 | 1386 | // aapt resource value: 0x7f02002d 1387 | public const int abc_list_selector_background_transition_holo_dark = 2130837549; 1388 | 1389 | // aapt resource value: 0x7f02002e 1390 | public const int abc_list_selector_background_transition_holo_light = 2130837550; 1391 | 1392 | // aapt resource value: 0x7f02002f 1393 | public const int abc_list_selector_disabled_holo_dark = 2130837551; 1394 | 1395 | // aapt resource value: 0x7f020030 1396 | public const int abc_list_selector_disabled_holo_light = 2130837552; 1397 | 1398 | // aapt resource value: 0x7f020031 1399 | public const int abc_list_selector_holo_dark = 2130837553; 1400 | 1401 | // aapt resource value: 0x7f020032 1402 | public const int abc_list_selector_holo_light = 2130837554; 1403 | 1404 | // aapt resource value: 0x7f020033 1405 | public const int abc_menu_hardkey_panel_mtrl_mult = 2130837555; 1406 | 1407 | // aapt resource value: 0x7f020034 1408 | public const int abc_popup_background_mtrl_mult = 2130837556; 1409 | 1410 | // aapt resource value: 0x7f020035 1411 | public const int abc_ratingbar_full_material = 2130837557; 1412 | 1413 | // aapt resource value: 0x7f020036 1414 | public const int abc_ratingbar_indicator_material = 2130837558; 1415 | 1416 | // aapt resource value: 0x7f020037 1417 | public const int abc_ratingbar_small_material = 2130837559; 1418 | 1419 | // aapt resource value: 0x7f020038 1420 | public const int abc_scrubber_control_off_mtrl_alpha = 2130837560; 1421 | 1422 | // aapt resource value: 0x7f020039 1423 | public const int abc_scrubber_control_to_pressed_mtrl_000 = 2130837561; 1424 | 1425 | // aapt resource value: 0x7f02003a 1426 | public const int abc_scrubber_control_to_pressed_mtrl_005 = 2130837562; 1427 | 1428 | // aapt resource value: 0x7f02003b 1429 | public const int abc_scrubber_primary_mtrl_alpha = 2130837563; 1430 | 1431 | // aapt resource value: 0x7f02003c 1432 | public const int abc_scrubber_track_mtrl_alpha = 2130837564; 1433 | 1434 | // aapt resource value: 0x7f02003d 1435 | public const int abc_seekbar_thumb_material = 2130837565; 1436 | 1437 | // aapt resource value: 0x7f02003e 1438 | public const int abc_seekbar_track_material = 2130837566; 1439 | 1440 | // aapt resource value: 0x7f02003f 1441 | public const int abc_spinner_mtrl_am_alpha = 2130837567; 1442 | 1443 | // aapt resource value: 0x7f020040 1444 | public const int abc_spinner_textfield_background_material = 2130837568; 1445 | 1446 | // aapt resource value: 0x7f020041 1447 | public const int abc_switch_thumb_material = 2130837569; 1448 | 1449 | // aapt resource value: 0x7f020042 1450 | public const int abc_switch_track_mtrl_alpha = 2130837570; 1451 | 1452 | // aapt resource value: 0x7f020043 1453 | public const int abc_tab_indicator_material = 2130837571; 1454 | 1455 | // aapt resource value: 0x7f020044 1456 | public const int abc_tab_indicator_mtrl_alpha = 2130837572; 1457 | 1458 | // aapt resource value: 0x7f020045 1459 | public const int abc_text_cursor_material = 2130837573; 1460 | 1461 | // aapt resource value: 0x7f020046 1462 | public const int abc_textfield_activated_mtrl_alpha = 2130837574; 1463 | 1464 | // aapt resource value: 0x7f020047 1465 | public const int abc_textfield_default_mtrl_alpha = 2130837575; 1466 | 1467 | // aapt resource value: 0x7f020048 1468 | public const int abc_textfield_search_activated_mtrl_alpha = 2130837576; 1469 | 1470 | // aapt resource value: 0x7f020049 1471 | public const int abc_textfield_search_default_mtrl_alpha = 2130837577; 1472 | 1473 | // aapt resource value: 0x7f02004a 1474 | public const int abc_textfield_search_material = 2130837578; 1475 | 1476 | // aapt resource value: 0x7f02004b 1477 | public const int bg_right_bar = 2130837579; 1478 | 1479 | // aapt resource value: 0x7f02004c 1480 | public const int circle = 2130837580; 1481 | 1482 | // aapt resource value: 0x7f02004d 1483 | public const int coupon = 2130837581; 1484 | 1485 | // aapt resource value: 0x7f02004e 1486 | public const int fake = 2130837582; 1487 | 1488 | // aapt resource value: 0x7f02004f 1489 | public const int friends = 2130837583; 1490 | 1491 | // aapt resource value: 0x7f020050 1492 | public const int home = 2130837584; 1493 | 1494 | // aapt resource value: 0x7f020051 1495 | public const int me = 2130837585; 1496 | 1497 | // aapt resource value: 0x7f020054 1498 | public const int notification_template_icon_bg = 2130837588; 1499 | 1500 | // aapt resource value: 0x7f020052 1501 | public const int settings = 2130837586; 1502 | 1503 | // aapt resource value: 0x7f020053 1504 | public const int wallet = 2130837587; 1505 | 1506 | static Drawable() 1507 | { 1508 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1509 | } 1510 | 1511 | private Drawable() 1512 | { 1513 | } 1514 | } 1515 | 1516 | public partial class Id 1517 | { 1518 | 1519 | // aapt resource value: 0x7f0c0055 1520 | public const int action0 = 2131492949; 1521 | 1522 | // aapt resource value: 0x7f0c0041 1523 | public const int action_bar = 2131492929; 1524 | 1525 | // aapt resource value: 0x7f0c0000 1526 | public const int action_bar_activity_content = 2131492864; 1527 | 1528 | // aapt resource value: 0x7f0c0040 1529 | public const int action_bar_container = 2131492928; 1530 | 1531 | // aapt resource value: 0x7f0c003c 1532 | public const int action_bar_root = 2131492924; 1533 | 1534 | // aapt resource value: 0x7f0c0001 1535 | public const int action_bar_spinner = 2131492865; 1536 | 1537 | // aapt resource value: 0x7f0c0022 1538 | public const int action_bar_subtitle = 2131492898; 1539 | 1540 | // aapt resource value: 0x7f0c0021 1541 | public const int action_bar_title = 2131492897; 1542 | 1543 | // aapt resource value: 0x7f0c0042 1544 | public const int action_context_bar = 2131492930; 1545 | 1546 | // aapt resource value: 0x7f0c0059 1547 | public const int action_divider = 2131492953; 1548 | 1549 | // aapt resource value: 0x7f0c0002 1550 | public const int action_menu_divider = 2131492866; 1551 | 1552 | // aapt resource value: 0x7f0c0003 1553 | public const int action_menu_presenter = 2131492867; 1554 | 1555 | // aapt resource value: 0x7f0c003e 1556 | public const int action_mode_bar = 2131492926; 1557 | 1558 | // aapt resource value: 0x7f0c003d 1559 | public const int action_mode_bar_stub = 2131492925; 1560 | 1561 | // aapt resource value: 0x7f0c0023 1562 | public const int action_mode_close_button = 2131492899; 1563 | 1564 | // aapt resource value: 0x7f0c0024 1565 | public const int activity_chooser_view_content = 2131492900; 1566 | 1567 | // aapt resource value: 0x7f0c0030 1568 | public const int alertTitle = 2131492912; 1569 | 1570 | // aapt resource value: 0x7f0c001c 1571 | public const int always = 2131492892; 1572 | 1573 | // aapt resource value: 0x7f0c0019 1574 | public const int beginning = 2131492889; 1575 | 1576 | // aapt resource value: 0x7f0c002b 1577 | public const int buttonPanel = 2131492907; 1578 | 1579 | // aapt resource value: 0x7f0c0056 1580 | public const int cancel_action = 2131492950; 1581 | 1582 | // aapt resource value: 0x7f0c0039 1583 | public const int checkbox = 2131492921; 1584 | 1585 | // aapt resource value: 0x7f0c005c 1586 | public const int chronometer = 2131492956; 1587 | 1588 | // aapt resource value: 0x7f0c001d 1589 | public const int collapseActionView = 2131492893; 1590 | 1591 | // aapt resource value: 0x7f0c0031 1592 | public const int contentPanel = 2131492913; 1593 | 1594 | // aapt resource value: 0x7f0c0037 1595 | public const int custom = 2131492919; 1596 | 1597 | // aapt resource value: 0x7f0c0036 1598 | public const int customPanel = 2131492918; 1599 | 1600 | // aapt resource value: 0x7f0c003f 1601 | public const int decor_content_parent = 2131492927; 1602 | 1603 | // aapt resource value: 0x7f0c0027 1604 | public const int default_activity_button = 2131492903; 1605 | 1606 | // aapt resource value: 0x7f0c000c 1607 | public const int disableHome = 2131492876; 1608 | 1609 | // aapt resource value: 0x7f0c0050 1610 | public const int drawerLayout = 2131492944; 1611 | 1612 | // aapt resource value: 0x7f0c0043 1613 | public const int edit_query = 2131492931; 1614 | 1615 | // aapt resource value: 0x7f0c001a 1616 | public const int end = 2131492890; 1617 | 1618 | // aapt resource value: 0x7f0c0061 1619 | public const int end_padder = 2131492961; 1620 | 1621 | // aapt resource value: 0x7f0c0025 1622 | public const int expand_activities_button = 2131492901; 1623 | 1624 | // aapt resource value: 0x7f0c0038 1625 | public const int expanded_menu = 2131492920; 1626 | 1627 | // aapt resource value: 0x7f0c0004 1628 | public const int home = 2131492868; 1629 | 1630 | // aapt resource value: 0x7f0c000d 1631 | public const int homeAsUp = 2131492877; 1632 | 1633 | // aapt resource value: 0x7f0c0029 1634 | public const int icon = 2131492905; 1635 | 1636 | // aapt resource value: 0x7f0c001e 1637 | public const int ifRoom = 2131492894; 1638 | 1639 | // aapt resource value: 0x7f0c0026 1640 | public const int image = 2131492902; 1641 | 1642 | // aapt resource value: 0x7f0c0060 1643 | public const int info = 2131492960; 1644 | 1645 | // aapt resource value: 0x7f0c0051 1646 | public const int leftSideBar = 2131492945; 1647 | 1648 | // aapt resource value: 0x7f0c005a 1649 | public const int line1 = 2131492954; 1650 | 1651 | // aapt resource value: 0x7f0c005e 1652 | public const int line3 = 2131492958; 1653 | 1654 | // aapt resource value: 0x7f0c0009 1655 | public const int listMode = 2131492873; 1656 | 1657 | // aapt resource value: 0x7f0c0028 1658 | public const int list_item = 2131492904; 1659 | 1660 | // aapt resource value: 0x7f0c0058 1661 | public const int media_actions = 2131492952; 1662 | 1663 | // aapt resource value: 0x7f0c001b 1664 | public const int middle = 2131492891; 1665 | 1666 | // aapt resource value: 0x7f0c0014 1667 | public const int multiply = 2131492884; 1668 | 1669 | // aapt resource value: 0x7f0c001f 1670 | public const int never = 2131492895; 1671 | 1672 | // aapt resource value: 0x7f0c000e 1673 | public const int none = 2131492878; 1674 | 1675 | // aapt resource value: 0x7f0c000a 1676 | public const int normal = 2131492874; 1677 | 1678 | // aapt resource value: 0x7f0c002d 1679 | public const int parentPanel = 2131492909; 1680 | 1681 | // aapt resource value: 0x7f0c0005 1682 | public const int progress_circular = 2131492869; 1683 | 1684 | // aapt resource value: 0x7f0c0006 1685 | public const int progress_horizontal = 2131492870; 1686 | 1687 | // aapt resource value: 0x7f0c003b 1688 | public const int radio = 2131492923; 1689 | 1690 | // aapt resource value: 0x7f0c0053 1691 | public const int rightSideBar = 2131492947; 1692 | 1693 | // aapt resource value: 0x7f0c0015 1694 | public const int screen = 2131492885; 1695 | 1696 | // aapt resource value: 0x7f0c0035 1697 | public const int scrollIndicatorDown = 2131492917; 1698 | 1699 | // aapt resource value: 0x7f0c0032 1700 | public const int scrollIndicatorUp = 2131492914; 1701 | 1702 | // aapt resource value: 0x7f0c0033 1703 | public const int scrollView = 2131492915; 1704 | 1705 | // aapt resource value: 0x7f0c0045 1706 | public const int search_badge = 2131492933; 1707 | 1708 | // aapt resource value: 0x7f0c0044 1709 | public const int search_bar = 2131492932; 1710 | 1711 | // aapt resource value: 0x7f0c0046 1712 | public const int search_button = 2131492934; 1713 | 1714 | // aapt resource value: 0x7f0c004b 1715 | public const int search_close_btn = 2131492939; 1716 | 1717 | // aapt resource value: 0x7f0c0047 1718 | public const int search_edit_frame = 2131492935; 1719 | 1720 | // aapt resource value: 0x7f0c004d 1721 | public const int search_go_btn = 2131492941; 1722 | 1723 | // aapt resource value: 0x7f0c0048 1724 | public const int search_mag_icon = 2131492936; 1725 | 1726 | // aapt resource value: 0x7f0c0049 1727 | public const int search_plate = 2131492937; 1728 | 1729 | // aapt resource value: 0x7f0c004a 1730 | public const int search_src_text = 2131492938; 1731 | 1732 | // aapt resource value: 0x7f0c004e 1733 | public const int search_voice_btn = 2131492942; 1734 | 1735 | // aapt resource value: 0x7f0c004f 1736 | public const int select_dialog_listview = 2131492943; 1737 | 1738 | // aapt resource value: 0x7f0c003a 1739 | public const int shortcut = 2131492922; 1740 | 1741 | // aapt resource value: 0x7f0c000f 1742 | public const int showCustom = 2131492879; 1743 | 1744 | // aapt resource value: 0x7f0c0010 1745 | public const int showHome = 2131492880; 1746 | 1747 | // aapt resource value: 0x7f0c0011 1748 | public const int showTitle = 2131492881; 1749 | 1750 | // aapt resource value: 0x7f0c002c 1751 | public const int spacer = 2131492908; 1752 | 1753 | // aapt resource value: 0x7f0c0007 1754 | public const int split_action_bar = 2131492871; 1755 | 1756 | // aapt resource value: 0x7f0c0016 1757 | public const int src_atop = 2131492886; 1758 | 1759 | // aapt resource value: 0x7f0c0017 1760 | public const int src_in = 2131492887; 1761 | 1762 | // aapt resource value: 0x7f0c0018 1763 | public const int src_over = 2131492888; 1764 | 1765 | // aapt resource value: 0x7f0c0057 1766 | public const int status_bar_latest_event_content = 2131492951; 1767 | 1768 | // aapt resource value: 0x7f0c004c 1769 | public const int submit_area = 2131492940; 1770 | 1771 | // aapt resource value: 0x7f0c000b 1772 | public const int tabMode = 2131492875; 1773 | 1774 | // aapt resource value: 0x7f0c005f 1775 | public const int text = 2131492959; 1776 | 1777 | // aapt resource value: 0x7f0c005d 1778 | public const int text2 = 2131492957; 1779 | 1780 | // aapt resource value: 0x7f0c0034 1781 | public const int textSpacerNoButtons = 2131492916; 1782 | 1783 | // aapt resource value: 0x7f0c005b 1784 | public const int time = 2131492955; 1785 | 1786 | // aapt resource value: 0x7f0c0054 1787 | public const int tipView = 2131492948; 1788 | 1789 | // aapt resource value: 0x7f0c002a 1790 | public const int title = 2131492906; 1791 | 1792 | // aapt resource value: 0x7f0c002f 1793 | public const int title_template = 2131492911; 1794 | 1795 | // aapt resource value: 0x7f0c002e 1796 | public const int topPanel = 2131492910; 1797 | 1798 | // aapt resource value: 0x7f0c0008 1799 | public const int up = 2131492872; 1800 | 1801 | // aapt resource value: 0x7f0c0012 1802 | public const int useLogo = 2131492882; 1803 | 1804 | // aapt resource value: 0x7f0c0052 1805 | public const int userInfo = 2131492946; 1806 | 1807 | // aapt resource value: 0x7f0c0020 1808 | public const int withText = 2131492896; 1809 | 1810 | // aapt resource value: 0x7f0c0013 1811 | public const int wrap_content = 2131492883; 1812 | 1813 | static Id() 1814 | { 1815 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1816 | } 1817 | 1818 | private Id() 1819 | { 1820 | } 1821 | } 1822 | 1823 | public partial class Integer 1824 | { 1825 | 1826 | // aapt resource value: 0x7f0a0001 1827 | public const int abc_config_activityDefaultDur = 2131361793; 1828 | 1829 | // aapt resource value: 0x7f0a0002 1830 | public const int abc_config_activityShortDur = 2131361794; 1831 | 1832 | // aapt resource value: 0x7f0a0000 1833 | public const int abc_max_action_buttons = 2131361792; 1834 | 1835 | // aapt resource value: 0x7f0a0003 1836 | public const int cancel_button_image_alpha = 2131361795; 1837 | 1838 | // aapt resource value: 0x7f0a0004 1839 | public const int status_bar_notification_info_maxnum = 2131361796; 1840 | 1841 | static Integer() 1842 | { 1843 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1844 | } 1845 | 1846 | private Integer() 1847 | { 1848 | } 1849 | } 1850 | 1851 | public partial class Layout 1852 | { 1853 | 1854 | // aapt resource value: 0x7f040000 1855 | public const int abc_action_bar_title_item = 2130968576; 1856 | 1857 | // aapt resource value: 0x7f040001 1858 | public const int abc_action_bar_up_container = 2130968577; 1859 | 1860 | // aapt resource value: 0x7f040002 1861 | public const int abc_action_bar_view_list_nav_layout = 2130968578; 1862 | 1863 | // aapt resource value: 0x7f040003 1864 | public const int abc_action_menu_item_layout = 2130968579; 1865 | 1866 | // aapt resource value: 0x7f040004 1867 | public const int abc_action_menu_layout = 2130968580; 1868 | 1869 | // aapt resource value: 0x7f040005 1870 | public const int abc_action_mode_bar = 2130968581; 1871 | 1872 | // aapt resource value: 0x7f040006 1873 | public const int abc_action_mode_close_item_material = 2130968582; 1874 | 1875 | // aapt resource value: 0x7f040007 1876 | public const int abc_activity_chooser_view = 2130968583; 1877 | 1878 | // aapt resource value: 0x7f040008 1879 | public const int abc_activity_chooser_view_list_item = 2130968584; 1880 | 1881 | // aapt resource value: 0x7f040009 1882 | public const int abc_alert_dialog_button_bar_material = 2130968585; 1883 | 1884 | // aapt resource value: 0x7f04000a 1885 | public const int abc_alert_dialog_material = 2130968586; 1886 | 1887 | // aapt resource value: 0x7f04000b 1888 | public const int abc_dialog_title_material = 2130968587; 1889 | 1890 | // aapt resource value: 0x7f04000c 1891 | public const int abc_expanded_menu_layout = 2130968588; 1892 | 1893 | // aapt resource value: 0x7f04000d 1894 | public const int abc_list_menu_item_checkbox = 2130968589; 1895 | 1896 | // aapt resource value: 0x7f04000e 1897 | public const int abc_list_menu_item_icon = 2130968590; 1898 | 1899 | // aapt resource value: 0x7f04000f 1900 | public const int abc_list_menu_item_layout = 2130968591; 1901 | 1902 | // aapt resource value: 0x7f040010 1903 | public const int abc_list_menu_item_radio = 2130968592; 1904 | 1905 | // aapt resource value: 0x7f040011 1906 | public const int abc_popup_menu_item_layout = 2130968593; 1907 | 1908 | // aapt resource value: 0x7f040012 1909 | public const int abc_screen_content_include = 2130968594; 1910 | 1911 | // aapt resource value: 0x7f040013 1912 | public const int abc_screen_simple = 2130968595; 1913 | 1914 | // aapt resource value: 0x7f040014 1915 | public const int abc_screen_simple_overlay_action_mode = 2130968596; 1916 | 1917 | // aapt resource value: 0x7f040015 1918 | public const int abc_screen_toolbar = 2130968597; 1919 | 1920 | // aapt resource value: 0x7f040016 1921 | public const int abc_search_dropdown_item_icons_2line = 2130968598; 1922 | 1923 | // aapt resource value: 0x7f040017 1924 | public const int abc_search_view = 2130968599; 1925 | 1926 | // aapt resource value: 0x7f040018 1927 | public const int abc_select_dialog_material = 2130968600; 1928 | 1929 | // aapt resource value: 0x7f040019 1930 | public const int activity_main = 2130968601; 1931 | 1932 | // aapt resource value: 0x7f04001a 1933 | public const int notification_media_action = 2130968602; 1934 | 1935 | // aapt resource value: 0x7f04001b 1936 | public const int notification_media_cancel_action = 2130968603; 1937 | 1938 | // aapt resource value: 0x7f04001c 1939 | public const int notification_template_big_media = 2130968604; 1940 | 1941 | // aapt resource value: 0x7f04001d 1942 | public const int notification_template_big_media_narrow = 2130968605; 1943 | 1944 | // aapt resource value: 0x7f04001e 1945 | public const int notification_template_lines = 2130968606; 1946 | 1947 | // aapt resource value: 0x7f04001f 1948 | public const int notification_template_media = 2130968607; 1949 | 1950 | // aapt resource value: 0x7f040020 1951 | public const int notification_template_part_chronometer = 2130968608; 1952 | 1953 | // aapt resource value: 0x7f040021 1954 | public const int notification_template_part_time = 2130968609; 1955 | 1956 | // aapt resource value: 0x7f040022 1957 | public const int select_dialog_item_material = 2130968610; 1958 | 1959 | // aapt resource value: 0x7f040023 1960 | public const int select_dialog_multichoice_material = 2130968611; 1961 | 1962 | // aapt resource value: 0x7f040024 1963 | public const int select_dialog_singlechoice_material = 2130968612; 1964 | 1965 | // aapt resource value: 0x7f040025 1966 | public const int support_simple_spinner_dropdown_item = 2130968613; 1967 | 1968 | static Layout() 1969 | { 1970 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1971 | } 1972 | 1973 | private Layout() 1974 | { 1975 | } 1976 | } 1977 | 1978 | public partial class Mipmap 1979 | { 1980 | 1981 | // aapt resource value: 0x7f030000 1982 | public const int Icon = 2130903040; 1983 | 1984 | static Mipmap() 1985 | { 1986 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1987 | } 1988 | 1989 | private Mipmap() 1990 | { 1991 | } 1992 | } 1993 | 1994 | public partial class String 1995 | { 1996 | 1997 | // aapt resource value: 0x7f060000 1998 | public const int abc_action_bar_home_description = 2131099648; 1999 | 2000 | // aapt resource value: 0x7f060001 2001 | public const int abc_action_bar_home_description_format = 2131099649; 2002 | 2003 | // aapt resource value: 0x7f060002 2004 | public const int abc_action_bar_home_subtitle_description_format = 2131099650; 2005 | 2006 | // aapt resource value: 0x7f060003 2007 | public const int abc_action_bar_up_description = 2131099651; 2008 | 2009 | // aapt resource value: 0x7f060004 2010 | public const int abc_action_menu_overflow_description = 2131099652; 2011 | 2012 | // aapt resource value: 0x7f060005 2013 | public const int abc_action_mode_done = 2131099653; 2014 | 2015 | // aapt resource value: 0x7f060006 2016 | public const int abc_activity_chooser_view_see_all = 2131099654; 2017 | 2018 | // aapt resource value: 0x7f060007 2019 | public const int abc_activitychooserview_choose_application = 2131099655; 2020 | 2021 | // aapt resource value: 0x7f060008 2022 | public const int abc_capital_off = 2131099656; 2023 | 2024 | // aapt resource value: 0x7f060009 2025 | public const int abc_capital_on = 2131099657; 2026 | 2027 | // aapt resource value: 0x7f06000a 2028 | public const int abc_search_hint = 2131099658; 2029 | 2030 | // aapt resource value: 0x7f06000b 2031 | public const int abc_searchview_description_clear = 2131099659; 2032 | 2033 | // aapt resource value: 0x7f06000c 2034 | public const int abc_searchview_description_query = 2131099660; 2035 | 2036 | // aapt resource value: 0x7f06000d 2037 | public const int abc_searchview_description_search = 2131099661; 2038 | 2039 | // aapt resource value: 0x7f06000e 2040 | public const int abc_searchview_description_submit = 2131099662; 2041 | 2042 | // aapt resource value: 0x7f06000f 2043 | public const int abc_searchview_description_voice = 2131099663; 2044 | 2045 | // aapt resource value: 0x7f060010 2046 | public const int abc_shareactionprovider_share_with = 2131099664; 2047 | 2048 | // aapt resource value: 0x7f060011 2049 | public const int abc_shareactionprovider_share_with_application = 2131099665; 2050 | 2051 | // aapt resource value: 0x7f060012 2052 | public const int abc_toolbar_collapse_description = 2131099666; 2053 | 2054 | // aapt resource value: 0x7f060014 2055 | public const int app_name = 2131099668; 2056 | 2057 | // aapt resource value: 0x7f060013 2058 | public const int status_bar_notification_info_overflow = 2131099667; 2059 | 2060 | static String() 2061 | { 2062 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 2063 | } 2064 | 2065 | private String() 2066 | { 2067 | } 2068 | } 2069 | 2070 | public partial class Style 2071 | { 2072 | 2073 | // aapt resource value: 0x7f090086 2074 | public const int AlertDialog_AppCompat = 2131296390; 2075 | 2076 | // aapt resource value: 0x7f090087 2077 | public const int AlertDialog_AppCompat_Light = 2131296391; 2078 | 2079 | // aapt resource value: 0x7f090088 2080 | public const int Animation_AppCompat_Dialog = 2131296392; 2081 | 2082 | // aapt resource value: 0x7f090089 2083 | public const int Animation_AppCompat_DropDownUp = 2131296393; 2084 | 2085 | // aapt resource value: 0x7f09013e 2086 | public const int AppTheme = 2131296574; 2087 | 2088 | // aapt resource value: 0x7f09008a 2089 | public const int Base_AlertDialog_AppCompat = 2131296394; 2090 | 2091 | // aapt resource value: 0x7f09008b 2092 | public const int Base_AlertDialog_AppCompat_Light = 2131296395; 2093 | 2094 | // aapt resource value: 0x7f09008c 2095 | public const int Base_Animation_AppCompat_Dialog = 2131296396; 2096 | 2097 | // aapt resource value: 0x7f09008d 2098 | public const int Base_Animation_AppCompat_DropDownUp = 2131296397; 2099 | 2100 | // aapt resource value: 0x7f09008e 2101 | public const int Base_DialogWindowTitle_AppCompat = 2131296398; 2102 | 2103 | // aapt resource value: 0x7f09008f 2104 | public const int Base_DialogWindowTitleBackground_AppCompat = 2131296399; 2105 | 2106 | // aapt resource value: 0x7f090036 2107 | public const int Base_TextAppearance_AppCompat = 2131296310; 2108 | 2109 | // aapt resource value: 0x7f090037 2110 | public const int Base_TextAppearance_AppCompat_Body1 = 2131296311; 2111 | 2112 | // aapt resource value: 0x7f090038 2113 | public const int Base_TextAppearance_AppCompat_Body2 = 2131296312; 2114 | 2115 | // aapt resource value: 0x7f090020 2116 | public const int Base_TextAppearance_AppCompat_Button = 2131296288; 2117 | 2118 | // aapt resource value: 0x7f090039 2119 | public const int Base_TextAppearance_AppCompat_Caption = 2131296313; 2120 | 2121 | // aapt resource value: 0x7f09003a 2122 | public const int Base_TextAppearance_AppCompat_Display1 = 2131296314; 2123 | 2124 | // aapt resource value: 0x7f09003b 2125 | public const int Base_TextAppearance_AppCompat_Display2 = 2131296315; 2126 | 2127 | // aapt resource value: 0x7f09003c 2128 | public const int Base_TextAppearance_AppCompat_Display3 = 2131296316; 2129 | 2130 | // aapt resource value: 0x7f09003d 2131 | public const int Base_TextAppearance_AppCompat_Display4 = 2131296317; 2132 | 2133 | // aapt resource value: 0x7f09003e 2134 | public const int Base_TextAppearance_AppCompat_Headline = 2131296318; 2135 | 2136 | // aapt resource value: 0x7f09000b 2137 | public const int Base_TextAppearance_AppCompat_Inverse = 2131296267; 2138 | 2139 | // aapt resource value: 0x7f09003f 2140 | public const int Base_TextAppearance_AppCompat_Large = 2131296319; 2141 | 2142 | // aapt resource value: 0x7f09000c 2143 | public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131296268; 2144 | 2145 | // aapt resource value: 0x7f090040 2146 | public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131296320; 2147 | 2148 | // aapt resource value: 0x7f090041 2149 | public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131296321; 2150 | 2151 | // aapt resource value: 0x7f090042 2152 | public const int Base_TextAppearance_AppCompat_Medium = 2131296322; 2153 | 2154 | // aapt resource value: 0x7f09000d 2155 | public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131296269; 2156 | 2157 | // aapt resource value: 0x7f090043 2158 | public const int Base_TextAppearance_AppCompat_Menu = 2131296323; 2159 | 2160 | // aapt resource value: 0x7f090090 2161 | public const int Base_TextAppearance_AppCompat_SearchResult = 2131296400; 2162 | 2163 | // aapt resource value: 0x7f090044 2164 | public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131296324; 2165 | 2166 | // aapt resource value: 0x7f090045 2167 | public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131296325; 2168 | 2169 | // aapt resource value: 0x7f090046 2170 | public const int Base_TextAppearance_AppCompat_Small = 2131296326; 2171 | 2172 | // aapt resource value: 0x7f09000e 2173 | public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131296270; 2174 | 2175 | // aapt resource value: 0x7f090047 2176 | public const int Base_TextAppearance_AppCompat_Subhead = 2131296327; 2177 | 2178 | // aapt resource value: 0x7f09000f 2179 | public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131296271; 2180 | 2181 | // aapt resource value: 0x7f090048 2182 | public const int Base_TextAppearance_AppCompat_Title = 2131296328; 2183 | 2184 | // aapt resource value: 0x7f090010 2185 | public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131296272; 2186 | 2187 | // aapt resource value: 0x7f09007f 2188 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131296383; 2189 | 2190 | // aapt resource value: 0x7f090049 2191 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131296329; 2192 | 2193 | // aapt resource value: 0x7f09004a 2194 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131296330; 2195 | 2196 | // aapt resource value: 0x7f09004b 2197 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131296331; 2198 | 2199 | // aapt resource value: 0x7f09004c 2200 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131296332; 2201 | 2202 | // aapt resource value: 0x7f09004d 2203 | public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131296333; 2204 | 2205 | // aapt resource value: 0x7f09004e 2206 | public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131296334; 2207 | 2208 | // aapt resource value: 0x7f09004f 2209 | public const int Base_TextAppearance_AppCompat_Widget_Button = 2131296335; 2210 | 2211 | // aapt resource value: 0x7f090080 2212 | public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131296384; 2213 | 2214 | // aapt resource value: 0x7f090091 2215 | public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131296401; 2216 | 2217 | // aapt resource value: 0x7f090050 2218 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131296336; 2219 | 2220 | // aapt resource value: 0x7f090051 2221 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131296337; 2222 | 2223 | // aapt resource value: 0x7f090052 2224 | public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131296338; 2225 | 2226 | // aapt resource value: 0x7f090053 2227 | public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131296339; 2228 | 2229 | // aapt resource value: 0x7f090092 2230 | public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131296402; 2231 | 2232 | // aapt resource value: 0x7f090054 2233 | public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131296340; 2234 | 2235 | // aapt resource value: 0x7f090055 2236 | public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131296341; 2237 | 2238 | // aapt resource value: 0x7f090056 2239 | public const int Base_Theme_AppCompat = 2131296342; 2240 | 2241 | // aapt resource value: 0x7f090093 2242 | public const int Base_Theme_AppCompat_CompactMenu = 2131296403; 2243 | 2244 | // aapt resource value: 0x7f090011 2245 | public const int Base_Theme_AppCompat_Dialog = 2131296273; 2246 | 2247 | // aapt resource value: 0x7f090094 2248 | public const int Base_Theme_AppCompat_Dialog_Alert = 2131296404; 2249 | 2250 | // aapt resource value: 0x7f090095 2251 | public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131296405; 2252 | 2253 | // aapt resource value: 0x7f090096 2254 | public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131296406; 2255 | 2256 | // aapt resource value: 0x7f090001 2257 | public const int Base_Theme_AppCompat_DialogWhenLarge = 2131296257; 2258 | 2259 | // aapt resource value: 0x7f090057 2260 | public const int Base_Theme_AppCompat_Light = 2131296343; 2261 | 2262 | // aapt resource value: 0x7f090097 2263 | public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131296407; 2264 | 2265 | // aapt resource value: 0x7f090012 2266 | public const int Base_Theme_AppCompat_Light_Dialog = 2131296274; 2267 | 2268 | // aapt resource value: 0x7f090098 2269 | public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131296408; 2270 | 2271 | // aapt resource value: 0x7f090099 2272 | public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131296409; 2273 | 2274 | // aapt resource value: 0x7f09009a 2275 | public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131296410; 2276 | 2277 | // aapt resource value: 0x7f090002 2278 | public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131296258; 2279 | 2280 | // aapt resource value: 0x7f09009b 2281 | public const int Base_ThemeOverlay_AppCompat = 2131296411; 2282 | 2283 | // aapt resource value: 0x7f09009c 2284 | public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131296412; 2285 | 2286 | // aapt resource value: 0x7f09009d 2287 | public const int Base_ThemeOverlay_AppCompat_Dark = 2131296413; 2288 | 2289 | // aapt resource value: 0x7f09009e 2290 | public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131296414; 2291 | 2292 | // aapt resource value: 0x7f09009f 2293 | public const int Base_ThemeOverlay_AppCompat_Light = 2131296415; 2294 | 2295 | // aapt resource value: 0x7f090013 2296 | public const int Base_V11_Theme_AppCompat_Dialog = 2131296275; 2297 | 2298 | // aapt resource value: 0x7f090014 2299 | public const int Base_V11_Theme_AppCompat_Light_Dialog = 2131296276; 2300 | 2301 | // aapt resource value: 0x7f09001c 2302 | public const int Base_V12_Widget_AppCompat_AutoCompleteTextView = 2131296284; 2303 | 2304 | // aapt resource value: 0x7f09001d 2305 | public const int Base_V12_Widget_AppCompat_EditText = 2131296285; 2306 | 2307 | // aapt resource value: 0x7f090058 2308 | public const int Base_V21_Theme_AppCompat = 2131296344; 2309 | 2310 | // aapt resource value: 0x7f090059 2311 | public const int Base_V21_Theme_AppCompat_Dialog = 2131296345; 2312 | 2313 | // aapt resource value: 0x7f09005a 2314 | public const int Base_V21_Theme_AppCompat_Light = 2131296346; 2315 | 2316 | // aapt resource value: 0x7f09005b 2317 | public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131296347; 2318 | 2319 | // aapt resource value: 0x7f09007d 2320 | public const int Base_V22_Theme_AppCompat = 2131296381; 2321 | 2322 | // aapt resource value: 0x7f09007e 2323 | public const int Base_V22_Theme_AppCompat_Light = 2131296382; 2324 | 2325 | // aapt resource value: 0x7f090081 2326 | public const int Base_V23_Theme_AppCompat = 2131296385; 2327 | 2328 | // aapt resource value: 0x7f090082 2329 | public const int Base_V23_Theme_AppCompat_Light = 2131296386; 2330 | 2331 | // aapt resource value: 0x7f0900a0 2332 | public const int Base_V7_Theme_AppCompat = 2131296416; 2333 | 2334 | // aapt resource value: 0x7f0900a1 2335 | public const int Base_V7_Theme_AppCompat_Dialog = 2131296417; 2336 | 2337 | // aapt resource value: 0x7f0900a2 2338 | public const int Base_V7_Theme_AppCompat_Light = 2131296418; 2339 | 2340 | // aapt resource value: 0x7f0900a3 2341 | public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131296419; 2342 | 2343 | // aapt resource value: 0x7f0900a4 2344 | public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131296420; 2345 | 2346 | // aapt resource value: 0x7f0900a5 2347 | public const int Base_V7_Widget_AppCompat_EditText = 2131296421; 2348 | 2349 | // aapt resource value: 0x7f0900a6 2350 | public const int Base_Widget_AppCompat_ActionBar = 2131296422; 2351 | 2352 | // aapt resource value: 0x7f0900a7 2353 | public const int Base_Widget_AppCompat_ActionBar_Solid = 2131296423; 2354 | 2355 | // aapt resource value: 0x7f0900a8 2356 | public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131296424; 2357 | 2358 | // aapt resource value: 0x7f09005c 2359 | public const int Base_Widget_AppCompat_ActionBar_TabText = 2131296348; 2360 | 2361 | // aapt resource value: 0x7f09005d 2362 | public const int Base_Widget_AppCompat_ActionBar_TabView = 2131296349; 2363 | 2364 | // aapt resource value: 0x7f09005e 2365 | public const int Base_Widget_AppCompat_ActionButton = 2131296350; 2366 | 2367 | // aapt resource value: 0x7f09005f 2368 | public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131296351; 2369 | 2370 | // aapt resource value: 0x7f090060 2371 | public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131296352; 2372 | 2373 | // aapt resource value: 0x7f0900a9 2374 | public const int Base_Widget_AppCompat_ActionMode = 2131296425; 2375 | 2376 | // aapt resource value: 0x7f0900aa 2377 | public const int Base_Widget_AppCompat_ActivityChooserView = 2131296426; 2378 | 2379 | // aapt resource value: 0x7f09001e 2380 | public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131296286; 2381 | 2382 | // aapt resource value: 0x7f090061 2383 | public const int Base_Widget_AppCompat_Button = 2131296353; 2384 | 2385 | // aapt resource value: 0x7f090062 2386 | public const int Base_Widget_AppCompat_Button_Borderless = 2131296354; 2387 | 2388 | // aapt resource value: 0x7f090063 2389 | public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131296355; 2390 | 2391 | // aapt resource value: 0x7f0900ab 2392 | public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131296427; 2393 | 2394 | // aapt resource value: 0x7f090083 2395 | public const int Base_Widget_AppCompat_Button_Colored = 2131296387; 2396 | 2397 | // aapt resource value: 0x7f090064 2398 | public const int Base_Widget_AppCompat_Button_Small = 2131296356; 2399 | 2400 | // aapt resource value: 0x7f090065 2401 | public const int Base_Widget_AppCompat_ButtonBar = 2131296357; 2402 | 2403 | // aapt resource value: 0x7f0900ac 2404 | public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131296428; 2405 | 2406 | // aapt resource value: 0x7f090066 2407 | public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131296358; 2408 | 2409 | // aapt resource value: 0x7f090067 2410 | public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131296359; 2411 | 2412 | // aapt resource value: 0x7f0900ad 2413 | public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131296429; 2414 | 2415 | // aapt resource value: 0x7f090000 2416 | public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131296256; 2417 | 2418 | // aapt resource value: 0x7f0900ae 2419 | public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131296430; 2420 | 2421 | // aapt resource value: 0x7f090068 2422 | public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131296360; 2423 | 2424 | // aapt resource value: 0x7f09001f 2425 | public const int Base_Widget_AppCompat_EditText = 2131296287; 2426 | 2427 | // aapt resource value: 0x7f090069 2428 | public const int Base_Widget_AppCompat_ImageButton = 2131296361; 2429 | 2430 | // aapt resource value: 0x7f0900af 2431 | public const int Base_Widget_AppCompat_Light_ActionBar = 2131296431; 2432 | 2433 | // aapt resource value: 0x7f0900b0 2434 | public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131296432; 2435 | 2436 | // aapt resource value: 0x7f0900b1 2437 | public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131296433; 2438 | 2439 | // aapt resource value: 0x7f09006a 2440 | public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131296362; 2441 | 2442 | // aapt resource value: 0x7f09006b 2443 | public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131296363; 2444 | 2445 | // aapt resource value: 0x7f09006c 2446 | public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131296364; 2447 | 2448 | // aapt resource value: 0x7f09006d 2449 | public const int Base_Widget_AppCompat_Light_PopupMenu = 2131296365; 2450 | 2451 | // aapt resource value: 0x7f09006e 2452 | public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131296366; 2453 | 2454 | // aapt resource value: 0x7f09006f 2455 | public const int Base_Widget_AppCompat_ListPopupWindow = 2131296367; 2456 | 2457 | // aapt resource value: 0x7f090070 2458 | public const int Base_Widget_AppCompat_ListView = 2131296368; 2459 | 2460 | // aapt resource value: 0x7f090071 2461 | public const int Base_Widget_AppCompat_ListView_DropDown = 2131296369; 2462 | 2463 | // aapt resource value: 0x7f090072 2464 | public const int Base_Widget_AppCompat_ListView_Menu = 2131296370; 2465 | 2466 | // aapt resource value: 0x7f090073 2467 | public const int Base_Widget_AppCompat_PopupMenu = 2131296371; 2468 | 2469 | // aapt resource value: 0x7f090074 2470 | public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131296372; 2471 | 2472 | // aapt resource value: 0x7f0900b2 2473 | public const int Base_Widget_AppCompat_PopupWindow = 2131296434; 2474 | 2475 | // aapt resource value: 0x7f090015 2476 | public const int Base_Widget_AppCompat_ProgressBar = 2131296277; 2477 | 2478 | // aapt resource value: 0x7f090016 2479 | public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131296278; 2480 | 2481 | // aapt resource value: 0x7f090075 2482 | public const int Base_Widget_AppCompat_RatingBar = 2131296373; 2483 | 2484 | // aapt resource value: 0x7f090084 2485 | public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131296388; 2486 | 2487 | // aapt resource value: 0x7f090085 2488 | public const int Base_Widget_AppCompat_RatingBar_Small = 2131296389; 2489 | 2490 | // aapt resource value: 0x7f0900b3 2491 | public const int Base_Widget_AppCompat_SearchView = 2131296435; 2492 | 2493 | // aapt resource value: 0x7f0900b4 2494 | public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131296436; 2495 | 2496 | // aapt resource value: 0x7f090076 2497 | public const int Base_Widget_AppCompat_SeekBar = 2131296374; 2498 | 2499 | // aapt resource value: 0x7f090077 2500 | public const int Base_Widget_AppCompat_Spinner = 2131296375; 2501 | 2502 | // aapt resource value: 0x7f090003 2503 | public const int Base_Widget_AppCompat_Spinner_Underlined = 2131296259; 2504 | 2505 | // aapt resource value: 0x7f090078 2506 | public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131296376; 2507 | 2508 | // aapt resource value: 0x7f0900b5 2509 | public const int Base_Widget_AppCompat_Toolbar = 2131296437; 2510 | 2511 | // aapt resource value: 0x7f090079 2512 | public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131296377; 2513 | 2514 | // aapt resource value: 0x7f090140 2515 | public const int MenuText = 2131296576; 2516 | 2517 | // aapt resource value: 0x7f090017 2518 | public const int Platform_AppCompat = 2131296279; 2519 | 2520 | // aapt resource value: 0x7f090018 2521 | public const int Platform_AppCompat_Light = 2131296280; 2522 | 2523 | // aapt resource value: 0x7f09007a 2524 | public const int Platform_ThemeOverlay_AppCompat = 2131296378; 2525 | 2526 | // aapt resource value: 0x7f09007b 2527 | public const int Platform_ThemeOverlay_AppCompat_Dark = 2131296379; 2528 | 2529 | // aapt resource value: 0x7f09007c 2530 | public const int Platform_ThemeOverlay_AppCompat_Light = 2131296380; 2531 | 2532 | // aapt resource value: 0x7f090019 2533 | public const int Platform_V11_AppCompat = 2131296281; 2534 | 2535 | // aapt resource value: 0x7f09001a 2536 | public const int Platform_V11_AppCompat_Light = 2131296282; 2537 | 2538 | // aapt resource value: 0x7f090021 2539 | public const int Platform_V14_AppCompat = 2131296289; 2540 | 2541 | // aapt resource value: 0x7f090022 2542 | public const int Platform_V14_AppCompat_Light = 2131296290; 2543 | 2544 | // aapt resource value: 0x7f09001b 2545 | public const int Platform_Widget_AppCompat_Spinner = 2131296283; 2546 | 2547 | // aapt resource value: 0x7f090028 2548 | public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131296296; 2549 | 2550 | // aapt resource value: 0x7f090029 2551 | public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131296297; 2552 | 2553 | // aapt resource value: 0x7f09002a 2554 | public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131296298; 2555 | 2556 | // aapt resource value: 0x7f09002b 2557 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131296299; 2558 | 2559 | // aapt resource value: 0x7f09002c 2560 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131296300; 2561 | 2562 | // aapt resource value: 0x7f09002d 2563 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131296301; 2564 | 2565 | // aapt resource value: 0x7f09002e 2566 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131296302; 2567 | 2568 | // aapt resource value: 0x7f09002f 2569 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131296303; 2570 | 2571 | // aapt resource value: 0x7f090030 2572 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131296304; 2573 | 2574 | // aapt resource value: 0x7f090031 2575 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131296305; 2576 | 2577 | // aapt resource value: 0x7f090032 2578 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131296306; 2579 | 2580 | // aapt resource value: 0x7f090033 2581 | public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131296307; 2582 | 2583 | // aapt resource value: 0x7f090034 2584 | public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131296308; 2585 | 2586 | // aapt resource value: 0x7f090035 2587 | public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131296309; 2588 | 2589 | // aapt resource value: 0x7f0900b6 2590 | public const int TextAppearance_AppCompat = 2131296438; 2591 | 2592 | // aapt resource value: 0x7f0900b7 2593 | public const int TextAppearance_AppCompat_Body1 = 2131296439; 2594 | 2595 | // aapt resource value: 0x7f0900b8 2596 | public const int TextAppearance_AppCompat_Body2 = 2131296440; 2597 | 2598 | // aapt resource value: 0x7f0900b9 2599 | public const int TextAppearance_AppCompat_Button = 2131296441; 2600 | 2601 | // aapt resource value: 0x7f0900ba 2602 | public const int TextAppearance_AppCompat_Caption = 2131296442; 2603 | 2604 | // aapt resource value: 0x7f0900bb 2605 | public const int TextAppearance_AppCompat_Display1 = 2131296443; 2606 | 2607 | // aapt resource value: 0x7f0900bc 2608 | public const int TextAppearance_AppCompat_Display2 = 2131296444; 2609 | 2610 | // aapt resource value: 0x7f0900bd 2611 | public const int TextAppearance_AppCompat_Display3 = 2131296445; 2612 | 2613 | // aapt resource value: 0x7f0900be 2614 | public const int TextAppearance_AppCompat_Display4 = 2131296446; 2615 | 2616 | // aapt resource value: 0x7f0900bf 2617 | public const int TextAppearance_AppCompat_Headline = 2131296447; 2618 | 2619 | // aapt resource value: 0x7f0900c0 2620 | public const int TextAppearance_AppCompat_Inverse = 2131296448; 2621 | 2622 | // aapt resource value: 0x7f0900c1 2623 | public const int TextAppearance_AppCompat_Large = 2131296449; 2624 | 2625 | // aapt resource value: 0x7f0900c2 2626 | public const int TextAppearance_AppCompat_Large_Inverse = 2131296450; 2627 | 2628 | // aapt resource value: 0x7f0900c3 2629 | public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131296451; 2630 | 2631 | // aapt resource value: 0x7f0900c4 2632 | public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131296452; 2633 | 2634 | // aapt resource value: 0x7f0900c5 2635 | public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131296453; 2636 | 2637 | // aapt resource value: 0x7f0900c6 2638 | public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131296454; 2639 | 2640 | // aapt resource value: 0x7f0900c7 2641 | public const int TextAppearance_AppCompat_Medium = 2131296455; 2642 | 2643 | // aapt resource value: 0x7f0900c8 2644 | public const int TextAppearance_AppCompat_Medium_Inverse = 2131296456; 2645 | 2646 | // aapt resource value: 0x7f0900c9 2647 | public const int TextAppearance_AppCompat_Menu = 2131296457; 2648 | 2649 | // aapt resource value: 0x7f0900ca 2650 | public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131296458; 2651 | 2652 | // aapt resource value: 0x7f0900cb 2653 | public const int TextAppearance_AppCompat_SearchResult_Title = 2131296459; 2654 | 2655 | // aapt resource value: 0x7f0900cc 2656 | public const int TextAppearance_AppCompat_Small = 2131296460; 2657 | 2658 | // aapt resource value: 0x7f0900cd 2659 | public const int TextAppearance_AppCompat_Small_Inverse = 2131296461; 2660 | 2661 | // aapt resource value: 0x7f0900ce 2662 | public const int TextAppearance_AppCompat_Subhead = 2131296462; 2663 | 2664 | // aapt resource value: 0x7f0900cf 2665 | public const int TextAppearance_AppCompat_Subhead_Inverse = 2131296463; 2666 | 2667 | // aapt resource value: 0x7f0900d0 2668 | public const int TextAppearance_AppCompat_Title = 2131296464; 2669 | 2670 | // aapt resource value: 0x7f0900d1 2671 | public const int TextAppearance_AppCompat_Title_Inverse = 2131296465; 2672 | 2673 | // aapt resource value: 0x7f0900d2 2674 | public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131296466; 2675 | 2676 | // aapt resource value: 0x7f0900d3 2677 | public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131296467; 2678 | 2679 | // aapt resource value: 0x7f0900d4 2680 | public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131296468; 2681 | 2682 | // aapt resource value: 0x7f0900d5 2683 | public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131296469; 2684 | 2685 | // aapt resource value: 0x7f0900d6 2686 | public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131296470; 2687 | 2688 | // aapt resource value: 0x7f0900d7 2689 | public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131296471; 2690 | 2691 | // aapt resource value: 0x7f0900d8 2692 | public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131296472; 2693 | 2694 | // aapt resource value: 0x7f0900d9 2695 | public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131296473; 2696 | 2697 | // aapt resource value: 0x7f0900da 2698 | public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131296474; 2699 | 2700 | // aapt resource value: 0x7f0900db 2701 | public const int TextAppearance_AppCompat_Widget_Button = 2131296475; 2702 | 2703 | // aapt resource value: 0x7f0900dc 2704 | public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131296476; 2705 | 2706 | // aapt resource value: 0x7f0900dd 2707 | public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131296477; 2708 | 2709 | // aapt resource value: 0x7f0900de 2710 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131296478; 2711 | 2712 | // aapt resource value: 0x7f0900df 2713 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131296479; 2714 | 2715 | // aapt resource value: 0x7f0900e0 2716 | public const int TextAppearance_AppCompat_Widget_Switch = 2131296480; 2717 | 2718 | // aapt resource value: 0x7f0900e1 2719 | public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131296481; 2720 | 2721 | // aapt resource value: 0x7f090023 2722 | public const int TextAppearance_StatusBar_EventContent = 2131296291; 2723 | 2724 | // aapt resource value: 0x7f090024 2725 | public const int TextAppearance_StatusBar_EventContent_Info = 2131296292; 2726 | 2727 | // aapt resource value: 0x7f090025 2728 | public const int TextAppearance_StatusBar_EventContent_Line2 = 2131296293; 2729 | 2730 | // aapt resource value: 0x7f090026 2731 | public const int TextAppearance_StatusBar_EventContent_Time = 2131296294; 2732 | 2733 | // aapt resource value: 0x7f090027 2734 | public const int TextAppearance_StatusBar_EventContent_Title = 2131296295; 2735 | 2736 | // aapt resource value: 0x7f0900e2 2737 | public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131296482; 2738 | 2739 | // aapt resource value: 0x7f0900e3 2740 | public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131296483; 2741 | 2742 | // aapt resource value: 0x7f0900e4 2743 | public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131296484; 2744 | 2745 | // aapt resource value: 0x7f0900e5 2746 | public const int Theme_AppCompat = 2131296485; 2747 | 2748 | // aapt resource value: 0x7f0900e6 2749 | public const int Theme_AppCompat_CompactMenu = 2131296486; 2750 | 2751 | // aapt resource value: 0x7f090004 2752 | public const int Theme_AppCompat_DayNight = 2131296260; 2753 | 2754 | // aapt resource value: 0x7f090005 2755 | public const int Theme_AppCompat_DayNight_DarkActionBar = 2131296261; 2756 | 2757 | // aapt resource value: 0x7f090006 2758 | public const int Theme_AppCompat_DayNight_Dialog = 2131296262; 2759 | 2760 | // aapt resource value: 0x7f090007 2761 | public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131296263; 2762 | 2763 | // aapt resource value: 0x7f090008 2764 | public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131296264; 2765 | 2766 | // aapt resource value: 0x7f090009 2767 | public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131296265; 2768 | 2769 | // aapt resource value: 0x7f09000a 2770 | public const int Theme_AppCompat_DayNight_NoActionBar = 2131296266; 2771 | 2772 | // aapt resource value: 0x7f0900e7 2773 | public const int Theme_AppCompat_Dialog = 2131296487; 2774 | 2775 | // aapt resource value: 0x7f0900e8 2776 | public const int Theme_AppCompat_Dialog_Alert = 2131296488; 2777 | 2778 | // aapt resource value: 0x7f0900e9 2779 | public const int Theme_AppCompat_Dialog_MinWidth = 2131296489; 2780 | 2781 | // aapt resource value: 0x7f0900ea 2782 | public const int Theme_AppCompat_DialogWhenLarge = 2131296490; 2783 | 2784 | // aapt resource value: 0x7f0900eb 2785 | public const int Theme_AppCompat_Light = 2131296491; 2786 | 2787 | // aapt resource value: 0x7f0900ec 2788 | public const int Theme_AppCompat_Light_DarkActionBar = 2131296492; 2789 | 2790 | // aapt resource value: 0x7f0900ed 2791 | public const int Theme_AppCompat_Light_Dialog = 2131296493; 2792 | 2793 | // aapt resource value: 0x7f0900ee 2794 | public const int Theme_AppCompat_Light_Dialog_Alert = 2131296494; 2795 | 2796 | // aapt resource value: 0x7f0900ef 2797 | public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131296495; 2798 | 2799 | // aapt resource value: 0x7f0900f0 2800 | public const int Theme_AppCompat_Light_DialogWhenLarge = 2131296496; 2801 | 2802 | // aapt resource value: 0x7f0900f1 2803 | public const int Theme_AppCompat_Light_NoActionBar = 2131296497; 2804 | 2805 | // aapt resource value: 0x7f0900f2 2806 | public const int Theme_AppCompat_NoActionBar = 2131296498; 2807 | 2808 | // aapt resource value: 0x7f0900f3 2809 | public const int ThemeOverlay_AppCompat = 2131296499; 2810 | 2811 | // aapt resource value: 0x7f0900f4 2812 | public const int ThemeOverlay_AppCompat_ActionBar = 2131296500; 2813 | 2814 | // aapt resource value: 0x7f0900f5 2815 | public const int ThemeOverlay_AppCompat_Dark = 2131296501; 2816 | 2817 | // aapt resource value: 0x7f0900f6 2818 | public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131296502; 2819 | 2820 | // aapt resource value: 0x7f0900f7 2821 | public const int ThemeOverlay_AppCompat_Light = 2131296503; 2822 | 2823 | // aapt resource value: 0x7f09013f 2824 | public const int UniversalTheme = 2131296575; 2825 | 2826 | // aapt resource value: 0x7f0900f8 2827 | public const int Widget_AppCompat_ActionBar = 2131296504; 2828 | 2829 | // aapt resource value: 0x7f0900f9 2830 | public const int Widget_AppCompat_ActionBar_Solid = 2131296505; 2831 | 2832 | // aapt resource value: 0x7f0900fa 2833 | public const int Widget_AppCompat_ActionBar_TabBar = 2131296506; 2834 | 2835 | // aapt resource value: 0x7f0900fb 2836 | public const int Widget_AppCompat_ActionBar_TabText = 2131296507; 2837 | 2838 | // aapt resource value: 0x7f0900fc 2839 | public const int Widget_AppCompat_ActionBar_TabView = 2131296508; 2840 | 2841 | // aapt resource value: 0x7f0900fd 2842 | public const int Widget_AppCompat_ActionButton = 2131296509; 2843 | 2844 | // aapt resource value: 0x7f0900fe 2845 | public const int Widget_AppCompat_ActionButton_CloseMode = 2131296510; 2846 | 2847 | // aapt resource value: 0x7f0900ff 2848 | public const int Widget_AppCompat_ActionButton_Overflow = 2131296511; 2849 | 2850 | // aapt resource value: 0x7f090100 2851 | public const int Widget_AppCompat_ActionMode = 2131296512; 2852 | 2853 | // aapt resource value: 0x7f090101 2854 | public const int Widget_AppCompat_ActivityChooserView = 2131296513; 2855 | 2856 | // aapt resource value: 0x7f090102 2857 | public const int Widget_AppCompat_AutoCompleteTextView = 2131296514; 2858 | 2859 | // aapt resource value: 0x7f090103 2860 | public const int Widget_AppCompat_Button = 2131296515; 2861 | 2862 | // aapt resource value: 0x7f090104 2863 | public const int Widget_AppCompat_Button_Borderless = 2131296516; 2864 | 2865 | // aapt resource value: 0x7f090105 2866 | public const int Widget_AppCompat_Button_Borderless_Colored = 2131296517; 2867 | 2868 | // aapt resource value: 0x7f090106 2869 | public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131296518; 2870 | 2871 | // aapt resource value: 0x7f090107 2872 | public const int Widget_AppCompat_Button_Colored = 2131296519; 2873 | 2874 | // aapt resource value: 0x7f090108 2875 | public const int Widget_AppCompat_Button_Small = 2131296520; 2876 | 2877 | // aapt resource value: 0x7f090109 2878 | public const int Widget_AppCompat_ButtonBar = 2131296521; 2879 | 2880 | // aapt resource value: 0x7f09010a 2881 | public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131296522; 2882 | 2883 | // aapt resource value: 0x7f09010b 2884 | public const int Widget_AppCompat_CompoundButton_CheckBox = 2131296523; 2885 | 2886 | // aapt resource value: 0x7f09010c 2887 | public const int Widget_AppCompat_CompoundButton_RadioButton = 2131296524; 2888 | 2889 | // aapt resource value: 0x7f09010d 2890 | public const int Widget_AppCompat_CompoundButton_Switch = 2131296525; 2891 | 2892 | // aapt resource value: 0x7f09010e 2893 | public const int Widget_AppCompat_DrawerArrowToggle = 2131296526; 2894 | 2895 | // aapt resource value: 0x7f09010f 2896 | public const int Widget_AppCompat_DropDownItem_Spinner = 2131296527; 2897 | 2898 | // aapt resource value: 0x7f090110 2899 | public const int Widget_AppCompat_EditText = 2131296528; 2900 | 2901 | // aapt resource value: 0x7f090111 2902 | public const int Widget_AppCompat_ImageButton = 2131296529; 2903 | 2904 | // aapt resource value: 0x7f090112 2905 | public const int Widget_AppCompat_Light_ActionBar = 2131296530; 2906 | 2907 | // aapt resource value: 0x7f090113 2908 | public const int Widget_AppCompat_Light_ActionBar_Solid = 2131296531; 2909 | 2910 | // aapt resource value: 0x7f090114 2911 | public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131296532; 2912 | 2913 | // aapt resource value: 0x7f090115 2914 | public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131296533; 2915 | 2916 | // aapt resource value: 0x7f090116 2917 | public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131296534; 2918 | 2919 | // aapt resource value: 0x7f090117 2920 | public const int Widget_AppCompat_Light_ActionBar_TabText = 2131296535; 2921 | 2922 | // aapt resource value: 0x7f090118 2923 | public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131296536; 2924 | 2925 | // aapt resource value: 0x7f090119 2926 | public const int Widget_AppCompat_Light_ActionBar_TabView = 2131296537; 2927 | 2928 | // aapt resource value: 0x7f09011a 2929 | public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131296538; 2930 | 2931 | // aapt resource value: 0x7f09011b 2932 | public const int Widget_AppCompat_Light_ActionButton = 2131296539; 2933 | 2934 | // aapt resource value: 0x7f09011c 2935 | public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131296540; 2936 | 2937 | // aapt resource value: 0x7f09011d 2938 | public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131296541; 2939 | 2940 | // aapt resource value: 0x7f09011e 2941 | public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131296542; 2942 | 2943 | // aapt resource value: 0x7f09011f 2944 | public const int Widget_AppCompat_Light_ActivityChooserView = 2131296543; 2945 | 2946 | // aapt resource value: 0x7f090120 2947 | public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131296544; 2948 | 2949 | // aapt resource value: 0x7f090121 2950 | public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131296545; 2951 | 2952 | // aapt resource value: 0x7f090122 2953 | public const int Widget_AppCompat_Light_ListPopupWindow = 2131296546; 2954 | 2955 | // aapt resource value: 0x7f090123 2956 | public const int Widget_AppCompat_Light_ListView_DropDown = 2131296547; 2957 | 2958 | // aapt resource value: 0x7f090124 2959 | public const int Widget_AppCompat_Light_PopupMenu = 2131296548; 2960 | 2961 | // aapt resource value: 0x7f090125 2962 | public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131296549; 2963 | 2964 | // aapt resource value: 0x7f090126 2965 | public const int Widget_AppCompat_Light_SearchView = 2131296550; 2966 | 2967 | // aapt resource value: 0x7f090127 2968 | public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131296551; 2969 | 2970 | // aapt resource value: 0x7f090128 2971 | public const int Widget_AppCompat_ListPopupWindow = 2131296552; 2972 | 2973 | // aapt resource value: 0x7f090129 2974 | public const int Widget_AppCompat_ListView = 2131296553; 2975 | 2976 | // aapt resource value: 0x7f09012a 2977 | public const int Widget_AppCompat_ListView_DropDown = 2131296554; 2978 | 2979 | // aapt resource value: 0x7f09012b 2980 | public const int Widget_AppCompat_ListView_Menu = 2131296555; 2981 | 2982 | // aapt resource value: 0x7f09012c 2983 | public const int Widget_AppCompat_PopupMenu = 2131296556; 2984 | 2985 | // aapt resource value: 0x7f09012d 2986 | public const int Widget_AppCompat_PopupMenu_Overflow = 2131296557; 2987 | 2988 | // aapt resource value: 0x7f09012e 2989 | public const int Widget_AppCompat_PopupWindow = 2131296558; 2990 | 2991 | // aapt resource value: 0x7f09012f 2992 | public const int Widget_AppCompat_ProgressBar = 2131296559; 2993 | 2994 | // aapt resource value: 0x7f090130 2995 | public const int Widget_AppCompat_ProgressBar_Horizontal = 2131296560; 2996 | 2997 | // aapt resource value: 0x7f090131 2998 | public const int Widget_AppCompat_RatingBar = 2131296561; 2999 | 3000 | // aapt resource value: 0x7f090132 3001 | public const int Widget_AppCompat_RatingBar_Indicator = 2131296562; 3002 | 3003 | // aapt resource value: 0x7f090133 3004 | public const int Widget_AppCompat_RatingBar_Small = 2131296563; 3005 | 3006 | // aapt resource value: 0x7f090134 3007 | public const int Widget_AppCompat_SearchView = 2131296564; 3008 | 3009 | // aapt resource value: 0x7f090135 3010 | public const int Widget_AppCompat_SearchView_ActionBar = 2131296565; 3011 | 3012 | // aapt resource value: 0x7f090136 3013 | public const int Widget_AppCompat_SeekBar = 2131296566; 3014 | 3015 | // aapt resource value: 0x7f090137 3016 | public const int Widget_AppCompat_Spinner = 2131296567; 3017 | 3018 | // aapt resource value: 0x7f090138 3019 | public const int Widget_AppCompat_Spinner_DropDown = 2131296568; 3020 | 3021 | // aapt resource value: 0x7f090139 3022 | public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131296569; 3023 | 3024 | // aapt resource value: 0x7f09013a 3025 | public const int Widget_AppCompat_Spinner_Underlined = 2131296570; 3026 | 3027 | // aapt resource value: 0x7f09013b 3028 | public const int Widget_AppCompat_TextView_SpinnerItem = 2131296571; 3029 | 3030 | // aapt resource value: 0x7f09013c 3031 | public const int Widget_AppCompat_Toolbar = 2131296572; 3032 | 3033 | // aapt resource value: 0x7f09013d 3034 | public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131296573; 3035 | 3036 | static Style() 3037 | { 3038 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 3039 | } 3040 | 3041 | private Style() 3042 | { 3043 | } 3044 | } 3045 | 3046 | public partial class Styleable 3047 | { 3048 | 3049 | public static int[] ActionBar = new int[] 3050 | { 3051 | 2130771969, 3052 | 2130771971, 3053 | 2130771972, 3054 | 2130771973, 3055 | 2130771974, 3056 | 2130771975, 3057 | 2130771976, 3058 | 2130771977, 3059 | 2130771978, 3060 | 2130771979, 3061 | 2130771980, 3062 | 2130771981, 3063 | 2130771982, 3064 | 2130771983, 3065 | 2130771984, 3066 | 2130771985, 3067 | 2130771986, 3068 | 2130771987, 3069 | 2130771988, 3070 | 2130771989, 3071 | 2130771990, 3072 | 2130771991, 3073 | 2130771992, 3074 | 2130771993, 3075 | 2130771994, 3076 | 2130771995, 3077 | 2130772052}; 3078 | 3079 | // aapt resource value: 10 3080 | public const int ActionBar_background = 10; 3081 | 3082 | // aapt resource value: 12 3083 | public const int ActionBar_backgroundSplit = 12; 3084 | 3085 | // aapt resource value: 11 3086 | public const int ActionBar_backgroundStacked = 11; 3087 | 3088 | // aapt resource value: 21 3089 | public const int ActionBar_contentInsetEnd = 21; 3090 | 3091 | // aapt resource value: 22 3092 | public const int ActionBar_contentInsetLeft = 22; 3093 | 3094 | // aapt resource value: 23 3095 | public const int ActionBar_contentInsetRight = 23; 3096 | 3097 | // aapt resource value: 20 3098 | public const int ActionBar_contentInsetStart = 20; 3099 | 3100 | // aapt resource value: 13 3101 | public const int ActionBar_customNavigationLayout = 13; 3102 | 3103 | // aapt resource value: 3 3104 | public const int ActionBar_displayOptions = 3; 3105 | 3106 | // aapt resource value: 9 3107 | public const int ActionBar_divider = 9; 3108 | 3109 | // aapt resource value: 24 3110 | public const int ActionBar_elevation = 24; 3111 | 3112 | // aapt resource value: 0 3113 | public const int ActionBar_height = 0; 3114 | 3115 | // aapt resource value: 19 3116 | public const int ActionBar_hideOnContentScroll = 19; 3117 | 3118 | // aapt resource value: 26 3119 | public const int ActionBar_homeAsUpIndicator = 26; 3120 | 3121 | // aapt resource value: 14 3122 | public const int ActionBar_homeLayout = 14; 3123 | 3124 | // aapt resource value: 7 3125 | public const int ActionBar_icon = 7; 3126 | 3127 | // aapt resource value: 16 3128 | public const int ActionBar_indeterminateProgressStyle = 16; 3129 | 3130 | // aapt resource value: 18 3131 | public const int ActionBar_itemPadding = 18; 3132 | 3133 | // aapt resource value: 8 3134 | public const int ActionBar_logo = 8; 3135 | 3136 | // aapt resource value: 2 3137 | public const int ActionBar_navigationMode = 2; 3138 | 3139 | // aapt resource value: 25 3140 | public const int ActionBar_popupTheme = 25; 3141 | 3142 | // aapt resource value: 17 3143 | public const int ActionBar_progressBarPadding = 17; 3144 | 3145 | // aapt resource value: 15 3146 | public const int ActionBar_progressBarStyle = 15; 3147 | 3148 | // aapt resource value: 4 3149 | public const int ActionBar_subtitle = 4; 3150 | 3151 | // aapt resource value: 6 3152 | public const int ActionBar_subtitleTextStyle = 6; 3153 | 3154 | // aapt resource value: 1 3155 | public const int ActionBar_title = 1; 3156 | 3157 | // aapt resource value: 5 3158 | public const int ActionBar_titleTextStyle = 5; 3159 | 3160 | public static int[] ActionBarLayout = new int[] 3161 | { 3162 | 16842931}; 3163 | 3164 | // aapt resource value: 0 3165 | public const int ActionBarLayout_android_layout_gravity = 0; 3166 | 3167 | public static int[] ActionMenuItemView = new int[] 3168 | { 3169 | 16843071}; 3170 | 3171 | // aapt resource value: 0 3172 | public const int ActionMenuItemView_android_minWidth = 0; 3173 | 3174 | public static int[] ActionMenuView; 3175 | 3176 | public static int[] ActionMode = new int[] 3177 | { 3178 | 2130771969, 3179 | 2130771975, 3180 | 2130771976, 3181 | 2130771980, 3182 | 2130771982, 3183 | 2130771996}; 3184 | 3185 | // aapt resource value: 3 3186 | public const int ActionMode_background = 3; 3187 | 3188 | // aapt resource value: 4 3189 | public const int ActionMode_backgroundSplit = 4; 3190 | 3191 | // aapt resource value: 5 3192 | public const int ActionMode_closeItemLayout = 5; 3193 | 3194 | // aapt resource value: 0 3195 | public const int ActionMode_height = 0; 3196 | 3197 | // aapt resource value: 2 3198 | public const int ActionMode_subtitleTextStyle = 2; 3199 | 3200 | // aapt resource value: 1 3201 | public const int ActionMode_titleTextStyle = 1; 3202 | 3203 | public static int[] ActivityChooserView = new int[] 3204 | { 3205 | 2130771997, 3206 | 2130771998}; 3207 | 3208 | // aapt resource value: 1 3209 | public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; 3210 | 3211 | // aapt resource value: 0 3212 | public const int ActivityChooserView_initialActivityCount = 0; 3213 | 3214 | public static int[] AlertDialog = new int[] 3215 | { 3216 | 16842994, 3217 | 2130771999, 3218 | 2130772000, 3219 | 2130772001, 3220 | 2130772002, 3221 | 2130772003}; 3222 | 3223 | // aapt resource value: 0 3224 | public const int AlertDialog_android_layout = 0; 3225 | 3226 | // aapt resource value: 1 3227 | public const int AlertDialog_buttonPanelSideLayout = 1; 3228 | 3229 | // aapt resource value: 5 3230 | public const int AlertDialog_listItemLayout = 5; 3231 | 3232 | // aapt resource value: 2 3233 | public const int AlertDialog_listLayout = 2; 3234 | 3235 | // aapt resource value: 3 3236 | public const int AlertDialog_multiChoiceItemLayout = 3; 3237 | 3238 | // aapt resource value: 4 3239 | public const int AlertDialog_singleChoiceItemLayout = 4; 3240 | 3241 | public static int[] AppCompatImageView = new int[] 3242 | { 3243 | 16843033, 3244 | 2130772004}; 3245 | 3246 | // aapt resource value: 0 3247 | public const int AppCompatImageView_android_src = 0; 3248 | 3249 | // aapt resource value: 1 3250 | public const int AppCompatImageView_srcCompat = 1; 3251 | 3252 | public static int[] AppCompatTextView = new int[] 3253 | { 3254 | 16842804, 3255 | 2130772005}; 3256 | 3257 | // aapt resource value: 0 3258 | public const int AppCompatTextView_android_textAppearance = 0; 3259 | 3260 | // aapt resource value: 1 3261 | public const int AppCompatTextView_textAllCaps = 1; 3262 | 3263 | public static int[] AppCompatTheme = new int[] 3264 | { 3265 | 16842839, 3266 | 16842926, 3267 | 2130772006, 3268 | 2130772007, 3269 | 2130772008, 3270 | 2130772009, 3271 | 2130772010, 3272 | 2130772011, 3273 | 2130772012, 3274 | 2130772013, 3275 | 2130772014, 3276 | 2130772015, 3277 | 2130772016, 3278 | 2130772017, 3279 | 2130772018, 3280 | 2130772019, 3281 | 2130772020, 3282 | 2130772021, 3283 | 2130772022, 3284 | 2130772023, 3285 | 2130772024, 3286 | 2130772025, 3287 | 2130772026, 3288 | 2130772027, 3289 | 2130772028, 3290 | 2130772029, 3291 | 2130772030, 3292 | 2130772031, 3293 | 2130772032, 3294 | 2130772033, 3295 | 2130772034, 3296 | 2130772035, 3297 | 2130772036, 3298 | 2130772037, 3299 | 2130772038, 3300 | 2130772039, 3301 | 2130772040, 3302 | 2130772041, 3303 | 2130772042, 3304 | 2130772043, 3305 | 2130772044, 3306 | 2130772045, 3307 | 2130772046, 3308 | 2130772047, 3309 | 2130772048, 3310 | 2130772049, 3311 | 2130772050, 3312 | 2130772051, 3313 | 2130772052, 3314 | 2130772053, 3315 | 2130772054, 3316 | 2130772055, 3317 | 2130772056, 3318 | 2130772057, 3319 | 2130772058, 3320 | 2130772059, 3321 | 2130772060, 3322 | 2130772061, 3323 | 2130772062, 3324 | 2130772063, 3325 | 2130772064, 3326 | 2130772065, 3327 | 2130772066, 3328 | 2130772067, 3329 | 2130772068, 3330 | 2130772069, 3331 | 2130772070, 3332 | 2130772071, 3333 | 2130772072, 3334 | 2130772073, 3335 | 2130772074, 3336 | 2130772075, 3337 | 2130772076, 3338 | 2130772077, 3339 | 2130772078, 3340 | 2130772079, 3341 | 2130772080, 3342 | 2130772081, 3343 | 2130772082, 3344 | 2130772083, 3345 | 2130772084, 3346 | 2130772085, 3347 | 2130772086, 3348 | 2130772087, 3349 | 2130772088, 3350 | 2130772089, 3351 | 2130772090, 3352 | 2130772091, 3353 | 2130772092, 3354 | 2130772093, 3355 | 2130772094, 3356 | 2130772095, 3357 | 2130772096, 3358 | 2130772097, 3359 | 2130772098, 3360 | 2130772099, 3361 | 2130772100, 3362 | 2130772101, 3363 | 2130772102, 3364 | 2130772103, 3365 | 2130772104, 3366 | 2130772105, 3367 | 2130772106, 3368 | 2130772107, 3369 | 2130772108, 3370 | 2130772109, 3371 | 2130772110, 3372 | 2130772111, 3373 | 2130772112, 3374 | 2130772113, 3375 | 2130772114, 3376 | 2130772115}; 3377 | 3378 | // aapt resource value: 23 3379 | public const int AppCompatTheme_actionBarDivider = 23; 3380 | 3381 | // aapt resource value: 24 3382 | public const int AppCompatTheme_actionBarItemBackground = 24; 3383 | 3384 | // aapt resource value: 17 3385 | public const int AppCompatTheme_actionBarPopupTheme = 17; 3386 | 3387 | // aapt resource value: 22 3388 | public const int AppCompatTheme_actionBarSize = 22; 3389 | 3390 | // aapt resource value: 19 3391 | public const int AppCompatTheme_actionBarSplitStyle = 19; 3392 | 3393 | // aapt resource value: 18 3394 | public const int AppCompatTheme_actionBarStyle = 18; 3395 | 3396 | // aapt resource value: 13 3397 | public const int AppCompatTheme_actionBarTabBarStyle = 13; 3398 | 3399 | // aapt resource value: 12 3400 | public const int AppCompatTheme_actionBarTabStyle = 12; 3401 | 3402 | // aapt resource value: 14 3403 | public const int AppCompatTheme_actionBarTabTextStyle = 14; 3404 | 3405 | // aapt resource value: 20 3406 | public const int AppCompatTheme_actionBarTheme = 20; 3407 | 3408 | // aapt resource value: 21 3409 | public const int AppCompatTheme_actionBarWidgetTheme = 21; 3410 | 3411 | // aapt resource value: 49 3412 | public const int AppCompatTheme_actionButtonStyle = 49; 3413 | 3414 | // aapt resource value: 45 3415 | public const int AppCompatTheme_actionDropDownStyle = 45; 3416 | 3417 | // aapt resource value: 25 3418 | public const int AppCompatTheme_actionMenuTextAppearance = 25; 3419 | 3420 | // aapt resource value: 26 3421 | public const int AppCompatTheme_actionMenuTextColor = 26; 3422 | 3423 | // aapt resource value: 29 3424 | public const int AppCompatTheme_actionModeBackground = 29; 3425 | 3426 | // aapt resource value: 28 3427 | public const int AppCompatTheme_actionModeCloseButtonStyle = 28; 3428 | 3429 | // aapt resource value: 31 3430 | public const int AppCompatTheme_actionModeCloseDrawable = 31; 3431 | 3432 | // aapt resource value: 33 3433 | public const int AppCompatTheme_actionModeCopyDrawable = 33; 3434 | 3435 | // aapt resource value: 32 3436 | public const int AppCompatTheme_actionModeCutDrawable = 32; 3437 | 3438 | // aapt resource value: 37 3439 | public const int AppCompatTheme_actionModeFindDrawable = 37; 3440 | 3441 | // aapt resource value: 34 3442 | public const int AppCompatTheme_actionModePasteDrawable = 34; 3443 | 3444 | // aapt resource value: 39 3445 | public const int AppCompatTheme_actionModePopupWindowStyle = 39; 3446 | 3447 | // aapt resource value: 35 3448 | public const int AppCompatTheme_actionModeSelectAllDrawable = 35; 3449 | 3450 | // aapt resource value: 36 3451 | public const int AppCompatTheme_actionModeShareDrawable = 36; 3452 | 3453 | // aapt resource value: 30 3454 | public const int AppCompatTheme_actionModeSplitBackground = 30; 3455 | 3456 | // aapt resource value: 27 3457 | public const int AppCompatTheme_actionModeStyle = 27; 3458 | 3459 | // aapt resource value: 38 3460 | public const int AppCompatTheme_actionModeWebSearchDrawable = 38; 3461 | 3462 | // aapt resource value: 15 3463 | public const int AppCompatTheme_actionOverflowButtonStyle = 15; 3464 | 3465 | // aapt resource value: 16 3466 | public const int AppCompatTheme_actionOverflowMenuStyle = 16; 3467 | 3468 | // aapt resource value: 57 3469 | public const int AppCompatTheme_activityChooserViewStyle = 57; 3470 | 3471 | // aapt resource value: 92 3472 | public const int AppCompatTheme_alertDialogButtonGroupStyle = 92; 3473 | 3474 | // aapt resource value: 93 3475 | public const int AppCompatTheme_alertDialogCenterButtons = 93; 3476 | 3477 | // aapt resource value: 91 3478 | public const int AppCompatTheme_alertDialogStyle = 91; 3479 | 3480 | // aapt resource value: 94 3481 | public const int AppCompatTheme_alertDialogTheme = 94; 3482 | 3483 | // aapt resource value: 1 3484 | public const int AppCompatTheme_android_windowAnimationStyle = 1; 3485 | 3486 | // aapt resource value: 0 3487 | public const int AppCompatTheme_android_windowIsFloating = 0; 3488 | 3489 | // aapt resource value: 99 3490 | public const int AppCompatTheme_autoCompleteTextViewStyle = 99; 3491 | 3492 | // aapt resource value: 54 3493 | public const int AppCompatTheme_borderlessButtonStyle = 54; 3494 | 3495 | // aapt resource value: 51 3496 | public const int AppCompatTheme_buttonBarButtonStyle = 51; 3497 | 3498 | // aapt resource value: 97 3499 | public const int AppCompatTheme_buttonBarNegativeButtonStyle = 97; 3500 | 3501 | // aapt resource value: 98 3502 | public const int AppCompatTheme_buttonBarNeutralButtonStyle = 98; 3503 | 3504 | // aapt resource value: 96 3505 | public const int AppCompatTheme_buttonBarPositiveButtonStyle = 96; 3506 | 3507 | // aapt resource value: 50 3508 | public const int AppCompatTheme_buttonBarStyle = 50; 3509 | 3510 | // aapt resource value: 100 3511 | public const int AppCompatTheme_buttonStyle = 100; 3512 | 3513 | // aapt resource value: 101 3514 | public const int AppCompatTheme_buttonStyleSmall = 101; 3515 | 3516 | // aapt resource value: 102 3517 | public const int AppCompatTheme_checkboxStyle = 102; 3518 | 3519 | // aapt resource value: 103 3520 | public const int AppCompatTheme_checkedTextViewStyle = 103; 3521 | 3522 | // aapt resource value: 84 3523 | public const int AppCompatTheme_colorAccent = 84; 3524 | 3525 | // aapt resource value: 88 3526 | public const int AppCompatTheme_colorButtonNormal = 88; 3527 | 3528 | // aapt resource value: 86 3529 | public const int AppCompatTheme_colorControlActivated = 86; 3530 | 3531 | // aapt resource value: 87 3532 | public const int AppCompatTheme_colorControlHighlight = 87; 3533 | 3534 | // aapt resource value: 85 3535 | public const int AppCompatTheme_colorControlNormal = 85; 3536 | 3537 | // aapt resource value: 82 3538 | public const int AppCompatTheme_colorPrimary = 82; 3539 | 3540 | // aapt resource value: 83 3541 | public const int AppCompatTheme_colorPrimaryDark = 83; 3542 | 3543 | // aapt resource value: 89 3544 | public const int AppCompatTheme_colorSwitchThumbNormal = 89; 3545 | 3546 | // aapt resource value: 90 3547 | public const int AppCompatTheme_controlBackground = 90; 3548 | 3549 | // aapt resource value: 43 3550 | public const int AppCompatTheme_dialogPreferredPadding = 43; 3551 | 3552 | // aapt resource value: 42 3553 | public const int AppCompatTheme_dialogTheme = 42; 3554 | 3555 | // aapt resource value: 56 3556 | public const int AppCompatTheme_dividerHorizontal = 56; 3557 | 3558 | // aapt resource value: 55 3559 | public const int AppCompatTheme_dividerVertical = 55; 3560 | 3561 | // aapt resource value: 74 3562 | public const int AppCompatTheme_dropDownListViewStyle = 74; 3563 | 3564 | // aapt resource value: 46 3565 | public const int AppCompatTheme_dropdownListPreferredItemHeight = 46; 3566 | 3567 | // aapt resource value: 63 3568 | public const int AppCompatTheme_editTextBackground = 63; 3569 | 3570 | // aapt resource value: 62 3571 | public const int AppCompatTheme_editTextColor = 62; 3572 | 3573 | // aapt resource value: 104 3574 | public const int AppCompatTheme_editTextStyle = 104; 3575 | 3576 | // aapt resource value: 48 3577 | public const int AppCompatTheme_homeAsUpIndicator = 48; 3578 | 3579 | // aapt resource value: 64 3580 | public const int AppCompatTheme_imageButtonStyle = 64; 3581 | 3582 | // aapt resource value: 81 3583 | public const int AppCompatTheme_listChoiceBackgroundIndicator = 81; 3584 | 3585 | // aapt resource value: 44 3586 | public const int AppCompatTheme_listDividerAlertDialog = 44; 3587 | 3588 | // aapt resource value: 75 3589 | public const int AppCompatTheme_listPopupWindowStyle = 75; 3590 | 3591 | // aapt resource value: 69 3592 | public const int AppCompatTheme_listPreferredItemHeight = 69; 3593 | 3594 | // aapt resource value: 71 3595 | public const int AppCompatTheme_listPreferredItemHeightLarge = 71; 3596 | 3597 | // aapt resource value: 70 3598 | public const int AppCompatTheme_listPreferredItemHeightSmall = 70; 3599 | 3600 | // aapt resource value: 72 3601 | public const int AppCompatTheme_listPreferredItemPaddingLeft = 72; 3602 | 3603 | // aapt resource value: 73 3604 | public const int AppCompatTheme_listPreferredItemPaddingRight = 73; 3605 | 3606 | // aapt resource value: 78 3607 | public const int AppCompatTheme_panelBackground = 78; 3608 | 3609 | // aapt resource value: 80 3610 | public const int AppCompatTheme_panelMenuListTheme = 80; 3611 | 3612 | // aapt resource value: 79 3613 | public const int AppCompatTheme_panelMenuListWidth = 79; 3614 | 3615 | // aapt resource value: 60 3616 | public const int AppCompatTheme_popupMenuStyle = 60; 3617 | 3618 | // aapt resource value: 61 3619 | public const int AppCompatTheme_popupWindowStyle = 61; 3620 | 3621 | // aapt resource value: 105 3622 | public const int AppCompatTheme_radioButtonStyle = 105; 3623 | 3624 | // aapt resource value: 106 3625 | public const int AppCompatTheme_ratingBarStyle = 106; 3626 | 3627 | // aapt resource value: 107 3628 | public const int AppCompatTheme_ratingBarStyleIndicator = 107; 3629 | 3630 | // aapt resource value: 108 3631 | public const int AppCompatTheme_ratingBarStyleSmall = 108; 3632 | 3633 | // aapt resource value: 68 3634 | public const int AppCompatTheme_searchViewStyle = 68; 3635 | 3636 | // aapt resource value: 109 3637 | public const int AppCompatTheme_seekBarStyle = 109; 3638 | 3639 | // aapt resource value: 52 3640 | public const int AppCompatTheme_selectableItemBackground = 52; 3641 | 3642 | // aapt resource value: 53 3643 | public const int AppCompatTheme_selectableItemBackgroundBorderless = 53; 3644 | 3645 | // aapt resource value: 47 3646 | public const int AppCompatTheme_spinnerDropDownItemStyle = 47; 3647 | 3648 | // aapt resource value: 110 3649 | public const int AppCompatTheme_spinnerStyle = 110; 3650 | 3651 | // aapt resource value: 111 3652 | public const int AppCompatTheme_switchStyle = 111; 3653 | 3654 | // aapt resource value: 40 3655 | public const int AppCompatTheme_textAppearanceLargePopupMenu = 40; 3656 | 3657 | // aapt resource value: 76 3658 | public const int AppCompatTheme_textAppearanceListItem = 76; 3659 | 3660 | // aapt resource value: 77 3661 | public const int AppCompatTheme_textAppearanceListItemSmall = 77; 3662 | 3663 | // aapt resource value: 66 3664 | public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; 3665 | 3666 | // aapt resource value: 65 3667 | public const int AppCompatTheme_textAppearanceSearchResultTitle = 65; 3668 | 3669 | // aapt resource value: 41 3670 | public const int AppCompatTheme_textAppearanceSmallPopupMenu = 41; 3671 | 3672 | // aapt resource value: 95 3673 | public const int AppCompatTheme_textColorAlertDialogListItem = 95; 3674 | 3675 | // aapt resource value: 67 3676 | public const int AppCompatTheme_textColorSearchUrl = 67; 3677 | 3678 | // aapt resource value: 59 3679 | public const int AppCompatTheme_toolbarNavigationButtonStyle = 59; 3680 | 3681 | // aapt resource value: 58 3682 | public const int AppCompatTheme_toolbarStyle = 58; 3683 | 3684 | // aapt resource value: 2 3685 | public const int AppCompatTheme_windowActionBar = 2; 3686 | 3687 | // aapt resource value: 4 3688 | public const int AppCompatTheme_windowActionBarOverlay = 4; 3689 | 3690 | // aapt resource value: 5 3691 | public const int AppCompatTheme_windowActionModeOverlay = 5; 3692 | 3693 | // aapt resource value: 9 3694 | public const int AppCompatTheme_windowFixedHeightMajor = 9; 3695 | 3696 | // aapt resource value: 7 3697 | public const int AppCompatTheme_windowFixedHeightMinor = 7; 3698 | 3699 | // aapt resource value: 6 3700 | public const int AppCompatTheme_windowFixedWidthMajor = 6; 3701 | 3702 | // aapt resource value: 8 3703 | public const int AppCompatTheme_windowFixedWidthMinor = 8; 3704 | 3705 | // aapt resource value: 10 3706 | public const int AppCompatTheme_windowMinWidthMajor = 10; 3707 | 3708 | // aapt resource value: 11 3709 | public const int AppCompatTheme_windowMinWidthMinor = 11; 3710 | 3711 | // aapt resource value: 3 3712 | public const int AppCompatTheme_windowNoTitle = 3; 3713 | 3714 | public static int[] ButtonBarLayout = new int[] 3715 | { 3716 | 2130772116}; 3717 | 3718 | // aapt resource value: 0 3719 | public const int ButtonBarLayout_allowStacking = 0; 3720 | 3721 | public static int[] CircleImageView = new int[] 3722 | { 3723 | 2130772178, 3724 | 2130772179, 3725 | 2130772180, 3726 | 2130772181}; 3727 | 3728 | // aapt resource value: 1 3729 | public const int CircleImageView_civ_border_color = 1; 3730 | 3731 | // aapt resource value: 2 3732 | public const int CircleImageView_civ_border_overlay = 2; 3733 | 3734 | // aapt resource value: 0 3735 | public const int CircleImageView_civ_border_width = 0; 3736 | 3737 | // aapt resource value: 3 3738 | public const int CircleImageView_civ_fill_color = 3; 3739 | 3740 | public static int[] CompoundButton = new int[] 3741 | { 3742 | 16843015, 3743 | 2130772117, 3744 | 2130772118}; 3745 | 3746 | // aapt resource value: 0 3747 | public const int CompoundButton_android_button = 0; 3748 | 3749 | // aapt resource value: 1 3750 | public const int CompoundButton_buttonTint = 1; 3751 | 3752 | // aapt resource value: 2 3753 | public const int CompoundButton_buttonTintMode = 2; 3754 | 3755 | public static int[] DrawerArrowToggle = new int[] 3756 | { 3757 | 2130772119, 3758 | 2130772120, 3759 | 2130772121, 3760 | 2130772122, 3761 | 2130772123, 3762 | 2130772124, 3763 | 2130772125, 3764 | 2130772126}; 3765 | 3766 | // aapt resource value: 4 3767 | public const int DrawerArrowToggle_arrowHeadLength = 4; 3768 | 3769 | // aapt resource value: 5 3770 | public const int DrawerArrowToggle_arrowShaftLength = 5; 3771 | 3772 | // aapt resource value: 6 3773 | public const int DrawerArrowToggle_barLength = 6; 3774 | 3775 | // aapt resource value: 0 3776 | public const int DrawerArrowToggle_color = 0; 3777 | 3778 | // aapt resource value: 2 3779 | public const int DrawerArrowToggle_drawableSize = 2; 3780 | 3781 | // aapt resource value: 3 3782 | public const int DrawerArrowToggle_gapBetweenBars = 3; 3783 | 3784 | // aapt resource value: 1 3785 | public const int DrawerArrowToggle_spinBars = 1; 3786 | 3787 | // aapt resource value: 7 3788 | public const int DrawerArrowToggle_thickness = 7; 3789 | 3790 | public static int[] LinearLayoutCompat = new int[] 3791 | { 3792 | 16842927, 3793 | 16842948, 3794 | 16843046, 3795 | 16843047, 3796 | 16843048, 3797 | 2130771979, 3798 | 2130772127, 3799 | 2130772128, 3800 | 2130772129}; 3801 | 3802 | // aapt resource value: 2 3803 | public const int LinearLayoutCompat_android_baselineAligned = 2; 3804 | 3805 | // aapt resource value: 3 3806 | public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; 3807 | 3808 | // aapt resource value: 0 3809 | public const int LinearLayoutCompat_android_gravity = 0; 3810 | 3811 | // aapt resource value: 1 3812 | public const int LinearLayoutCompat_android_orientation = 1; 3813 | 3814 | // aapt resource value: 4 3815 | public const int LinearLayoutCompat_android_weightSum = 4; 3816 | 3817 | // aapt resource value: 5 3818 | public const int LinearLayoutCompat_divider = 5; 3819 | 3820 | // aapt resource value: 8 3821 | public const int LinearLayoutCompat_dividerPadding = 8; 3822 | 3823 | // aapt resource value: 6 3824 | public const int LinearLayoutCompat_measureWithLargestChild = 6; 3825 | 3826 | // aapt resource value: 7 3827 | public const int LinearLayoutCompat_showDividers = 7; 3828 | 3829 | public static int[] LinearLayoutCompat_Layout = new int[] 3830 | { 3831 | 16842931, 3832 | 16842996, 3833 | 16842997, 3834 | 16843137}; 3835 | 3836 | // aapt resource value: 0 3837 | public const int LinearLayoutCompat_Layout_android_layout_gravity = 0; 3838 | 3839 | // aapt resource value: 2 3840 | public const int LinearLayoutCompat_Layout_android_layout_height = 2; 3841 | 3842 | // aapt resource value: 3 3843 | public const int LinearLayoutCompat_Layout_android_layout_weight = 3; 3844 | 3845 | // aapt resource value: 1 3846 | public const int LinearLayoutCompat_Layout_android_layout_width = 1; 3847 | 3848 | public static int[] ListPopupWindow = new int[] 3849 | { 3850 | 16843436, 3851 | 16843437}; 3852 | 3853 | // aapt resource value: 0 3854 | public const int ListPopupWindow_android_dropDownHorizontalOffset = 0; 3855 | 3856 | // aapt resource value: 1 3857 | public const int ListPopupWindow_android_dropDownVerticalOffset = 1; 3858 | 3859 | public static int[] MenuGroup = new int[] 3860 | { 3861 | 16842766, 3862 | 16842960, 3863 | 16843156, 3864 | 16843230, 3865 | 16843231, 3866 | 16843232}; 3867 | 3868 | // aapt resource value: 5 3869 | public const int MenuGroup_android_checkableBehavior = 5; 3870 | 3871 | // aapt resource value: 0 3872 | public const int MenuGroup_android_enabled = 0; 3873 | 3874 | // aapt resource value: 1 3875 | public const int MenuGroup_android_id = 1; 3876 | 3877 | // aapt resource value: 3 3878 | public const int MenuGroup_android_menuCategory = 3; 3879 | 3880 | // aapt resource value: 4 3881 | public const int MenuGroup_android_orderInCategory = 4; 3882 | 3883 | // aapt resource value: 2 3884 | public const int MenuGroup_android_visible = 2; 3885 | 3886 | public static int[] MenuItem = new int[] 3887 | { 3888 | 16842754, 3889 | 16842766, 3890 | 16842960, 3891 | 16843014, 3892 | 16843156, 3893 | 16843230, 3894 | 16843231, 3895 | 16843233, 3896 | 16843234, 3897 | 16843235, 3898 | 16843236, 3899 | 16843237, 3900 | 16843375, 3901 | 2130772130, 3902 | 2130772131, 3903 | 2130772132, 3904 | 2130772133}; 3905 | 3906 | // aapt resource value: 14 3907 | public const int MenuItem_actionLayout = 14; 3908 | 3909 | // aapt resource value: 16 3910 | public const int MenuItem_actionProviderClass = 16; 3911 | 3912 | // aapt resource value: 15 3913 | public const int MenuItem_actionViewClass = 15; 3914 | 3915 | // aapt resource value: 9 3916 | public const int MenuItem_android_alphabeticShortcut = 9; 3917 | 3918 | // aapt resource value: 11 3919 | public const int MenuItem_android_checkable = 11; 3920 | 3921 | // aapt resource value: 3 3922 | public const int MenuItem_android_checked = 3; 3923 | 3924 | // aapt resource value: 1 3925 | public const int MenuItem_android_enabled = 1; 3926 | 3927 | // aapt resource value: 0 3928 | public const int MenuItem_android_icon = 0; 3929 | 3930 | // aapt resource value: 2 3931 | public const int MenuItem_android_id = 2; 3932 | 3933 | // aapt resource value: 5 3934 | public const int MenuItem_android_menuCategory = 5; 3935 | 3936 | // aapt resource value: 10 3937 | public const int MenuItem_android_numericShortcut = 10; 3938 | 3939 | // aapt resource value: 12 3940 | public const int MenuItem_android_onClick = 12; 3941 | 3942 | // aapt resource value: 6 3943 | public const int MenuItem_android_orderInCategory = 6; 3944 | 3945 | // aapt resource value: 7 3946 | public const int MenuItem_android_title = 7; 3947 | 3948 | // aapt resource value: 8 3949 | public const int MenuItem_android_titleCondensed = 8; 3950 | 3951 | // aapt resource value: 4 3952 | public const int MenuItem_android_visible = 4; 3953 | 3954 | // aapt resource value: 13 3955 | public const int MenuItem_showAsAction = 13; 3956 | 3957 | public static int[] MenuView = new int[] 3958 | { 3959 | 16842926, 3960 | 16843052, 3961 | 16843053, 3962 | 16843054, 3963 | 16843055, 3964 | 16843056, 3965 | 16843057, 3966 | 2130772134}; 3967 | 3968 | // aapt resource value: 4 3969 | public const int MenuView_android_headerBackground = 4; 3970 | 3971 | // aapt resource value: 2 3972 | public const int MenuView_android_horizontalDivider = 2; 3973 | 3974 | // aapt resource value: 5 3975 | public const int MenuView_android_itemBackground = 5; 3976 | 3977 | // aapt resource value: 6 3978 | public const int MenuView_android_itemIconDisabledAlpha = 6; 3979 | 3980 | // aapt resource value: 1 3981 | public const int MenuView_android_itemTextAppearance = 1; 3982 | 3983 | // aapt resource value: 3 3984 | public const int MenuView_android_verticalDivider = 3; 3985 | 3986 | // aapt resource value: 0 3987 | public const int MenuView_android_windowAnimationStyle = 0; 3988 | 3989 | // aapt resource value: 7 3990 | public const int MenuView_preserveIconSpacing = 7; 3991 | 3992 | public static int[] PopupWindow = new int[] 3993 | { 3994 | 16843126, 3995 | 2130772135}; 3996 | 3997 | // aapt resource value: 0 3998 | public const int PopupWindow_android_popupBackground = 0; 3999 | 4000 | // aapt resource value: 1 4001 | public const int PopupWindow_overlapAnchor = 1; 4002 | 4003 | public static int[] PopupWindowBackgroundState = new int[] 4004 | { 4005 | 2130772136}; 4006 | 4007 | // aapt resource value: 0 4008 | public const int PopupWindowBackgroundState_state_above_anchor = 0; 4009 | 4010 | public static int[] SearchView = new int[] 4011 | { 4012 | 16842970, 4013 | 16843039, 4014 | 16843296, 4015 | 16843364, 4016 | 2130772137, 4017 | 2130772138, 4018 | 2130772139, 4019 | 2130772140, 4020 | 2130772141, 4021 | 2130772142, 4022 | 2130772143, 4023 | 2130772144, 4024 | 2130772145, 4025 | 2130772146, 4026 | 2130772147, 4027 | 2130772148, 4028 | 2130772149}; 4029 | 4030 | // aapt resource value: 0 4031 | public const int SearchView_android_focusable = 0; 4032 | 4033 | // aapt resource value: 3 4034 | public const int SearchView_android_imeOptions = 3; 4035 | 4036 | // aapt resource value: 2 4037 | public const int SearchView_android_inputType = 2; 4038 | 4039 | // aapt resource value: 1 4040 | public const int SearchView_android_maxWidth = 1; 4041 | 4042 | // aapt resource value: 8 4043 | public const int SearchView_closeIcon = 8; 4044 | 4045 | // aapt resource value: 13 4046 | public const int SearchView_commitIcon = 13; 4047 | 4048 | // aapt resource value: 7 4049 | public const int SearchView_defaultQueryHint = 7; 4050 | 4051 | // aapt resource value: 9 4052 | public const int SearchView_goIcon = 9; 4053 | 4054 | // aapt resource value: 5 4055 | public const int SearchView_iconifiedByDefault = 5; 4056 | 4057 | // aapt resource value: 4 4058 | public const int SearchView_layout = 4; 4059 | 4060 | // aapt resource value: 15 4061 | public const int SearchView_queryBackground = 15; 4062 | 4063 | // aapt resource value: 6 4064 | public const int SearchView_queryHint = 6; 4065 | 4066 | // aapt resource value: 11 4067 | public const int SearchView_searchHintIcon = 11; 4068 | 4069 | // aapt resource value: 10 4070 | public const int SearchView_searchIcon = 10; 4071 | 4072 | // aapt resource value: 16 4073 | public const int SearchView_submitBackground = 16; 4074 | 4075 | // aapt resource value: 14 4076 | public const int SearchView_suggestionRowLayout = 14; 4077 | 4078 | // aapt resource value: 12 4079 | public const int SearchView_voiceIcon = 12; 4080 | 4081 | public static int[] SideBar = new int[] 4082 | { 4083 | 2130772177}; 4084 | 4085 | // aapt resource value: 0 4086 | public const int SideBar_maxTranslationX = 0; 4087 | 4088 | public static int[] Spinner = new int[] 4089 | { 4090 | 16842930, 4091 | 16843126, 4092 | 16843131, 4093 | 16843362, 4094 | 2130771995}; 4095 | 4096 | // aapt resource value: 3 4097 | public const int Spinner_android_dropDownWidth = 3; 4098 | 4099 | // aapt resource value: 0 4100 | public const int Spinner_android_entries = 0; 4101 | 4102 | // aapt resource value: 1 4103 | public const int Spinner_android_popupBackground = 1; 4104 | 4105 | // aapt resource value: 2 4106 | public const int Spinner_android_prompt = 2; 4107 | 4108 | // aapt resource value: 4 4109 | public const int Spinner_popupTheme = 4; 4110 | 4111 | public static int[] SwitchCompat = new int[] 4112 | { 4113 | 16843044, 4114 | 16843045, 4115 | 16843074, 4116 | 2130772150, 4117 | 2130772151, 4118 | 2130772152, 4119 | 2130772153, 4120 | 2130772154, 4121 | 2130772155, 4122 | 2130772156}; 4123 | 4124 | // aapt resource value: 1 4125 | public const int SwitchCompat_android_textOff = 1; 4126 | 4127 | // aapt resource value: 0 4128 | public const int SwitchCompat_android_textOn = 0; 4129 | 4130 | // aapt resource value: 2 4131 | public const int SwitchCompat_android_thumb = 2; 4132 | 4133 | // aapt resource value: 9 4134 | public const int SwitchCompat_showText = 9; 4135 | 4136 | // aapt resource value: 8 4137 | public const int SwitchCompat_splitTrack = 8; 4138 | 4139 | // aapt resource value: 6 4140 | public const int SwitchCompat_switchMinWidth = 6; 4141 | 4142 | // aapt resource value: 7 4143 | public const int SwitchCompat_switchPadding = 7; 4144 | 4145 | // aapt resource value: 5 4146 | public const int SwitchCompat_switchTextAppearance = 5; 4147 | 4148 | // aapt resource value: 4 4149 | public const int SwitchCompat_thumbTextPadding = 4; 4150 | 4151 | // aapt resource value: 3 4152 | public const int SwitchCompat_track = 3; 4153 | 4154 | public static int[] TextAppearance = new int[] 4155 | { 4156 | 16842901, 4157 | 16842902, 4158 | 16842903, 4159 | 16842904, 4160 | 16843105, 4161 | 16843106, 4162 | 16843107, 4163 | 16843108, 4164 | 2130772005}; 4165 | 4166 | // aapt resource value: 4 4167 | public const int TextAppearance_android_shadowColor = 4; 4168 | 4169 | // aapt resource value: 5 4170 | public const int TextAppearance_android_shadowDx = 5; 4171 | 4172 | // aapt resource value: 6 4173 | public const int TextAppearance_android_shadowDy = 6; 4174 | 4175 | // aapt resource value: 7 4176 | public const int TextAppearance_android_shadowRadius = 7; 4177 | 4178 | // aapt resource value: 3 4179 | public const int TextAppearance_android_textColor = 3; 4180 | 4181 | // aapt resource value: 0 4182 | public const int TextAppearance_android_textSize = 0; 4183 | 4184 | // aapt resource value: 2 4185 | public const int TextAppearance_android_textStyle = 2; 4186 | 4187 | // aapt resource value: 1 4188 | public const int TextAppearance_android_typeface = 1; 4189 | 4190 | // aapt resource value: 8 4191 | public const int TextAppearance_textAllCaps = 8; 4192 | 4193 | public static int[] Toolbar = new int[] 4194 | { 4195 | 16842927, 4196 | 16843072, 4197 | 2130771971, 4198 | 2130771974, 4199 | 2130771978, 4200 | 2130771990, 4201 | 2130771991, 4202 | 2130771992, 4203 | 2130771993, 4204 | 2130771995, 4205 | 2130772157, 4206 | 2130772158, 4207 | 2130772159, 4208 | 2130772160, 4209 | 2130772161, 4210 | 2130772162, 4211 | 2130772163, 4212 | 2130772164, 4213 | 2130772165, 4214 | 2130772166, 4215 | 2130772167, 4216 | 2130772168, 4217 | 2130772169, 4218 | 2130772170, 4219 | 2130772171}; 4220 | 4221 | // aapt resource value: 0 4222 | public const int Toolbar_android_gravity = 0; 4223 | 4224 | // aapt resource value: 1 4225 | public const int Toolbar_android_minHeight = 1; 4226 | 4227 | // aapt resource value: 19 4228 | public const int Toolbar_collapseContentDescription = 19; 4229 | 4230 | // aapt resource value: 18 4231 | public const int Toolbar_collapseIcon = 18; 4232 | 4233 | // aapt resource value: 6 4234 | public const int Toolbar_contentInsetEnd = 6; 4235 | 4236 | // aapt resource value: 7 4237 | public const int Toolbar_contentInsetLeft = 7; 4238 | 4239 | // aapt resource value: 8 4240 | public const int Toolbar_contentInsetRight = 8; 4241 | 4242 | // aapt resource value: 5 4243 | public const int Toolbar_contentInsetStart = 5; 4244 | 4245 | // aapt resource value: 4 4246 | public const int Toolbar_logo = 4; 4247 | 4248 | // aapt resource value: 22 4249 | public const int Toolbar_logoDescription = 22; 4250 | 4251 | // aapt resource value: 17 4252 | public const int Toolbar_maxButtonHeight = 17; 4253 | 4254 | // aapt resource value: 21 4255 | public const int Toolbar_navigationContentDescription = 21; 4256 | 4257 | // aapt resource value: 20 4258 | public const int Toolbar_navigationIcon = 20; 4259 | 4260 | // aapt resource value: 9 4261 | public const int Toolbar_popupTheme = 9; 4262 | 4263 | // aapt resource value: 3 4264 | public const int Toolbar_subtitle = 3; 4265 | 4266 | // aapt resource value: 11 4267 | public const int Toolbar_subtitleTextAppearance = 11; 4268 | 4269 | // aapt resource value: 24 4270 | public const int Toolbar_subtitleTextColor = 24; 4271 | 4272 | // aapt resource value: 2 4273 | public const int Toolbar_title = 2; 4274 | 4275 | // aapt resource value: 16 4276 | public const int Toolbar_titleMarginBottom = 16; 4277 | 4278 | // aapt resource value: 14 4279 | public const int Toolbar_titleMarginEnd = 14; 4280 | 4281 | // aapt resource value: 13 4282 | public const int Toolbar_titleMarginStart = 13; 4283 | 4284 | // aapt resource value: 15 4285 | public const int Toolbar_titleMarginTop = 15; 4286 | 4287 | // aapt resource value: 12 4288 | public const int Toolbar_titleMargins = 12; 4289 | 4290 | // aapt resource value: 10 4291 | public const int Toolbar_titleTextAppearance = 10; 4292 | 4293 | // aapt resource value: 23 4294 | public const int Toolbar_titleTextColor = 23; 4295 | 4296 | public static int[] View = new int[] 4297 | { 4298 | 16842752, 4299 | 16842970, 4300 | 2130772172, 4301 | 2130772173, 4302 | 2130772174}; 4303 | 4304 | // aapt resource value: 1 4305 | public const int View_android_focusable = 1; 4306 | 4307 | // aapt resource value: 0 4308 | public const int View_android_theme = 0; 4309 | 4310 | // aapt resource value: 3 4311 | public const int View_paddingEnd = 3; 4312 | 4313 | // aapt resource value: 2 4314 | public const int View_paddingStart = 2; 4315 | 4316 | // aapt resource value: 4 4317 | public const int View_theme = 4; 4318 | 4319 | public static int[] ViewBackgroundHelper = new int[] 4320 | { 4321 | 16842964, 4322 | 2130772175, 4323 | 2130772176}; 4324 | 4325 | // aapt resource value: 0 4326 | public const int ViewBackgroundHelper_android_background = 0; 4327 | 4328 | // aapt resource value: 1 4329 | public const int ViewBackgroundHelper_backgroundTint = 1; 4330 | 4331 | // aapt resource value: 2 4332 | public const int ViewBackgroundHelper_backgroundTintMode = 2; 4333 | 4334 | public static int[] ViewStubCompat = new int[] 4335 | { 4336 | 16842960, 4337 | 16842994, 4338 | 16842995}; 4339 | 4340 | // aapt resource value: 0 4341 | public const int ViewStubCompat_android_id = 0; 4342 | 4343 | // aapt resource value: 2 4344 | public const int ViewStubCompat_android_inflatedId = 2; 4345 | 4346 | // aapt resource value: 1 4347 | public const int ViewStubCompat_android_layout = 1; 4348 | 4349 | static Styleable() 4350 | { 4351 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 4352 | } 4353 | 4354 | private Styleable() 4355 | { 4356 | } 4357 | } 4358 | } 4359 | } 4360 | #pragma warning restore 1591 4361 | -------------------------------------------------------------------------------- /Sample/Resources/color/menu_text_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/circle.png -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/coupon.png -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/fake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/fake.jpg -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/friends.png -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/home.png -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/me.jpg -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/settings.png -------------------------------------------------------------------------------- /Sample/Resources/drawable-xxhdpi/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/drawable-xxhdpi/wallet.png -------------------------------------------------------------------------------- /Sample/Resources/drawable/bg_right_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /Sample/Resources/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 9 | 14 | 22 | 30 | 37 | 43 | 44 | 48 | 52 | 56 | 60 | 64 | 65 | 73 | 76 | 79 | 82 | 85 | 88 | 91 | 94 | 95 | 96 | 107 | -------------------------------------------------------------------------------- /Sample/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Sample/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /Sample/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Sample/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Sample/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/Sample/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Sample/Resources/values/Strings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | FantasySlide 4 | 5 | -------------------------------------------------------------------------------- /Sample/Resources/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #324968 4 | #324968 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /Sample/Resources/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 32dp 6 | 7 | -------------------------------------------------------------------------------- /Sample/Resources/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 14 | 15 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Sample/Sample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {1344278C-190D-4682-A560-BAAFF4792290} 7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | Sample 10 | Sample 11 | v6.0 12 | True 13 | Resources\Resource.designer.cs 14 | Resource 15 | Properties\AndroidManifest.xml 16 | Resources 17 | Assets 18 | false 19 | 20 | 21 | true 22 | full 23 | false 24 | bin\Debug 25 | DEBUG; 26 | prompt 27 | 4 28 | false 29 | None 30 | arm64-v8a;armeabi;armeabi-v7a;x86 31 | 32 | 33 | true 34 | bin\Release 35 | prompt 36 | 4 37 | false 38 | false 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | ..\packages\Xamarin.Bindings.CircleImageView.2.1.0\lib\MonoAndroid403\Xamarin.Bindings.CircleImageView.dll\Xamarin.Bindings.CircleImageView.dll 47 | 48 | 49 | ..\packages\Xamarin.Android.Support.v4.23.4.0.1\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll 50 | 51 | 52 | ..\packages\Xamarin.Android.Support.Vector.Drawable.23.4.0.1\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll 53 | 54 | 55 | ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.4.0.1\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll 56 | 57 | 58 | ..\packages\Xamarin.Android.Support.v7.AppCompat.23.4.0.1\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | {946CDCE2-4113-4975-A797-8875C46AD5A7} 102 | FantasySlide 103 | 104 | 105 | 106 | 107 | -------------------------------------------------------------------------------- /Sample/UniversalActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Support.V7.App; 3 | 4 | namespace Sample 5 | { 6 | public class UniversalActivity : AppCompatActivity 7 | { 8 | //TODO: Fix this class 9 | public UniversalActivity() 10 | { 11 | } 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /Sample/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /icon_fantasyslide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/FantasySlideXamarin/c09cbd3cb0697fc550ee7ebf8496e46dd8489f53/icon_fantasyslide.png -------------------------------------------------------------------------------- /nuspec/Xam.Plugins.Android.FantasySlide.nuspec: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Xam.Plugins.Android.FantasySlide 5 | 1.0.4 6 | FantasySlide for Xamarin.Android 7 | Martijn van Dijk 8 | Martijn van Dijk 9 | https://github.com/martijn00/FantasySlideXamarin/blob/master/LICENSE 10 | https://github.com/martijn00/FantasySlideXamarin 11 | https://raw.githubusercontent.com/martijn00/FantasySlideXamarin/master/icon_fantasyslide.png 12 | false 13 | FantasySlide for Xamarin Android 14 | FantasySlide is another sliding menu based on DrawerLayout 15 | xamarin, monodroid, C#, xamarin.android, android, FantasySlide, DrawerLayout, sliding 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | --------------------------------------------------------------------------------