├── .gitignore ├── FUNDING.yml ├── LICENSE ├── README.md ├── Screenshots ├── DragDrop.png ├── DragDropSwipe.png └── SwipeAway.png ├── XamarinItemTouchHelper.Sample ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── RecyclerListAdapter.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable-hdpi │ │ ├── Icon.png │ │ └── ic_reorder_grey_500_24dp.png │ ├── drawable-mdpi │ │ ├── Icon.png │ │ └── ic_reorder_grey_500_24dp.png │ ├── drawable-xhdpi │ │ ├── Icon.png │ │ └── ic_reorder_grey_500_24dp.png │ ├── drawable-xxhdpi │ │ ├── Icon.png │ │ └── ic_reorder_grey_500_24dp.png │ ├── drawable-xxxhdpi │ │ └── Icon.png │ ├── layout │ │ ├── Main.axml │ │ └── item_main.axml │ └── values │ │ ├── Strings.xml │ │ └── styles.xml ├── XamarinItemTouchHelper.Sample.csproj └── packages.config ├── XamarinItemTouchHelper.sln ├── XamarinItemTouchHelper ├── IItemTouchHelperAdapter.cs ├── IItemTouchHelperViewHolder.cs ├── IOnStartDragListener.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ └── Resource.Designer.cs ├── SimpleItemTouchHelperCallback.cs ├── TouchListenerHelper.cs ├── XamarinItemTouchHelper.csproj └── packages.config ├── icon_touchhelper.png └── nuspec └── Xam.Plugins.Android.XamarinItemTouchHelper.nuspec /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | build/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Visual Studo 2015 cache/options directory 26 | .vs/ 27 | 28 | # MSTest test Results 29 | [Tt]est[Rr]esult*/ 30 | [Bb]uild[Ll]og.* 31 | 32 | # NUNIT 33 | *.VisualState.xml 34 | TestResult.xml 35 | 36 | # Build Results of an ATL Project 37 | [Dd]ebugPS/ 38 | [Rr]eleasePS/ 39 | dlldata.c 40 | 41 | *_i.c 42 | *_p.c 43 | *_i.h 44 | *.ilk 45 | *.meta 46 | *.obj 47 | *.pch 48 | *.pdb 49 | *.pgc 50 | *.pgd 51 | *.rsp 52 | *.sbr 53 | *.tlb 54 | *.tli 55 | *.tlh 56 | *.tmp 57 | *.tmp_proj 58 | *.log 59 | *.vspscc 60 | *.vssscc 61 | .builds 62 | *.pidb 63 | *.svclog 64 | *.scc 65 | 66 | # Chutzpah Test files 67 | _Chutzpah* 68 | 69 | # Visual C++ cache files 70 | ipch/ 71 | *.aps 72 | *.ncb 73 | *.opensdf 74 | *.sdf 75 | *.cachefile 76 | 77 | # Visual Studio profiler 78 | *.psess 79 | *.vsp 80 | *.vspx 81 | 82 | # TFS 2012 Local Workspace 83 | $tf/ 84 | 85 | # Guidance Automation Toolkit 86 | *.gpState 87 | 88 | # ReSharper is a .NET coding add-in 89 | _ReSharper*/ 90 | *.[Rr]e[Ss]harper 91 | *.DotSettings.user 92 | 93 | # JustCode is a .NET coding addin-in 94 | .JustCode 95 | 96 | # TeamCity is a build add-in 97 | _TeamCity* 98 | 99 | # DotCover is a Code Coverage Tool 100 | *.dotCover 101 | 102 | # NCrunch 103 | _NCrunch_* 104 | .*crunch*.local.xml 105 | 106 | # MightyMoose 107 | *.mm.* 108 | AutoTest.Net/ 109 | 110 | # Web workbench (sass) 111 | .sass-cache/ 112 | 113 | # Installshield output folder 114 | [Ee]xpress/ 115 | 116 | # DocProject is a documentation generator add-in 117 | DocProject/buildhelp/ 118 | DocProject/Help/*.HxT 119 | DocProject/Help/*.HxC 120 | DocProject/Help/*.hhc 121 | DocProject/Help/*.hhk 122 | DocProject/Help/*.hhp 123 | DocProject/Help/Html2 124 | DocProject/Help/html 125 | 126 | # Click-Once directory 127 | publish/ 128 | 129 | # Publish Web Output 130 | *.[Pp]ublish.xml 131 | *.azurePubxml 132 | # TODO: Comment the next line if you want to checkin your web deploy settings 133 | # but database connection strings (with potential passwords) will be unencrypted 134 | *.pubxml 135 | *.publishproj 136 | 137 | # NuGet Packages 138 | *.nupkg 139 | # The packages folder can be ignored because of Package Restore 140 | **/packages/* 141 | # except build/, which is used as an MSBuild target. 142 | !**/packages/build/ 143 | # Uncomment if necessary however generally it will be regenerated when needed 144 | #!**/packages/repositories.config 145 | 146 | # Windows Azure Build Output 147 | csx/ 148 | *.build.csdef 149 | 150 | # Windows Store app package directory 151 | AppPackages/ 152 | 153 | # Others 154 | *.[Cc]ache 155 | ClientBin/ 156 | [Ss]tyle[Cc]op.* 157 | ~$* 158 | *~ 159 | *.dbmdl 160 | *.dbproj.schemaview 161 | *.pfx 162 | *.publishsettings 163 | node_modules/ 164 | bower_components/ 165 | 166 | # RIA/Silverlight projects 167 | Generated_Code/ 168 | 169 | # Backup & report files from converting an old project file 170 | # to a newer Visual Studio version. Backup files are not needed, 171 | # because we have git ;-) 172 | _UpgradeReport_Files/ 173 | Backup*/ 174 | UpgradeLog*.XML 175 | UpgradeLog*.htm 176 | 177 | # SQL Server files 178 | *.mdf 179 | *.ldf 180 | 181 | # Business Intelligence projects 182 | *.rdl.data 183 | *.bim.layout 184 | *.bim_*.settings 185 | 186 | # Microsoft Fakes 187 | FakesAssemblies/ 188 | 189 | # Node.js Tools for Visual Studio 190 | .ntvs_analysis.dat 191 | 192 | # Visual Studio 6 build log 193 | *.plg 194 | 195 | # Visual Studio 6 workspace options file 196 | *.opt 197 | -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: Baseflow 2 | custom: https://baseflow.com/contact 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Martijn van Dijk 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # XamarinItemTouchHelper 2 | 3 | # Support 4 | 5 | * Feel free to open an issue. Make sure to use one of the templates! 6 | * Commercial support is available. Integration with your app or services, samples, feature request, etc. Email: [hello@baseflow.com](mailto:hello@baseflow.com) 7 | * Powered by: [baseflow.com](https://baseflow.com) 8 | 9 | ## A drag and swipe library for Xamarin.Android 10 | 11 | This project is an example of basic drag & drop and swipe-to-dismiss with `RecyclerView` using `ItemTouchHelper`. 12 | 13 | ItemTouchHelper is available on [Nuget](https://www.nuget.org/packages/Xam.Plugins.Android.XamarinItemTouchHelper/) 14 | 15 | ![alt tag](https://raw.githubusercontent.com/martijn00/XamarinItemTouchHelper/master/Screenshots/DragDropSwipe.png) 16 | 17 | It corresponds with an article series found here: 18 | 19 | [Drag and swipe with RecyclerView](https://medium.com/@ipaulpro/drag-and-swipe-with-recyclerview-b9456d2b1aaf) 20 | 21 | The classes in [co.paulburke.android.itemtouchhelperdemo.helper](https://github.com/iPaulPro/Android-ItemTouchHelper-Demo/tree/master/app/src/main/java/co/paulburke/android/itemtouchhelperdemo/helper) can easily be used in other projects. 22 | 23 | ## Acknowledgements 24 | 25 | Developed by Paul Burke ([iPaulPro](https://github.com/iPaulPro)) - [paulburke.co](http://paulburke.co/) 26 | 27 | ## License 28 | 29 | Copyright (C) 2015 Paul Burke 30 | 31 | Licensed under the Apache License, Version 2.0 (the "License"); 32 | you may not use this file except in compliance with the License. 33 | You may obtain a copy of the License at 34 | 35 | http://www.apache.org/licenses/LICENSE-2.0 36 | 37 | Unless required by applicable law or agreed to in writing, software 38 | distributed under the License is distributed on an "AS IS" BASIS, 39 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 40 | See the License for the specific language governing permissions and 41 | limitations under the License. 42 | -------------------------------------------------------------------------------- /Screenshots/DragDrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/Screenshots/DragDrop.png -------------------------------------------------------------------------------- /Screenshots/DragDropSwipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/Screenshots/DragDropSwipe.png -------------------------------------------------------------------------------- /Screenshots/SwipeAway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/Screenshots/SwipeAway.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.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 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content; 5 | using Android.Runtime; 6 | using Android.Views; 7 | using Android.Widget; 8 | using Android.OS; 9 | using Android.Support.V7.Widget.Helper; 10 | using Android.Support.V7.Widget; 11 | 12 | namespace XamarinItemTouchHelper.Sample 13 | { 14 | [Activity (Label = "XamarinItemTouchHelper.Sample", MainLauncher = true, Icon = "@drawable/icon")] 15 | public class MainActivity : Activity, IOnStartDragListener 16 | { 17 | private ItemTouchHelper mItemTouchHelper; 18 | 19 | protected override void OnCreate (Bundle bundle) 20 | { 21 | base.OnCreate (bundle); 22 | 23 | // Set our view from the "main" layout resource 24 | SetContentView (Resource.Layout.Main); 25 | 26 | RecyclerListAdapter adapter = new RecyclerListAdapter(this); 27 | 28 | RecyclerView recyclerView = FindViewById(Resource.Id.recycler_view); 29 | recyclerView.HasFixedSize = true; 30 | recyclerView.SetAdapter(adapter); 31 | recyclerView.SetLayoutManager(new LinearLayoutManager(this)); 32 | 33 | ItemTouchHelper.Callback callback = new SimpleItemTouchHelperCallback(adapter); 34 | mItemTouchHelper = new ItemTouchHelper(callback); 35 | mItemTouchHelper.AttachToRecyclerView(recyclerView); 36 | } 37 | 38 | public void OnStartDrag (RecyclerView.ViewHolder viewHolder) 39 | { 40 | mItemTouchHelper.StartDrag(viewHolder); 41 | } 42 | } 43 | } 44 | 45 | 46 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.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 ("XamarinItemTouchHelper.Sample")] 9 | [assembly: AssemblyDescription ("")] 10 | [assembly: AssemblyConfiguration ("")] 11 | [assembly: AssemblyCompany ("")] 12 | [assembly: AssemblyProduct ("")] 13 | [assembly: AssemblyCopyright ("Martijn")] 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 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/RecyclerListAdapter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Support.V7.Widget; 3 | using System.Collections.Generic; 4 | using Android.Views; 5 | using Android.Widget; 6 | using Android.Graphics; 7 | using System.Linq; 8 | using Java.Util; 9 | using System.Collections.ObjectModel; 10 | using Android.Support.V4.View; 11 | 12 | namespace XamarinItemTouchHelper.Sample 13 | { 14 | public class RecyclerListAdapter : RecyclerView.Adapter, IItemTouchHelperAdapter 15 | { 16 | private static string[] STRINGS = new String[]{ 17 | "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten" 18 | }; 19 | 20 | private ObservableCollection mItems = new ObservableCollection(); 21 | 22 | private IOnStartDragListener mDragStartListener; 23 | 24 | public RecyclerListAdapter(IOnStartDragListener dragStartListener) { 25 | mDragStartListener = dragStartListener; 26 | 27 | foreach (var item in STRINGS) { 28 | mItems.Add(item); 29 | } 30 | } 31 | 32 | public override RecyclerView.ViewHolder OnCreateViewHolder (ViewGroup parent, int viewType) 33 | { 34 | View view = LayoutInflater.From(parent.Context).Inflate(Resource.Layout.item_main, parent, false); 35 | ItemViewHolder itemViewHolder = new ItemViewHolder(view); 36 | return itemViewHolder; 37 | } 38 | 39 | public override void OnBindViewHolder (RecyclerView.ViewHolder holder, int position) 40 | { 41 | var itemHolder = (ItemViewHolder)holder; 42 | 43 | itemHolder.textView.Text = mItems.ElementAt(position); 44 | itemHolder.handleView.SetOnTouchListener (new TouchListenerHelper(itemHolder, mDragStartListener)); 45 | } 46 | 47 | public void OnItemDismiss (int position) 48 | { 49 | mItems.Remove(mItems.ElementAt(position)); 50 | NotifyItemRemoved(position); 51 | } 52 | 53 | public bool OnItemMove (int fromPosition, int toPosition) 54 | { 55 | mItems.Move(fromPosition, toPosition); 56 | NotifyItemMoved(fromPosition, toPosition); 57 | return true; 58 | } 59 | 60 | public override int ItemCount { 61 | get { 62 | return mItems.Count; 63 | } 64 | } 65 | 66 | /// 67 | /// Simple example of a view holder that implements ItemTouchHelperViewHolder and has a 68 | /// "handle" view that initiates a drag event when touched. 69 | /// 70 | public class ItemViewHolder : RecyclerView.ViewHolder, IItemTouchHelperViewHolder { 71 | 72 | public TextView textView; 73 | public ImageView handleView; 74 | public View _itemView; 75 | 76 | public ItemViewHolder (View itemView) : base (itemView) 77 | { 78 | _itemView = itemView; 79 | textView = itemView.FindViewById(Resource.Id.text); 80 | handleView = itemView.FindViewById(Resource.Id.handle); 81 | } 82 | 83 | public void OnItemSelected () 84 | { 85 | _itemView.SetBackgroundColor(Color.LightGray); 86 | } 87 | 88 | public void OnItemClear () 89 | { 90 | _itemView.SetBackgroundColor(Color.White); 91 | } 92 | } 93 | } 94 | } 95 | 96 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.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 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.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("XamarinItemTouchHelper.Sample.Resource", IsApplication=true)] 13 | 14 | namespace XamarinItemTouchHelper.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: 0x7f040000 35 | public const int abc_fade_in = 2130968576; 36 | 37 | // aapt resource value: 0x7f040001 38 | public const int abc_fade_out = 2130968577; 39 | 40 | // aapt resource value: 0x7f040002 41 | public const int abc_grow_fade_in_from_bottom = 2130968578; 42 | 43 | // aapt resource value: 0x7f040003 44 | public const int abc_popup_enter = 2130968579; 45 | 46 | // aapt resource value: 0x7f040004 47 | public const int abc_popup_exit = 2130968580; 48 | 49 | // aapt resource value: 0x7f040005 50 | public const int abc_shrink_fade_out_from_bottom = 2130968581; 51 | 52 | // aapt resource value: 0x7f040006 53 | public const int abc_slide_in_bottom = 2130968582; 54 | 55 | // aapt resource value: 0x7f040007 56 | public const int abc_slide_in_top = 2130968583; 57 | 58 | // aapt resource value: 0x7f040008 59 | public const int abc_slide_out_bottom = 2130968584; 60 | 61 | // aapt resource value: 0x7f040009 62 | public const int abc_slide_out_top = 2130968585; 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: 0x7f010040 78 | public const int actionBarDivider = 2130772032; 79 | 80 | // aapt resource value: 0x7f010041 81 | public const int actionBarItemBackground = 2130772033; 82 | 83 | // aapt resource value: 0x7f01003a 84 | public const int actionBarPopupTheme = 2130772026; 85 | 86 | // aapt resource value: 0x7f01003f 87 | public const int actionBarSize = 2130772031; 88 | 89 | // aapt resource value: 0x7f01003c 90 | public const int actionBarSplitStyle = 2130772028; 91 | 92 | // aapt resource value: 0x7f01003b 93 | public const int actionBarStyle = 2130772027; 94 | 95 | // aapt resource value: 0x7f010036 96 | public const int actionBarTabBarStyle = 2130772022; 97 | 98 | // aapt resource value: 0x7f010035 99 | public const int actionBarTabStyle = 2130772021; 100 | 101 | // aapt resource value: 0x7f010037 102 | public const int actionBarTabTextStyle = 2130772023; 103 | 104 | // aapt resource value: 0x7f01003d 105 | public const int actionBarTheme = 2130772029; 106 | 107 | // aapt resource value: 0x7f01003e 108 | public const int actionBarWidgetTheme = 2130772030; 109 | 110 | // aapt resource value: 0x7f01005b 111 | public const int actionButtonStyle = 2130772059; 112 | 113 | // aapt resource value: 0x7f010057 114 | public const int actionDropDownStyle = 2130772055; 115 | 116 | // aapt resource value: 0x7f0100ac 117 | public const int actionLayout = 2130772140; 118 | 119 | // aapt resource value: 0x7f010042 120 | public const int actionMenuTextAppearance = 2130772034; 121 | 122 | // aapt resource value: 0x7f010043 123 | public const int actionMenuTextColor = 2130772035; 124 | 125 | // aapt resource value: 0x7f010046 126 | public const int actionModeBackground = 2130772038; 127 | 128 | // aapt resource value: 0x7f010045 129 | public const int actionModeCloseButtonStyle = 2130772037; 130 | 131 | // aapt resource value: 0x7f010048 132 | public const int actionModeCloseDrawable = 2130772040; 133 | 134 | // aapt resource value: 0x7f01004a 135 | public const int actionModeCopyDrawable = 2130772042; 136 | 137 | // aapt resource value: 0x7f010049 138 | public const int actionModeCutDrawable = 2130772041; 139 | 140 | // aapt resource value: 0x7f01004e 141 | public const int actionModeFindDrawable = 2130772046; 142 | 143 | // aapt resource value: 0x7f01004b 144 | public const int actionModePasteDrawable = 2130772043; 145 | 146 | // aapt resource value: 0x7f010050 147 | public const int actionModePopupWindowStyle = 2130772048; 148 | 149 | // aapt resource value: 0x7f01004c 150 | public const int actionModeSelectAllDrawable = 2130772044; 151 | 152 | // aapt resource value: 0x7f01004d 153 | public const int actionModeShareDrawable = 2130772045; 154 | 155 | // aapt resource value: 0x7f010047 156 | public const int actionModeSplitBackground = 2130772039; 157 | 158 | // aapt resource value: 0x7f010044 159 | public const int actionModeStyle = 2130772036; 160 | 161 | // aapt resource value: 0x7f01004f 162 | public const int actionModeWebSearchDrawable = 2130772047; 163 | 164 | // aapt resource value: 0x7f010038 165 | public const int actionOverflowButtonStyle = 2130772024; 166 | 167 | // aapt resource value: 0x7f010039 168 | public const int actionOverflowMenuStyle = 2130772025; 169 | 170 | // aapt resource value: 0x7f0100ae 171 | public const int actionProviderClass = 2130772142; 172 | 173 | // aapt resource value: 0x7f0100ad 174 | public const int actionViewClass = 2130772141; 175 | 176 | // aapt resource value: 0x7f010063 177 | public const int activityChooserViewStyle = 2130772067; 178 | 179 | // aapt resource value: 0x7f010087 180 | public const int alertDialogButtonGroupStyle = 2130772103; 181 | 182 | // aapt resource value: 0x7f010088 183 | public const int alertDialogCenterButtons = 2130772104; 184 | 185 | // aapt resource value: 0x7f010086 186 | public const int alertDialogStyle = 2130772102; 187 | 188 | // aapt resource value: 0x7f010089 189 | public const int alertDialogTheme = 2130772105; 190 | 191 | // aapt resource value: 0x7f01009c 192 | public const int allowStacking = 2130772124; 193 | 194 | // aapt resource value: 0x7f01009d 195 | public const int alpha = 2130772125; 196 | 197 | // aapt resource value: 0x7f0100a4 198 | public const int arrowHeadLength = 2130772132; 199 | 200 | // aapt resource value: 0x7f0100a5 201 | public const int arrowShaftLength = 2130772133; 202 | 203 | // aapt resource value: 0x7f01008e 204 | public const int autoCompleteTextViewStyle = 2130772110; 205 | 206 | // aapt resource value: 0x7f01000c 207 | public const int background = 2130771980; 208 | 209 | // aapt resource value: 0x7f01000e 210 | public const int backgroundSplit = 2130771982; 211 | 212 | // aapt resource value: 0x7f01000d 213 | public const int backgroundStacked = 2130771981; 214 | 215 | // aapt resource value: 0x7f0100df 216 | public const int backgroundTint = 2130772191; 217 | 218 | // aapt resource value: 0x7f0100e0 219 | public const int backgroundTintMode = 2130772192; 220 | 221 | // aapt resource value: 0x7f0100a6 222 | public const int barLength = 2130772134; 223 | 224 | // aapt resource value: 0x7f010060 225 | public const int borderlessButtonStyle = 2130772064; 226 | 227 | // aapt resource value: 0x7f01005d 228 | public const int buttonBarButtonStyle = 2130772061; 229 | 230 | // aapt resource value: 0x7f01008c 231 | public const int buttonBarNegativeButtonStyle = 2130772108; 232 | 233 | // aapt resource value: 0x7f01008d 234 | public const int buttonBarNeutralButtonStyle = 2130772109; 235 | 236 | // aapt resource value: 0x7f01008b 237 | public const int buttonBarPositiveButtonStyle = 2130772107; 238 | 239 | // aapt resource value: 0x7f01005c 240 | public const int buttonBarStyle = 2130772060; 241 | 242 | // aapt resource value: 0x7f0100d4 243 | public const int buttonGravity = 2130772180; 244 | 245 | // aapt resource value: 0x7f010021 246 | public const int buttonPanelSideLayout = 2130772001; 247 | 248 | // aapt resource value: 0x7f01008f 249 | public const int buttonStyle = 2130772111; 250 | 251 | // aapt resource value: 0x7f010090 252 | public const int buttonStyleSmall = 2130772112; 253 | 254 | // aapt resource value: 0x7f01009e 255 | public const int buttonTint = 2130772126; 256 | 257 | // aapt resource value: 0x7f01009f 258 | public const int buttonTintMode = 2130772127; 259 | 260 | // aapt resource value: 0x7f010091 261 | public const int checkboxStyle = 2130772113; 262 | 263 | // aapt resource value: 0x7f010092 264 | public const int checkedTextViewStyle = 2130772114; 265 | 266 | // aapt resource value: 0x7f0100b7 267 | public const int closeIcon = 2130772151; 268 | 269 | // aapt resource value: 0x7f01001e 270 | public const int closeItemLayout = 2130771998; 271 | 272 | // aapt resource value: 0x7f0100d6 273 | public const int collapseContentDescription = 2130772182; 274 | 275 | // aapt resource value: 0x7f0100d5 276 | public const int collapseIcon = 2130772181; 277 | 278 | // aapt resource value: 0x7f0100a0 279 | public const int color = 2130772128; 280 | 281 | // aapt resource value: 0x7f01007e 282 | public const int colorAccent = 2130772094; 283 | 284 | // aapt resource value: 0x7f010085 285 | public const int colorBackgroundFloating = 2130772101; 286 | 287 | // aapt resource value: 0x7f010082 288 | public const int colorButtonNormal = 2130772098; 289 | 290 | // aapt resource value: 0x7f010080 291 | public const int colorControlActivated = 2130772096; 292 | 293 | // aapt resource value: 0x7f010081 294 | public const int colorControlHighlight = 2130772097; 295 | 296 | // aapt resource value: 0x7f01007f 297 | public const int colorControlNormal = 2130772095; 298 | 299 | // aapt resource value: 0x7f01007c 300 | public const int colorPrimary = 2130772092; 301 | 302 | // aapt resource value: 0x7f01007d 303 | public const int colorPrimaryDark = 2130772093; 304 | 305 | // aapt resource value: 0x7f010083 306 | public const int colorSwitchThumbNormal = 2130772099; 307 | 308 | // aapt resource value: 0x7f0100bc 309 | public const int commitIcon = 2130772156; 310 | 311 | // aapt resource value: 0x7f010017 312 | public const int contentInsetEnd = 2130771991; 313 | 314 | // aapt resource value: 0x7f01001b 315 | public const int contentInsetEndWithActions = 2130771995; 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: 0x7f01001a 327 | public const int contentInsetStartWithNavigation = 2130771994; 328 | 329 | // aapt resource value: 0x7f010084 330 | public const int controlBackground = 2130772100; 331 | 332 | // aapt resource value: 0x7f01000f 333 | public const int customNavigationLayout = 2130771983; 334 | 335 | // aapt resource value: 0x7f0100b6 336 | public const int defaultQueryHint = 2130772150; 337 | 338 | // aapt resource value: 0x7f010055 339 | public const int dialogPreferredPadding = 2130772053; 340 | 341 | // aapt resource value: 0x7f010054 342 | public const int dialogTheme = 2130772052; 343 | 344 | // aapt resource value: 0x7f010005 345 | public const int displayOptions = 2130771973; 346 | 347 | // aapt resource value: 0x7f01000b 348 | public const int divider = 2130771979; 349 | 350 | // aapt resource value: 0x7f010062 351 | public const int dividerHorizontal = 2130772066; 352 | 353 | // aapt resource value: 0x7f0100aa 354 | public const int dividerPadding = 2130772138; 355 | 356 | // aapt resource value: 0x7f010061 357 | public const int dividerVertical = 2130772065; 358 | 359 | // aapt resource value: 0x7f0100a2 360 | public const int drawableSize = 2130772130; 361 | 362 | // aapt resource value: 0x7f010000 363 | public const int drawerArrowStyle = 2130771968; 364 | 365 | // aapt resource value: 0x7f010074 366 | public const int dropDownListViewStyle = 2130772084; 367 | 368 | // aapt resource value: 0x7f010058 369 | public const int dropdownListPreferredItemHeight = 2130772056; 370 | 371 | // aapt resource value: 0x7f010069 372 | public const int editTextBackground = 2130772073; 373 | 374 | // aapt resource value: 0x7f010068 375 | public const int editTextColor = 2130772072; 376 | 377 | // aapt resource value: 0x7f010093 378 | public const int editTextStyle = 2130772115; 379 | 380 | // aapt resource value: 0x7f01001c 381 | public const int elevation = 2130771996; 382 | 383 | // aapt resource value: 0x7f010020 384 | public const int expandActivityOverflowButtonDrawable = 2130772000; 385 | 386 | // aapt resource value: 0x7f0100a3 387 | public const int gapBetweenBars = 2130772131; 388 | 389 | // aapt resource value: 0x7f0100b8 390 | public const int goIcon = 2130772152; 391 | 392 | // aapt resource value: 0x7f010001 393 | public const int height = 2130771969; 394 | 395 | // aapt resource value: 0x7f010015 396 | public const int hideOnContentScroll = 2130771989; 397 | 398 | // aapt resource value: 0x7f01005a 399 | public const int homeAsUpIndicator = 2130772058; 400 | 401 | // aapt resource value: 0x7f010010 402 | public const int homeLayout = 2130771984; 403 | 404 | // aapt resource value: 0x7f010009 405 | public const int icon = 2130771977; 406 | 407 | // aapt resource value: 0x7f0100b4 408 | public const int iconifiedByDefault = 2130772148; 409 | 410 | // aapt resource value: 0x7f01006a 411 | public const int imageButtonStyle = 2130772074; 412 | 413 | // aapt resource value: 0x7f010012 414 | public const int indeterminateProgressStyle = 2130771986; 415 | 416 | // aapt resource value: 0x7f01001f 417 | public const int initialActivityCount = 2130771999; 418 | 419 | // aapt resource value: 0x7f010002 420 | public const int isLightTheme = 2130771970; 421 | 422 | // aapt resource value: 0x7f010014 423 | public const int itemPadding = 2130771988; 424 | 425 | // aapt resource value: 0x7f0100b3 426 | public const int layout = 2130772147; 427 | 428 | // aapt resource value: 0x7f0100e1 429 | public const int layoutManager = 2130772193; 430 | 431 | // aapt resource value: 0x7f01007b 432 | public const int listChoiceBackgroundIndicator = 2130772091; 433 | 434 | // aapt resource value: 0x7f010056 435 | public const int listDividerAlertDialog = 2130772054; 436 | 437 | // aapt resource value: 0x7f010025 438 | public const int listItemLayout = 2130772005; 439 | 440 | // aapt resource value: 0x7f010022 441 | public const int listLayout = 2130772002; 442 | 443 | // aapt resource value: 0x7f01009b 444 | public const int listMenuViewStyle = 2130772123; 445 | 446 | // aapt resource value: 0x7f010075 447 | public const int listPopupWindowStyle = 2130772085; 448 | 449 | // aapt resource value: 0x7f01006f 450 | public const int listPreferredItemHeight = 2130772079; 451 | 452 | // aapt resource value: 0x7f010071 453 | public const int listPreferredItemHeightLarge = 2130772081; 454 | 455 | // aapt resource value: 0x7f010070 456 | public const int listPreferredItemHeightSmall = 2130772080; 457 | 458 | // aapt resource value: 0x7f010072 459 | public const int listPreferredItemPaddingLeft = 2130772082; 460 | 461 | // aapt resource value: 0x7f010073 462 | public const int listPreferredItemPaddingRight = 2130772083; 463 | 464 | // aapt resource value: 0x7f01000a 465 | public const int logo = 2130771978; 466 | 467 | // aapt resource value: 0x7f0100d9 468 | public const int logoDescription = 2130772185; 469 | 470 | // aapt resource value: 0x7f0100d3 471 | public const int maxButtonHeight = 2130772179; 472 | 473 | // aapt resource value: 0x7f0100a8 474 | public const int measureWithLargestChild = 2130772136; 475 | 476 | // aapt resource value: 0x7f010023 477 | public const int multiChoiceItemLayout = 2130772003; 478 | 479 | // aapt resource value: 0x7f0100d8 480 | public const int navigationContentDescription = 2130772184; 481 | 482 | // aapt resource value: 0x7f0100d7 483 | public const int navigationIcon = 2130772183; 484 | 485 | // aapt resource value: 0x7f010004 486 | public const int navigationMode = 2130771972; 487 | 488 | // aapt resource value: 0x7f0100b1 489 | public const int overlapAnchor = 2130772145; 490 | 491 | // aapt resource value: 0x7f0100dd 492 | public const int paddingEnd = 2130772189; 493 | 494 | // aapt resource value: 0x7f0100dc 495 | public const int paddingStart = 2130772188; 496 | 497 | // aapt resource value: 0x7f010078 498 | public const int panelBackground = 2130772088; 499 | 500 | // aapt resource value: 0x7f01007a 501 | public const int panelMenuListTheme = 2130772090; 502 | 503 | // aapt resource value: 0x7f010079 504 | public const int panelMenuListWidth = 2130772089; 505 | 506 | // aapt resource value: 0x7f010066 507 | public const int popupMenuStyle = 2130772070; 508 | 509 | // aapt resource value: 0x7f01001d 510 | public const int popupTheme = 2130771997; 511 | 512 | // aapt resource value: 0x7f010067 513 | public const int popupWindowStyle = 2130772071; 514 | 515 | // aapt resource value: 0x7f0100af 516 | public const int preserveIconSpacing = 2130772143; 517 | 518 | // aapt resource value: 0x7f010013 519 | public const int progressBarPadding = 2130771987; 520 | 521 | // aapt resource value: 0x7f010011 522 | public const int progressBarStyle = 2130771985; 523 | 524 | // aapt resource value: 0x7f0100be 525 | public const int queryBackground = 2130772158; 526 | 527 | // aapt resource value: 0x7f0100b5 528 | public const int queryHint = 2130772149; 529 | 530 | // aapt resource value: 0x7f010094 531 | public const int radioButtonStyle = 2130772116; 532 | 533 | // aapt resource value: 0x7f010095 534 | public const int ratingBarStyle = 2130772117; 535 | 536 | // aapt resource value: 0x7f010096 537 | public const int ratingBarStyleIndicator = 2130772118; 538 | 539 | // aapt resource value: 0x7f010097 540 | public const int ratingBarStyleSmall = 2130772119; 541 | 542 | // aapt resource value: 0x7f0100e3 543 | public const int reverseLayout = 2130772195; 544 | 545 | // aapt resource value: 0x7f0100ba 546 | public const int searchHintIcon = 2130772154; 547 | 548 | // aapt resource value: 0x7f0100b9 549 | public const int searchIcon = 2130772153; 550 | 551 | // aapt resource value: 0x7f01006e 552 | public const int searchViewStyle = 2130772078; 553 | 554 | // aapt resource value: 0x7f010098 555 | public const int seekBarStyle = 2130772120; 556 | 557 | // aapt resource value: 0x7f01005e 558 | public const int selectableItemBackground = 2130772062; 559 | 560 | // aapt resource value: 0x7f01005f 561 | public const int selectableItemBackgroundBorderless = 2130772063; 562 | 563 | // aapt resource value: 0x7f0100ab 564 | public const int showAsAction = 2130772139; 565 | 566 | // aapt resource value: 0x7f0100a9 567 | public const int showDividers = 2130772137; 568 | 569 | // aapt resource value: 0x7f0100ca 570 | public const int showText = 2130772170; 571 | 572 | // aapt resource value: 0x7f010024 573 | public const int singleChoiceItemLayout = 2130772004; 574 | 575 | // aapt resource value: 0x7f0100e2 576 | public const int spanCount = 2130772194; 577 | 578 | // aapt resource value: 0x7f0100a1 579 | public const int spinBars = 2130772129; 580 | 581 | // aapt resource value: 0x7f010059 582 | public const int spinnerDropDownItemStyle = 2130772057; 583 | 584 | // aapt resource value: 0x7f010099 585 | public const int spinnerStyle = 2130772121; 586 | 587 | // aapt resource value: 0x7f0100c9 588 | public const int splitTrack = 2130772169; 589 | 590 | // aapt resource value: 0x7f010026 591 | public const int srcCompat = 2130772006; 592 | 593 | // aapt resource value: 0x7f0100e4 594 | public const int stackFromEnd = 2130772196; 595 | 596 | // aapt resource value: 0x7f0100b2 597 | public const int state_above_anchor = 2130772146; 598 | 599 | // aapt resource value: 0x7f0100b0 600 | public const int subMenuArrow = 2130772144; 601 | 602 | // aapt resource value: 0x7f0100bf 603 | public const int submitBackground = 2130772159; 604 | 605 | // aapt resource value: 0x7f010006 606 | public const int subtitle = 2130771974; 607 | 608 | // aapt resource value: 0x7f0100cc 609 | public const int subtitleTextAppearance = 2130772172; 610 | 611 | // aapt resource value: 0x7f0100db 612 | public const int subtitleTextColor = 2130772187; 613 | 614 | // aapt resource value: 0x7f010008 615 | public const int subtitleTextStyle = 2130771976; 616 | 617 | // aapt resource value: 0x7f0100bd 618 | public const int suggestionRowLayout = 2130772157; 619 | 620 | // aapt resource value: 0x7f0100c7 621 | public const int switchMinWidth = 2130772167; 622 | 623 | // aapt resource value: 0x7f0100c8 624 | public const int switchPadding = 2130772168; 625 | 626 | // aapt resource value: 0x7f01009a 627 | public const int switchStyle = 2130772122; 628 | 629 | // aapt resource value: 0x7f0100c6 630 | public const int switchTextAppearance = 2130772166; 631 | 632 | // aapt resource value: 0x7f01002a 633 | public const int textAllCaps = 2130772010; 634 | 635 | // aapt resource value: 0x7f010051 636 | public const int textAppearanceLargePopupMenu = 2130772049; 637 | 638 | // aapt resource value: 0x7f010076 639 | public const int textAppearanceListItem = 2130772086; 640 | 641 | // aapt resource value: 0x7f010077 642 | public const int textAppearanceListItemSmall = 2130772087; 643 | 644 | // aapt resource value: 0x7f010053 645 | public const int textAppearancePopupMenuHeader = 2130772051; 646 | 647 | // aapt resource value: 0x7f01006c 648 | public const int textAppearanceSearchResultSubtitle = 2130772076; 649 | 650 | // aapt resource value: 0x7f01006b 651 | public const int textAppearanceSearchResultTitle = 2130772075; 652 | 653 | // aapt resource value: 0x7f010052 654 | public const int textAppearanceSmallPopupMenu = 2130772050; 655 | 656 | // aapt resource value: 0x7f01008a 657 | public const int textColorAlertDialogListItem = 2130772106; 658 | 659 | // aapt resource value: 0x7f01006d 660 | public const int textColorSearchUrl = 2130772077; 661 | 662 | // aapt resource value: 0x7f0100de 663 | public const int theme = 2130772190; 664 | 665 | // aapt resource value: 0x7f0100a7 666 | public const int thickness = 2130772135; 667 | 668 | // aapt resource value: 0x7f0100c5 669 | public const int thumbTextPadding = 2130772165; 670 | 671 | // aapt resource value: 0x7f0100c0 672 | public const int thumbTint = 2130772160; 673 | 674 | // aapt resource value: 0x7f0100c1 675 | public const int thumbTintMode = 2130772161; 676 | 677 | // aapt resource value: 0x7f010027 678 | public const int tickMark = 2130772007; 679 | 680 | // aapt resource value: 0x7f010028 681 | public const int tickMarkTint = 2130772008; 682 | 683 | // aapt resource value: 0x7f010029 684 | public const int tickMarkTintMode = 2130772009; 685 | 686 | // aapt resource value: 0x7f010003 687 | public const int title = 2130771971; 688 | 689 | // aapt resource value: 0x7f0100cd 690 | public const int titleMargin = 2130772173; 691 | 692 | // aapt resource value: 0x7f0100d1 693 | public const int titleMarginBottom = 2130772177; 694 | 695 | // aapt resource value: 0x7f0100cf 696 | public const int titleMarginEnd = 2130772175; 697 | 698 | // aapt resource value: 0x7f0100ce 699 | public const int titleMarginStart = 2130772174; 700 | 701 | // aapt resource value: 0x7f0100d0 702 | public const int titleMarginTop = 2130772176; 703 | 704 | // aapt resource value: 0x7f0100d2 705 | public const int titleMargins = 2130772178; 706 | 707 | // aapt resource value: 0x7f0100cb 708 | public const int titleTextAppearance = 2130772171; 709 | 710 | // aapt resource value: 0x7f0100da 711 | public const int titleTextColor = 2130772186; 712 | 713 | // aapt resource value: 0x7f010007 714 | public const int titleTextStyle = 2130771975; 715 | 716 | // aapt resource value: 0x7f010065 717 | public const int toolbarNavigationButtonStyle = 2130772069; 718 | 719 | // aapt resource value: 0x7f010064 720 | public const int toolbarStyle = 2130772068; 721 | 722 | // aapt resource value: 0x7f0100c2 723 | public const int track = 2130772162; 724 | 725 | // aapt resource value: 0x7f0100c3 726 | public const int trackTint = 2130772163; 727 | 728 | // aapt resource value: 0x7f0100c4 729 | public const int trackTintMode = 2130772164; 730 | 731 | // aapt resource value: 0x7f0100bb 732 | public const int voiceIcon = 2130772155; 733 | 734 | // aapt resource value: 0x7f01002b 735 | public const int windowActionBar = 2130772011; 736 | 737 | // aapt resource value: 0x7f01002d 738 | public const int windowActionBarOverlay = 2130772013; 739 | 740 | // aapt resource value: 0x7f01002e 741 | public const int windowActionModeOverlay = 2130772014; 742 | 743 | // aapt resource value: 0x7f010032 744 | public const int windowFixedHeightMajor = 2130772018; 745 | 746 | // aapt resource value: 0x7f010030 747 | public const int windowFixedHeightMinor = 2130772016; 748 | 749 | // aapt resource value: 0x7f01002f 750 | public const int windowFixedWidthMajor = 2130772015; 751 | 752 | // aapt resource value: 0x7f010031 753 | public const int windowFixedWidthMinor = 2130772017; 754 | 755 | // aapt resource value: 0x7f010033 756 | public const int windowMinWidthMajor = 2130772019; 757 | 758 | // aapt resource value: 0x7f010034 759 | public const int windowMinWidthMinor = 2130772020; 760 | 761 | // aapt resource value: 0x7f01002c 762 | public const int windowNoTitle = 2130772012; 763 | 764 | static Attribute() 765 | { 766 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 767 | } 768 | 769 | private Attribute() 770 | { 771 | } 772 | } 773 | 774 | public partial class Boolean 775 | { 776 | 777 | // aapt resource value: 0x7f080000 778 | public const int abc_action_bar_embed_tabs = 2131230720; 779 | 780 | // aapt resource value: 0x7f080001 781 | public const int abc_allow_stacked_button_bar = 2131230721; 782 | 783 | // aapt resource value: 0x7f080002 784 | public const int abc_config_actionMenuItemAllCaps = 2131230722; 785 | 786 | // aapt resource value: 0x7f080003 787 | public const int abc_config_closeDialogWhenTouchOutside = 2131230723; 788 | 789 | // aapt resource value: 0x7f080004 790 | public const int abc_config_showMenuShortcutsWhenKeyboardPresent = 2131230724; 791 | 792 | static Boolean() 793 | { 794 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 795 | } 796 | 797 | private Boolean() 798 | { 799 | } 800 | } 801 | 802 | public partial class Color 803 | { 804 | 805 | // aapt resource value: 0x7f09003a 806 | public const int abc_background_cache_hint_selector_material_dark = 2131296314; 807 | 808 | // aapt resource value: 0x7f09003b 809 | public const int abc_background_cache_hint_selector_material_light = 2131296315; 810 | 811 | // aapt resource value: 0x7f09003c 812 | public const int abc_btn_colored_borderless_text_material = 2131296316; 813 | 814 | // aapt resource value: 0x7f09003d 815 | public const int abc_color_highlight_material = 2131296317; 816 | 817 | // aapt resource value: 0x7f090000 818 | public const int abc_input_method_navigation_guard = 2131296256; 819 | 820 | // aapt resource value: 0x7f09003e 821 | public const int abc_primary_text_disable_only_material_dark = 2131296318; 822 | 823 | // aapt resource value: 0x7f09003f 824 | public const int abc_primary_text_disable_only_material_light = 2131296319; 825 | 826 | // aapt resource value: 0x7f090040 827 | public const int abc_primary_text_material_dark = 2131296320; 828 | 829 | // aapt resource value: 0x7f090041 830 | public const int abc_primary_text_material_light = 2131296321; 831 | 832 | // aapt resource value: 0x7f090042 833 | public const int abc_search_url_text = 2131296322; 834 | 835 | // aapt resource value: 0x7f090001 836 | public const int abc_search_url_text_normal = 2131296257; 837 | 838 | // aapt resource value: 0x7f090002 839 | public const int abc_search_url_text_pressed = 2131296258; 840 | 841 | // aapt resource value: 0x7f090003 842 | public const int abc_search_url_text_selected = 2131296259; 843 | 844 | // aapt resource value: 0x7f090043 845 | public const int abc_secondary_text_material_dark = 2131296323; 846 | 847 | // aapt resource value: 0x7f090044 848 | public const int abc_secondary_text_material_light = 2131296324; 849 | 850 | // aapt resource value: 0x7f090045 851 | public const int abc_tint_btn_checkable = 2131296325; 852 | 853 | // aapt resource value: 0x7f090046 854 | public const int abc_tint_default = 2131296326; 855 | 856 | // aapt resource value: 0x7f090047 857 | public const int abc_tint_edittext = 2131296327; 858 | 859 | // aapt resource value: 0x7f090048 860 | public const int abc_tint_seek_thumb = 2131296328; 861 | 862 | // aapt resource value: 0x7f090049 863 | public const int abc_tint_spinner = 2131296329; 864 | 865 | // aapt resource value: 0x7f09004a 866 | public const int abc_tint_switch_thumb = 2131296330; 867 | 868 | // aapt resource value: 0x7f09004b 869 | public const int abc_tint_switch_track = 2131296331; 870 | 871 | // aapt resource value: 0x7f090004 872 | public const int accent_material_dark = 2131296260; 873 | 874 | // aapt resource value: 0x7f090005 875 | public const int accent_material_light = 2131296261; 876 | 877 | // aapt resource value: 0x7f090006 878 | public const int background_floating_material_dark = 2131296262; 879 | 880 | // aapt resource value: 0x7f090007 881 | public const int background_floating_material_light = 2131296263; 882 | 883 | // aapt resource value: 0x7f090008 884 | public const int background_material_dark = 2131296264; 885 | 886 | // aapt resource value: 0x7f090009 887 | public const int background_material_light = 2131296265; 888 | 889 | // aapt resource value: 0x7f09000a 890 | public const int bright_foreground_disabled_material_dark = 2131296266; 891 | 892 | // aapt resource value: 0x7f09000b 893 | public const int bright_foreground_disabled_material_light = 2131296267; 894 | 895 | // aapt resource value: 0x7f09000c 896 | public const int bright_foreground_inverse_material_dark = 2131296268; 897 | 898 | // aapt resource value: 0x7f09000d 899 | public const int bright_foreground_inverse_material_light = 2131296269; 900 | 901 | // aapt resource value: 0x7f09000e 902 | public const int bright_foreground_material_dark = 2131296270; 903 | 904 | // aapt resource value: 0x7f09000f 905 | public const int bright_foreground_material_light = 2131296271; 906 | 907 | // aapt resource value: 0x7f090010 908 | public const int button_material_dark = 2131296272; 909 | 910 | // aapt resource value: 0x7f090011 911 | public const int button_material_light = 2131296273; 912 | 913 | // aapt resource value: 0x7f090012 914 | public const int dim_foreground_disabled_material_dark = 2131296274; 915 | 916 | // aapt resource value: 0x7f090013 917 | public const int dim_foreground_disabled_material_light = 2131296275; 918 | 919 | // aapt resource value: 0x7f090014 920 | public const int dim_foreground_material_dark = 2131296276; 921 | 922 | // aapt resource value: 0x7f090015 923 | public const int dim_foreground_material_light = 2131296277; 924 | 925 | // aapt resource value: 0x7f090016 926 | public const int foreground_material_dark = 2131296278; 927 | 928 | // aapt resource value: 0x7f090017 929 | public const int foreground_material_light = 2131296279; 930 | 931 | // aapt resource value: 0x7f090018 932 | public const int highlighted_text_material_dark = 2131296280; 933 | 934 | // aapt resource value: 0x7f090019 935 | public const int highlighted_text_material_light = 2131296281; 936 | 937 | // aapt resource value: 0x7f09001a 938 | public const int hint_foreground_material_dark = 2131296282; 939 | 940 | // aapt resource value: 0x7f09001b 941 | public const int hint_foreground_material_light = 2131296283; 942 | 943 | // aapt resource value: 0x7f09001c 944 | public const int material_blue_grey_800 = 2131296284; 945 | 946 | // aapt resource value: 0x7f09001d 947 | public const int material_blue_grey_900 = 2131296285; 948 | 949 | // aapt resource value: 0x7f09001e 950 | public const int material_blue_grey_950 = 2131296286; 951 | 952 | // aapt resource value: 0x7f09001f 953 | public const int material_deep_teal_200 = 2131296287; 954 | 955 | // aapt resource value: 0x7f090020 956 | public const int material_deep_teal_500 = 2131296288; 957 | 958 | // aapt resource value: 0x7f090021 959 | public const int material_grey_100 = 2131296289; 960 | 961 | // aapt resource value: 0x7f090022 962 | public const int material_grey_300 = 2131296290; 963 | 964 | // aapt resource value: 0x7f090023 965 | public const int material_grey_50 = 2131296291; 966 | 967 | // aapt resource value: 0x7f090024 968 | public const int material_grey_600 = 2131296292; 969 | 970 | // aapt resource value: 0x7f090025 971 | public const int material_grey_800 = 2131296293; 972 | 973 | // aapt resource value: 0x7f090026 974 | public const int material_grey_850 = 2131296294; 975 | 976 | // aapt resource value: 0x7f090027 977 | public const int material_grey_900 = 2131296295; 978 | 979 | // aapt resource value: 0x7f090028 980 | public const int primary_dark_material_dark = 2131296296; 981 | 982 | // aapt resource value: 0x7f090029 983 | public const int primary_dark_material_light = 2131296297; 984 | 985 | // aapt resource value: 0x7f09002a 986 | public const int primary_material_dark = 2131296298; 987 | 988 | // aapt resource value: 0x7f09002b 989 | public const int primary_material_light = 2131296299; 990 | 991 | // aapt resource value: 0x7f09002c 992 | public const int primary_text_default_material_dark = 2131296300; 993 | 994 | // aapt resource value: 0x7f09002d 995 | public const int primary_text_default_material_light = 2131296301; 996 | 997 | // aapt resource value: 0x7f09002e 998 | public const int primary_text_disabled_material_dark = 2131296302; 999 | 1000 | // aapt resource value: 0x7f09002f 1001 | public const int primary_text_disabled_material_light = 2131296303; 1002 | 1003 | // aapt resource value: 0x7f090030 1004 | public const int ripple_material_dark = 2131296304; 1005 | 1006 | // aapt resource value: 0x7f090031 1007 | public const int ripple_material_light = 2131296305; 1008 | 1009 | // aapt resource value: 0x7f090032 1010 | public const int secondary_text_default_material_dark = 2131296306; 1011 | 1012 | // aapt resource value: 0x7f090033 1013 | public const int secondary_text_default_material_light = 2131296307; 1014 | 1015 | // aapt resource value: 0x7f090034 1016 | public const int secondary_text_disabled_material_dark = 2131296308; 1017 | 1018 | // aapt resource value: 0x7f090035 1019 | public const int secondary_text_disabled_material_light = 2131296309; 1020 | 1021 | // aapt resource value: 0x7f090036 1022 | public const int switch_thumb_disabled_material_dark = 2131296310; 1023 | 1024 | // aapt resource value: 0x7f090037 1025 | public const int switch_thumb_disabled_material_light = 2131296311; 1026 | 1027 | // aapt resource value: 0x7f09004c 1028 | public const int switch_thumb_material_dark = 2131296332; 1029 | 1030 | // aapt resource value: 0x7f09004d 1031 | public const int switch_thumb_material_light = 2131296333; 1032 | 1033 | // aapt resource value: 0x7f090038 1034 | public const int switch_thumb_normal_material_dark = 2131296312; 1035 | 1036 | // aapt resource value: 0x7f090039 1037 | public const int switch_thumb_normal_material_light = 2131296313; 1038 | 1039 | static Color() 1040 | { 1041 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1042 | } 1043 | 1044 | private Color() 1045 | { 1046 | } 1047 | } 1048 | 1049 | public partial class Dimension 1050 | { 1051 | 1052 | // aapt resource value: 0x7f06000c 1053 | public const int abc_action_bar_content_inset_material = 2131099660; 1054 | 1055 | // aapt resource value: 0x7f06000d 1056 | public const int abc_action_bar_content_inset_with_nav = 2131099661; 1057 | 1058 | // aapt resource value: 0x7f060001 1059 | public const int abc_action_bar_default_height_material = 2131099649; 1060 | 1061 | // aapt resource value: 0x7f06000e 1062 | public const int abc_action_bar_default_padding_end_material = 2131099662; 1063 | 1064 | // aapt resource value: 0x7f06000f 1065 | public const int abc_action_bar_default_padding_start_material = 2131099663; 1066 | 1067 | // aapt resource value: 0x7f060011 1068 | public const int abc_action_bar_elevation_material = 2131099665; 1069 | 1070 | // aapt resource value: 0x7f060012 1071 | public const int abc_action_bar_icon_vertical_padding_material = 2131099666; 1072 | 1073 | // aapt resource value: 0x7f060013 1074 | public const int abc_action_bar_overflow_padding_end_material = 2131099667; 1075 | 1076 | // aapt resource value: 0x7f060014 1077 | public const int abc_action_bar_overflow_padding_start_material = 2131099668; 1078 | 1079 | // aapt resource value: 0x7f060002 1080 | public const int abc_action_bar_progress_bar_size = 2131099650; 1081 | 1082 | // aapt resource value: 0x7f060015 1083 | public const int abc_action_bar_stacked_max_height = 2131099669; 1084 | 1085 | // aapt resource value: 0x7f060016 1086 | public const int abc_action_bar_stacked_tab_max_width = 2131099670; 1087 | 1088 | // aapt resource value: 0x7f060017 1089 | public const int abc_action_bar_subtitle_bottom_margin_material = 2131099671; 1090 | 1091 | // aapt resource value: 0x7f060018 1092 | public const int abc_action_bar_subtitle_top_margin_material = 2131099672; 1093 | 1094 | // aapt resource value: 0x7f060019 1095 | public const int abc_action_button_min_height_material = 2131099673; 1096 | 1097 | // aapt resource value: 0x7f06001a 1098 | public const int abc_action_button_min_width_material = 2131099674; 1099 | 1100 | // aapt resource value: 0x7f06001b 1101 | public const int abc_action_button_min_width_overflow_material = 2131099675; 1102 | 1103 | // aapt resource value: 0x7f060000 1104 | public const int abc_alert_dialog_button_bar_height = 2131099648; 1105 | 1106 | // aapt resource value: 0x7f06001c 1107 | public const int abc_button_inset_horizontal_material = 2131099676; 1108 | 1109 | // aapt resource value: 0x7f06001d 1110 | public const int abc_button_inset_vertical_material = 2131099677; 1111 | 1112 | // aapt resource value: 0x7f06001e 1113 | public const int abc_button_padding_horizontal_material = 2131099678; 1114 | 1115 | // aapt resource value: 0x7f06001f 1116 | public const int abc_button_padding_vertical_material = 2131099679; 1117 | 1118 | // aapt resource value: 0x7f060020 1119 | public const int abc_cascading_menus_min_smallest_width = 2131099680; 1120 | 1121 | // aapt resource value: 0x7f060005 1122 | public const int abc_config_prefDialogWidth = 2131099653; 1123 | 1124 | // aapt resource value: 0x7f060021 1125 | public const int abc_control_corner_material = 2131099681; 1126 | 1127 | // aapt resource value: 0x7f060022 1128 | public const int abc_control_inset_material = 2131099682; 1129 | 1130 | // aapt resource value: 0x7f060023 1131 | public const int abc_control_padding_material = 2131099683; 1132 | 1133 | // aapt resource value: 0x7f060006 1134 | public const int abc_dialog_fixed_height_major = 2131099654; 1135 | 1136 | // aapt resource value: 0x7f060007 1137 | public const int abc_dialog_fixed_height_minor = 2131099655; 1138 | 1139 | // aapt resource value: 0x7f060008 1140 | public const int abc_dialog_fixed_width_major = 2131099656; 1141 | 1142 | // aapt resource value: 0x7f060009 1143 | public const int abc_dialog_fixed_width_minor = 2131099657; 1144 | 1145 | // aapt resource value: 0x7f060024 1146 | public const int abc_dialog_list_padding_vertical_material = 2131099684; 1147 | 1148 | // aapt resource value: 0x7f06000a 1149 | public const int abc_dialog_min_width_major = 2131099658; 1150 | 1151 | // aapt resource value: 0x7f06000b 1152 | public const int abc_dialog_min_width_minor = 2131099659; 1153 | 1154 | // aapt resource value: 0x7f060025 1155 | public const int abc_dialog_padding_material = 2131099685; 1156 | 1157 | // aapt resource value: 0x7f060026 1158 | public const int abc_dialog_padding_top_material = 2131099686; 1159 | 1160 | // aapt resource value: 0x7f060027 1161 | public const int abc_disabled_alpha_material_dark = 2131099687; 1162 | 1163 | // aapt resource value: 0x7f060028 1164 | public const int abc_disabled_alpha_material_light = 2131099688; 1165 | 1166 | // aapt resource value: 0x7f060029 1167 | public const int abc_dropdownitem_icon_width = 2131099689; 1168 | 1169 | // aapt resource value: 0x7f06002a 1170 | public const int abc_dropdownitem_text_padding_left = 2131099690; 1171 | 1172 | // aapt resource value: 0x7f06002b 1173 | public const int abc_dropdownitem_text_padding_right = 2131099691; 1174 | 1175 | // aapt resource value: 0x7f06002c 1176 | public const int abc_edit_text_inset_bottom_material = 2131099692; 1177 | 1178 | // aapt resource value: 0x7f06002d 1179 | public const int abc_edit_text_inset_horizontal_material = 2131099693; 1180 | 1181 | // aapt resource value: 0x7f06002e 1182 | public const int abc_edit_text_inset_top_material = 2131099694; 1183 | 1184 | // aapt resource value: 0x7f06002f 1185 | public const int abc_floating_window_z = 2131099695; 1186 | 1187 | // aapt resource value: 0x7f060030 1188 | public const int abc_list_item_padding_horizontal_material = 2131099696; 1189 | 1190 | // aapt resource value: 0x7f060031 1191 | public const int abc_panel_menu_list_width = 2131099697; 1192 | 1193 | // aapt resource value: 0x7f060032 1194 | public const int abc_progress_bar_height_material = 2131099698; 1195 | 1196 | // aapt resource value: 0x7f060033 1197 | public const int abc_search_view_preferred_height = 2131099699; 1198 | 1199 | // aapt resource value: 0x7f060034 1200 | public const int abc_search_view_preferred_width = 2131099700; 1201 | 1202 | // aapt resource value: 0x7f060035 1203 | public const int abc_seekbar_track_background_height_material = 2131099701; 1204 | 1205 | // aapt resource value: 0x7f060036 1206 | public const int abc_seekbar_track_progress_height_material = 2131099702; 1207 | 1208 | // aapt resource value: 0x7f060037 1209 | public const int abc_select_dialog_padding_start_material = 2131099703; 1210 | 1211 | // aapt resource value: 0x7f060010 1212 | public const int abc_switch_padding = 2131099664; 1213 | 1214 | // aapt resource value: 0x7f060038 1215 | public const int abc_text_size_body_1_material = 2131099704; 1216 | 1217 | // aapt resource value: 0x7f060039 1218 | public const int abc_text_size_body_2_material = 2131099705; 1219 | 1220 | // aapt resource value: 0x7f06003a 1221 | public const int abc_text_size_button_material = 2131099706; 1222 | 1223 | // aapt resource value: 0x7f06003b 1224 | public const int abc_text_size_caption_material = 2131099707; 1225 | 1226 | // aapt resource value: 0x7f06003c 1227 | public const int abc_text_size_display_1_material = 2131099708; 1228 | 1229 | // aapt resource value: 0x7f06003d 1230 | public const int abc_text_size_display_2_material = 2131099709; 1231 | 1232 | // aapt resource value: 0x7f06003e 1233 | public const int abc_text_size_display_3_material = 2131099710; 1234 | 1235 | // aapt resource value: 0x7f06003f 1236 | public const int abc_text_size_display_4_material = 2131099711; 1237 | 1238 | // aapt resource value: 0x7f060040 1239 | public const int abc_text_size_headline_material = 2131099712; 1240 | 1241 | // aapt resource value: 0x7f060041 1242 | public const int abc_text_size_large_material = 2131099713; 1243 | 1244 | // aapt resource value: 0x7f060042 1245 | public const int abc_text_size_medium_material = 2131099714; 1246 | 1247 | // aapt resource value: 0x7f060043 1248 | public const int abc_text_size_menu_header_material = 2131099715; 1249 | 1250 | // aapt resource value: 0x7f060044 1251 | public const int abc_text_size_menu_material = 2131099716; 1252 | 1253 | // aapt resource value: 0x7f060045 1254 | public const int abc_text_size_small_material = 2131099717; 1255 | 1256 | // aapt resource value: 0x7f060046 1257 | public const int abc_text_size_subhead_material = 2131099718; 1258 | 1259 | // aapt resource value: 0x7f060003 1260 | public const int abc_text_size_subtitle_material_toolbar = 2131099651; 1261 | 1262 | // aapt resource value: 0x7f060047 1263 | public const int abc_text_size_title_material = 2131099719; 1264 | 1265 | // aapt resource value: 0x7f060004 1266 | public const int abc_text_size_title_material_toolbar = 2131099652; 1267 | 1268 | // aapt resource value: 0x7f060048 1269 | public const int disabled_alpha_material_dark = 2131099720; 1270 | 1271 | // aapt resource value: 0x7f060049 1272 | public const int disabled_alpha_material_light = 2131099721; 1273 | 1274 | // aapt resource value: 0x7f06004a 1275 | public const int highlight_alpha_material_colored = 2131099722; 1276 | 1277 | // aapt resource value: 0x7f06004b 1278 | public const int highlight_alpha_material_dark = 2131099723; 1279 | 1280 | // aapt resource value: 0x7f06004c 1281 | public const int highlight_alpha_material_light = 2131099724; 1282 | 1283 | // aapt resource value: 0x7f060050 1284 | public const int item_touch_helper_max_drag_scroll_per_frame = 2131099728; 1285 | 1286 | // aapt resource value: 0x7f060051 1287 | public const int item_touch_helper_swipe_escape_max_velocity = 2131099729; 1288 | 1289 | // aapt resource value: 0x7f060052 1290 | public const int item_touch_helper_swipe_escape_velocity = 2131099730; 1291 | 1292 | // aapt resource value: 0x7f06004d 1293 | public const int notification_large_icon_height = 2131099725; 1294 | 1295 | // aapt resource value: 0x7f06004e 1296 | public const int notification_large_icon_width = 2131099726; 1297 | 1298 | // aapt resource value: 0x7f06004f 1299 | public const int notification_subtext_size = 2131099727; 1300 | 1301 | static Dimension() 1302 | { 1303 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1304 | } 1305 | 1306 | private Dimension() 1307 | { 1308 | } 1309 | } 1310 | 1311 | public partial class Drawable 1312 | { 1313 | 1314 | // aapt resource value: 0x7f020000 1315 | public const int abc_ab_share_pack_mtrl_alpha = 2130837504; 1316 | 1317 | // aapt resource value: 0x7f020001 1318 | public const int abc_action_bar_item_background_material = 2130837505; 1319 | 1320 | // aapt resource value: 0x7f020002 1321 | public const int abc_btn_borderless_material = 2130837506; 1322 | 1323 | // aapt resource value: 0x7f020003 1324 | public const int abc_btn_check_material = 2130837507; 1325 | 1326 | // aapt resource value: 0x7f020004 1327 | public const int abc_btn_check_to_on_mtrl_000 = 2130837508; 1328 | 1329 | // aapt resource value: 0x7f020005 1330 | public const int abc_btn_check_to_on_mtrl_015 = 2130837509; 1331 | 1332 | // aapt resource value: 0x7f020006 1333 | public const int abc_btn_colored_material = 2130837510; 1334 | 1335 | // aapt resource value: 0x7f020007 1336 | public const int abc_btn_default_mtrl_shape = 2130837511; 1337 | 1338 | // aapt resource value: 0x7f020008 1339 | public const int abc_btn_radio_material = 2130837512; 1340 | 1341 | // aapt resource value: 0x7f020009 1342 | public const int abc_btn_radio_to_on_mtrl_000 = 2130837513; 1343 | 1344 | // aapt resource value: 0x7f02000a 1345 | public const int abc_btn_radio_to_on_mtrl_015 = 2130837514; 1346 | 1347 | // aapt resource value: 0x7f02000b 1348 | public const int abc_btn_switch_to_on_mtrl_00001 = 2130837515; 1349 | 1350 | // aapt resource value: 0x7f02000c 1351 | public const int abc_btn_switch_to_on_mtrl_00012 = 2130837516; 1352 | 1353 | // aapt resource value: 0x7f02000d 1354 | public const int abc_cab_background_internal_bg = 2130837517; 1355 | 1356 | // aapt resource value: 0x7f02000e 1357 | public const int abc_cab_background_top_material = 2130837518; 1358 | 1359 | // aapt resource value: 0x7f02000f 1360 | public const int abc_cab_background_top_mtrl_alpha = 2130837519; 1361 | 1362 | // aapt resource value: 0x7f020010 1363 | public const int abc_control_background_material = 2130837520; 1364 | 1365 | // aapt resource value: 0x7f020011 1366 | public const int abc_dialog_material_background = 2130837521; 1367 | 1368 | // aapt resource value: 0x7f020012 1369 | public const int abc_edit_text_material = 2130837522; 1370 | 1371 | // aapt resource value: 0x7f020013 1372 | public const int abc_ic_ab_back_material = 2130837523; 1373 | 1374 | // aapt resource value: 0x7f020014 1375 | public const int abc_ic_arrow_drop_right_black_24dp = 2130837524; 1376 | 1377 | // aapt resource value: 0x7f020015 1378 | public const int abc_ic_clear_material = 2130837525; 1379 | 1380 | // aapt resource value: 0x7f020016 1381 | public const int abc_ic_commit_search_api_mtrl_alpha = 2130837526; 1382 | 1383 | // aapt resource value: 0x7f020017 1384 | public const int abc_ic_go_search_api_material = 2130837527; 1385 | 1386 | // aapt resource value: 0x7f020018 1387 | public const int abc_ic_menu_copy_mtrl_am_alpha = 2130837528; 1388 | 1389 | // aapt resource value: 0x7f020019 1390 | public const int abc_ic_menu_cut_mtrl_alpha = 2130837529; 1391 | 1392 | // aapt resource value: 0x7f02001a 1393 | public const int abc_ic_menu_overflow_material = 2130837530; 1394 | 1395 | // aapt resource value: 0x7f02001b 1396 | public const int abc_ic_menu_paste_mtrl_am_alpha = 2130837531; 1397 | 1398 | // aapt resource value: 0x7f02001c 1399 | public const int abc_ic_menu_selectall_mtrl_alpha = 2130837532; 1400 | 1401 | // aapt resource value: 0x7f02001d 1402 | public const int abc_ic_menu_share_mtrl_alpha = 2130837533; 1403 | 1404 | // aapt resource value: 0x7f02001e 1405 | public const int abc_ic_search_api_material = 2130837534; 1406 | 1407 | // aapt resource value: 0x7f02001f 1408 | public const int abc_ic_star_black_16dp = 2130837535; 1409 | 1410 | // aapt resource value: 0x7f020020 1411 | public const int abc_ic_star_black_36dp = 2130837536; 1412 | 1413 | // aapt resource value: 0x7f020021 1414 | public const int abc_ic_star_black_48dp = 2130837537; 1415 | 1416 | // aapt resource value: 0x7f020022 1417 | public const int abc_ic_star_half_black_16dp = 2130837538; 1418 | 1419 | // aapt resource value: 0x7f020023 1420 | public const int abc_ic_star_half_black_36dp = 2130837539; 1421 | 1422 | // aapt resource value: 0x7f020024 1423 | public const int abc_ic_star_half_black_48dp = 2130837540; 1424 | 1425 | // aapt resource value: 0x7f020025 1426 | public const int abc_ic_voice_search_api_material = 2130837541; 1427 | 1428 | // aapt resource value: 0x7f020026 1429 | public const int abc_item_background_holo_dark = 2130837542; 1430 | 1431 | // aapt resource value: 0x7f020027 1432 | public const int abc_item_background_holo_light = 2130837543; 1433 | 1434 | // aapt resource value: 0x7f020028 1435 | public const int abc_list_divider_mtrl_alpha = 2130837544; 1436 | 1437 | // aapt resource value: 0x7f020029 1438 | public const int abc_list_focused_holo = 2130837545; 1439 | 1440 | // aapt resource value: 0x7f02002a 1441 | public const int abc_list_longpressed_holo = 2130837546; 1442 | 1443 | // aapt resource value: 0x7f02002b 1444 | public const int abc_list_pressed_holo_dark = 2130837547; 1445 | 1446 | // aapt resource value: 0x7f02002c 1447 | public const int abc_list_pressed_holo_light = 2130837548; 1448 | 1449 | // aapt resource value: 0x7f02002d 1450 | public const int abc_list_selector_background_transition_holo_dark = 2130837549; 1451 | 1452 | // aapt resource value: 0x7f02002e 1453 | public const int abc_list_selector_background_transition_holo_light = 2130837550; 1454 | 1455 | // aapt resource value: 0x7f02002f 1456 | public const int abc_list_selector_disabled_holo_dark = 2130837551; 1457 | 1458 | // aapt resource value: 0x7f020030 1459 | public const int abc_list_selector_disabled_holo_light = 2130837552; 1460 | 1461 | // aapt resource value: 0x7f020031 1462 | public const int abc_list_selector_holo_dark = 2130837553; 1463 | 1464 | // aapt resource value: 0x7f020032 1465 | public const int abc_list_selector_holo_light = 2130837554; 1466 | 1467 | // aapt resource value: 0x7f020033 1468 | public const int abc_menu_hardkey_panel_mtrl_mult = 2130837555; 1469 | 1470 | // aapt resource value: 0x7f020034 1471 | public const int abc_popup_background_mtrl_mult = 2130837556; 1472 | 1473 | // aapt resource value: 0x7f020035 1474 | public const int abc_ratingbar_indicator_material = 2130837557; 1475 | 1476 | // aapt resource value: 0x7f020036 1477 | public const int abc_ratingbar_material = 2130837558; 1478 | 1479 | // aapt resource value: 0x7f020037 1480 | public const int abc_ratingbar_small_material = 2130837559; 1481 | 1482 | // aapt resource value: 0x7f020038 1483 | public const int abc_scrubber_control_off_mtrl_alpha = 2130837560; 1484 | 1485 | // aapt resource value: 0x7f020039 1486 | public const int abc_scrubber_control_to_pressed_mtrl_000 = 2130837561; 1487 | 1488 | // aapt resource value: 0x7f02003a 1489 | public const int abc_scrubber_control_to_pressed_mtrl_005 = 2130837562; 1490 | 1491 | // aapt resource value: 0x7f02003b 1492 | public const int abc_scrubber_primary_mtrl_alpha = 2130837563; 1493 | 1494 | // aapt resource value: 0x7f02003c 1495 | public const int abc_scrubber_track_mtrl_alpha = 2130837564; 1496 | 1497 | // aapt resource value: 0x7f02003d 1498 | public const int abc_seekbar_thumb_material = 2130837565; 1499 | 1500 | // aapt resource value: 0x7f02003e 1501 | public const int abc_seekbar_tick_mark_material = 2130837566; 1502 | 1503 | // aapt resource value: 0x7f02003f 1504 | public const int abc_seekbar_track_material = 2130837567; 1505 | 1506 | // aapt resource value: 0x7f020040 1507 | public const int abc_spinner_mtrl_am_alpha = 2130837568; 1508 | 1509 | // aapt resource value: 0x7f020041 1510 | public const int abc_spinner_textfield_background_material = 2130837569; 1511 | 1512 | // aapt resource value: 0x7f020042 1513 | public const int abc_switch_thumb_material = 2130837570; 1514 | 1515 | // aapt resource value: 0x7f020043 1516 | public const int abc_switch_track_mtrl_alpha = 2130837571; 1517 | 1518 | // aapt resource value: 0x7f020044 1519 | public const int abc_tab_indicator_material = 2130837572; 1520 | 1521 | // aapt resource value: 0x7f020045 1522 | public const int abc_tab_indicator_mtrl_alpha = 2130837573; 1523 | 1524 | // aapt resource value: 0x7f020046 1525 | public const int abc_text_cursor_material = 2130837574; 1526 | 1527 | // aapt resource value: 0x7f020047 1528 | public const int abc_text_select_handle_left_mtrl_dark = 2130837575; 1529 | 1530 | // aapt resource value: 0x7f020048 1531 | public const int abc_text_select_handle_left_mtrl_light = 2130837576; 1532 | 1533 | // aapt resource value: 0x7f020049 1534 | public const int abc_text_select_handle_middle_mtrl_dark = 2130837577; 1535 | 1536 | // aapt resource value: 0x7f02004a 1537 | public const int abc_text_select_handle_middle_mtrl_light = 2130837578; 1538 | 1539 | // aapt resource value: 0x7f02004b 1540 | public const int abc_text_select_handle_right_mtrl_dark = 2130837579; 1541 | 1542 | // aapt resource value: 0x7f02004c 1543 | public const int abc_text_select_handle_right_mtrl_light = 2130837580; 1544 | 1545 | // aapt resource value: 0x7f02004d 1546 | public const int abc_textfield_activated_mtrl_alpha = 2130837581; 1547 | 1548 | // aapt resource value: 0x7f02004e 1549 | public const int abc_textfield_default_mtrl_alpha = 2130837582; 1550 | 1551 | // aapt resource value: 0x7f02004f 1552 | public const int abc_textfield_search_activated_mtrl_alpha = 2130837583; 1553 | 1554 | // aapt resource value: 0x7f020050 1555 | public const int abc_textfield_search_default_mtrl_alpha = 2130837584; 1556 | 1557 | // aapt resource value: 0x7f020051 1558 | public const int abc_textfield_search_material = 2130837585; 1559 | 1560 | // aapt resource value: 0x7f020052 1561 | public const int abc_vector_test = 2130837586; 1562 | 1563 | // aapt resource value: 0x7f020053 1564 | public const int ic_reorder_grey_500_24dp = 2130837587; 1565 | 1566 | // aapt resource value: 0x7f020054 1567 | public const int Icon = 2130837588; 1568 | 1569 | // aapt resource value: 0x7f020055 1570 | public const int notification_template_icon_bg = 2130837589; 1571 | 1572 | static Drawable() 1573 | { 1574 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1575 | } 1576 | 1577 | private Drawable() 1578 | { 1579 | } 1580 | } 1581 | 1582 | public partial class Id 1583 | { 1584 | 1585 | // aapt resource value: 0x7f0a0059 1586 | public const int action0 = 2131361881; 1587 | 1588 | // aapt resource value: 0x7f0a0046 1589 | public const int action_bar = 2131361862; 1590 | 1591 | // aapt resource value: 0x7f0a0000 1592 | public const int action_bar_activity_content = 2131361792; 1593 | 1594 | // aapt resource value: 0x7f0a0045 1595 | public const int action_bar_container = 2131361861; 1596 | 1597 | // aapt resource value: 0x7f0a0041 1598 | public const int action_bar_root = 2131361857; 1599 | 1600 | // aapt resource value: 0x7f0a0001 1601 | public const int action_bar_spinner = 2131361793; 1602 | 1603 | // aapt resource value: 0x7f0a0026 1604 | public const int action_bar_subtitle = 2131361830; 1605 | 1606 | // aapt resource value: 0x7f0a0025 1607 | public const int action_bar_title = 2131361829; 1608 | 1609 | // aapt resource value: 0x7f0a0047 1610 | public const int action_context_bar = 2131361863; 1611 | 1612 | // aapt resource value: 0x7f0a005d 1613 | public const int action_divider = 2131361885; 1614 | 1615 | // aapt resource value: 0x7f0a0002 1616 | public const int action_menu_divider = 2131361794; 1617 | 1618 | // aapt resource value: 0x7f0a0003 1619 | public const int action_menu_presenter = 2131361795; 1620 | 1621 | // aapt resource value: 0x7f0a0043 1622 | public const int action_mode_bar = 2131361859; 1623 | 1624 | // aapt resource value: 0x7f0a0042 1625 | public const int action_mode_bar_stub = 2131361858; 1626 | 1627 | // aapt resource value: 0x7f0a0027 1628 | public const int action_mode_close_button = 2131361831; 1629 | 1630 | // aapt resource value: 0x7f0a0028 1631 | public const int activity_chooser_view_content = 2131361832; 1632 | 1633 | // aapt resource value: 0x7f0a0014 1634 | public const int add = 2131361812; 1635 | 1636 | // aapt resource value: 0x7f0a0034 1637 | public const int alertTitle = 2131361844; 1638 | 1639 | // aapt resource value: 0x7f0a001e 1640 | public const int always = 2131361822; 1641 | 1642 | // aapt resource value: 0x7f0a001b 1643 | public const int beginning = 2131361819; 1644 | 1645 | // aapt resource value: 0x7f0a0023 1646 | public const int bottom = 2131361827; 1647 | 1648 | // aapt resource value: 0x7f0a002f 1649 | public const int buttonPanel = 2131361839; 1650 | 1651 | // aapt resource value: 0x7f0a005a 1652 | public const int cancel_action = 2131361882; 1653 | 1654 | // aapt resource value: 0x7f0a003d 1655 | public const int checkbox = 2131361853; 1656 | 1657 | // aapt resource value: 0x7f0a0060 1658 | public const int chronometer = 2131361888; 1659 | 1660 | // aapt resource value: 0x7f0a001f 1661 | public const int collapseActionView = 2131361823; 1662 | 1663 | // aapt resource value: 0x7f0a0035 1664 | public const int contentPanel = 2131361845; 1665 | 1666 | // aapt resource value: 0x7f0a003b 1667 | public const int custom = 2131361851; 1668 | 1669 | // aapt resource value: 0x7f0a003a 1670 | public const int customPanel = 2131361850; 1671 | 1672 | // aapt resource value: 0x7f0a0044 1673 | public const int decor_content_parent = 2131361860; 1674 | 1675 | // aapt resource value: 0x7f0a002b 1676 | public const int default_activity_button = 2131361835; 1677 | 1678 | // aapt resource value: 0x7f0a000d 1679 | public const int disableHome = 2131361805; 1680 | 1681 | // aapt resource value: 0x7f0a0048 1682 | public const int edit_query = 2131361864; 1683 | 1684 | // aapt resource value: 0x7f0a001c 1685 | public const int end = 2131361820; 1686 | 1687 | // aapt resource value: 0x7f0a0064 1688 | public const int end_padder = 2131361892; 1689 | 1690 | // aapt resource value: 0x7f0a0029 1691 | public const int expand_activities_button = 2131361833; 1692 | 1693 | // aapt resource value: 0x7f0a003c 1694 | public const int expanded_menu = 2131361852; 1695 | 1696 | // aapt resource value: 0x7f0a0057 1697 | public const int handle = 2131361879; 1698 | 1699 | // aapt resource value: 0x7f0a0004 1700 | public const int home = 2131361796; 1701 | 1702 | // aapt resource value: 0x7f0a000e 1703 | public const int homeAsUp = 2131361806; 1704 | 1705 | // aapt resource value: 0x7f0a002d 1706 | public const int icon = 2131361837; 1707 | 1708 | // aapt resource value: 0x7f0a0020 1709 | public const int ifRoom = 2131361824; 1710 | 1711 | // aapt resource value: 0x7f0a002a 1712 | public const int image = 2131361834; 1713 | 1714 | // aapt resource value: 0x7f0a0063 1715 | public const int info = 2131361891; 1716 | 1717 | // aapt resource value: 0x7f0a0055 1718 | public const int item = 2131361877; 1719 | 1720 | // aapt resource value: 0x7f0a0009 1721 | public const int item_touch_helper_previous_elevation = 2131361801; 1722 | 1723 | // aapt resource value: 0x7f0a005e 1724 | public const int line1 = 2131361886; 1725 | 1726 | // aapt resource value: 0x7f0a0062 1727 | public const int line3 = 2131361890; 1728 | 1729 | // aapt resource value: 0x7f0a000a 1730 | public const int listMode = 2131361802; 1731 | 1732 | // aapt resource value: 0x7f0a002c 1733 | public const int list_item = 2131361836; 1734 | 1735 | // aapt resource value: 0x7f0a005c 1736 | public const int media_actions = 2131361884; 1737 | 1738 | // aapt resource value: 0x7f0a001d 1739 | public const int middle = 2131361821; 1740 | 1741 | // aapt resource value: 0x7f0a0015 1742 | public const int multiply = 2131361813; 1743 | 1744 | // aapt resource value: 0x7f0a0021 1745 | public const int never = 2131361825; 1746 | 1747 | // aapt resource value: 0x7f0a000f 1748 | public const int none = 2131361807; 1749 | 1750 | // aapt resource value: 0x7f0a000b 1751 | public const int normal = 2131361803; 1752 | 1753 | // aapt resource value: 0x7f0a0031 1754 | public const int parentPanel = 2131361841; 1755 | 1756 | // aapt resource value: 0x7f0a0005 1757 | public const int progress_circular = 2131361797; 1758 | 1759 | // aapt resource value: 0x7f0a0006 1760 | public const int progress_horizontal = 2131361798; 1761 | 1762 | // aapt resource value: 0x7f0a003f 1763 | public const int radio = 2131361855; 1764 | 1765 | // aapt resource value: 0x7f0a0058 1766 | public const int recycler_view = 2131361880; 1767 | 1768 | // aapt resource value: 0x7f0a0016 1769 | public const int screen = 2131361814; 1770 | 1771 | // aapt resource value: 0x7f0a0039 1772 | public const int scrollIndicatorDown = 2131361849; 1773 | 1774 | // aapt resource value: 0x7f0a0036 1775 | public const int scrollIndicatorUp = 2131361846; 1776 | 1777 | // aapt resource value: 0x7f0a0037 1778 | public const int scrollView = 2131361847; 1779 | 1780 | // aapt resource value: 0x7f0a004a 1781 | public const int search_badge = 2131361866; 1782 | 1783 | // aapt resource value: 0x7f0a0049 1784 | public const int search_bar = 2131361865; 1785 | 1786 | // aapt resource value: 0x7f0a004b 1787 | public const int search_button = 2131361867; 1788 | 1789 | // aapt resource value: 0x7f0a0050 1790 | public const int search_close_btn = 2131361872; 1791 | 1792 | // aapt resource value: 0x7f0a004c 1793 | public const int search_edit_frame = 2131361868; 1794 | 1795 | // aapt resource value: 0x7f0a0052 1796 | public const int search_go_btn = 2131361874; 1797 | 1798 | // aapt resource value: 0x7f0a004d 1799 | public const int search_mag_icon = 2131361869; 1800 | 1801 | // aapt resource value: 0x7f0a004e 1802 | public const int search_plate = 2131361870; 1803 | 1804 | // aapt resource value: 0x7f0a004f 1805 | public const int search_src_text = 2131361871; 1806 | 1807 | // aapt resource value: 0x7f0a0053 1808 | public const int search_voice_btn = 2131361875; 1809 | 1810 | // aapt resource value: 0x7f0a0054 1811 | public const int select_dialog_listview = 2131361876; 1812 | 1813 | // aapt resource value: 0x7f0a003e 1814 | public const int shortcut = 2131361854; 1815 | 1816 | // aapt resource value: 0x7f0a0010 1817 | public const int showCustom = 2131361808; 1818 | 1819 | // aapt resource value: 0x7f0a0011 1820 | public const int showHome = 2131361809; 1821 | 1822 | // aapt resource value: 0x7f0a0012 1823 | public const int showTitle = 2131361810; 1824 | 1825 | // aapt resource value: 0x7f0a0030 1826 | public const int spacer = 2131361840; 1827 | 1828 | // aapt resource value: 0x7f0a0007 1829 | public const int split_action_bar = 2131361799; 1830 | 1831 | // aapt resource value: 0x7f0a0017 1832 | public const int src_atop = 2131361815; 1833 | 1834 | // aapt resource value: 0x7f0a0018 1835 | public const int src_in = 2131361816; 1836 | 1837 | // aapt resource value: 0x7f0a0019 1838 | public const int src_over = 2131361817; 1839 | 1840 | // aapt resource value: 0x7f0a005b 1841 | public const int status_bar_latest_event_content = 2131361883; 1842 | 1843 | // aapt resource value: 0x7f0a0040 1844 | public const int submenuarrow = 2131361856; 1845 | 1846 | // aapt resource value: 0x7f0a0051 1847 | public const int submit_area = 2131361873; 1848 | 1849 | // aapt resource value: 0x7f0a000c 1850 | public const int tabMode = 2131361804; 1851 | 1852 | // aapt resource value: 0x7f0a0056 1853 | public const int text = 2131361878; 1854 | 1855 | // aapt resource value: 0x7f0a0061 1856 | public const int text2 = 2131361889; 1857 | 1858 | // aapt resource value: 0x7f0a0038 1859 | public const int textSpacerNoButtons = 2131361848; 1860 | 1861 | // aapt resource value: 0x7f0a005f 1862 | public const int time = 2131361887; 1863 | 1864 | // aapt resource value: 0x7f0a002e 1865 | public const int title = 2131361838; 1866 | 1867 | // aapt resource value: 0x7f0a0033 1868 | public const int title_template = 2131361843; 1869 | 1870 | // aapt resource value: 0x7f0a0024 1871 | public const int top = 2131361828; 1872 | 1873 | // aapt resource value: 0x7f0a0032 1874 | public const int topPanel = 2131361842; 1875 | 1876 | // aapt resource value: 0x7f0a0008 1877 | public const int up = 2131361800; 1878 | 1879 | // aapt resource value: 0x7f0a0013 1880 | public const int useLogo = 2131361811; 1881 | 1882 | // aapt resource value: 0x7f0a0022 1883 | public const int withText = 2131361826; 1884 | 1885 | // aapt resource value: 0x7f0a001a 1886 | public const int wrap_content = 2131361818; 1887 | 1888 | static Id() 1889 | { 1890 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1891 | } 1892 | 1893 | private Id() 1894 | { 1895 | } 1896 | } 1897 | 1898 | public partial class Integer 1899 | { 1900 | 1901 | // aapt resource value: 0x7f0b0000 1902 | public const int abc_config_activityDefaultDur = 2131427328; 1903 | 1904 | // aapt resource value: 0x7f0b0001 1905 | public const int abc_config_activityShortDur = 2131427329; 1906 | 1907 | // aapt resource value: 0x7f0b0002 1908 | public const int cancel_button_image_alpha = 2131427330; 1909 | 1910 | // aapt resource value: 0x7f0b0003 1911 | public const int status_bar_notification_info_maxnum = 2131427331; 1912 | 1913 | static Integer() 1914 | { 1915 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 1916 | } 1917 | 1918 | private Integer() 1919 | { 1920 | } 1921 | } 1922 | 1923 | public partial class Layout 1924 | { 1925 | 1926 | // aapt resource value: 0x7f030000 1927 | public const int abc_action_bar_title_item = 2130903040; 1928 | 1929 | // aapt resource value: 0x7f030001 1930 | public const int abc_action_bar_up_container = 2130903041; 1931 | 1932 | // aapt resource value: 0x7f030002 1933 | public const int abc_action_bar_view_list_nav_layout = 2130903042; 1934 | 1935 | // aapt resource value: 0x7f030003 1936 | public const int abc_action_menu_item_layout = 2130903043; 1937 | 1938 | // aapt resource value: 0x7f030004 1939 | public const int abc_action_menu_layout = 2130903044; 1940 | 1941 | // aapt resource value: 0x7f030005 1942 | public const int abc_action_mode_bar = 2130903045; 1943 | 1944 | // aapt resource value: 0x7f030006 1945 | public const int abc_action_mode_close_item_material = 2130903046; 1946 | 1947 | // aapt resource value: 0x7f030007 1948 | public const int abc_activity_chooser_view = 2130903047; 1949 | 1950 | // aapt resource value: 0x7f030008 1951 | public const int abc_activity_chooser_view_list_item = 2130903048; 1952 | 1953 | // aapt resource value: 0x7f030009 1954 | public const int abc_alert_dialog_button_bar_material = 2130903049; 1955 | 1956 | // aapt resource value: 0x7f03000a 1957 | public const int abc_alert_dialog_material = 2130903050; 1958 | 1959 | // aapt resource value: 0x7f03000b 1960 | public const int abc_dialog_title_material = 2130903051; 1961 | 1962 | // aapt resource value: 0x7f03000c 1963 | public const int abc_expanded_menu_layout = 2130903052; 1964 | 1965 | // aapt resource value: 0x7f03000d 1966 | public const int abc_list_menu_item_checkbox = 2130903053; 1967 | 1968 | // aapt resource value: 0x7f03000e 1969 | public const int abc_list_menu_item_icon = 2130903054; 1970 | 1971 | // aapt resource value: 0x7f03000f 1972 | public const int abc_list_menu_item_layout = 2130903055; 1973 | 1974 | // aapt resource value: 0x7f030010 1975 | public const int abc_list_menu_item_radio = 2130903056; 1976 | 1977 | // aapt resource value: 0x7f030011 1978 | public const int abc_popup_menu_header_item_layout = 2130903057; 1979 | 1980 | // aapt resource value: 0x7f030012 1981 | public const int abc_popup_menu_item_layout = 2130903058; 1982 | 1983 | // aapt resource value: 0x7f030013 1984 | public const int abc_screen_content_include = 2130903059; 1985 | 1986 | // aapt resource value: 0x7f030014 1987 | public const int abc_screen_simple = 2130903060; 1988 | 1989 | // aapt resource value: 0x7f030015 1990 | public const int abc_screen_simple_overlay_action_mode = 2130903061; 1991 | 1992 | // aapt resource value: 0x7f030016 1993 | public const int abc_screen_toolbar = 2130903062; 1994 | 1995 | // aapt resource value: 0x7f030017 1996 | public const int abc_search_dropdown_item_icons_2line = 2130903063; 1997 | 1998 | // aapt resource value: 0x7f030018 1999 | public const int abc_search_view = 2130903064; 2000 | 2001 | // aapt resource value: 0x7f030019 2002 | public const int abc_select_dialog_material = 2130903065; 2003 | 2004 | // aapt resource value: 0x7f03001a 2005 | public const int item_main = 2130903066; 2006 | 2007 | // aapt resource value: 0x7f03001b 2008 | public const int Main = 2130903067; 2009 | 2010 | // aapt resource value: 0x7f03001c 2011 | public const int notification_media_action = 2130903068; 2012 | 2013 | // aapt resource value: 0x7f03001d 2014 | public const int notification_media_cancel_action = 2130903069; 2015 | 2016 | // aapt resource value: 0x7f03001e 2017 | public const int notification_template_big_media = 2130903070; 2018 | 2019 | // aapt resource value: 0x7f03001f 2020 | public const int notification_template_big_media_narrow = 2130903071; 2021 | 2022 | // aapt resource value: 0x7f030020 2023 | public const int notification_template_lines = 2130903072; 2024 | 2025 | // aapt resource value: 0x7f030021 2026 | public const int notification_template_media = 2130903073; 2027 | 2028 | // aapt resource value: 0x7f030022 2029 | public const int notification_template_part_chronometer = 2130903074; 2030 | 2031 | // aapt resource value: 0x7f030023 2032 | public const int notification_template_part_time = 2130903075; 2033 | 2034 | // aapt resource value: 0x7f030024 2035 | public const int select_dialog_item_material = 2130903076; 2036 | 2037 | // aapt resource value: 0x7f030025 2038 | public const int select_dialog_multichoice_material = 2130903077; 2039 | 2040 | // aapt resource value: 0x7f030026 2041 | public const int select_dialog_singlechoice_material = 2130903078; 2042 | 2043 | // aapt resource value: 0x7f030027 2044 | public const int support_simple_spinner_dropdown_item = 2130903079; 2045 | 2046 | static Layout() 2047 | { 2048 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 2049 | } 2050 | 2051 | private Layout() 2052 | { 2053 | } 2054 | } 2055 | 2056 | public partial class String 2057 | { 2058 | 2059 | // aapt resource value: 0x7f050000 2060 | public const int abc_action_bar_home_description = 2131034112; 2061 | 2062 | // aapt resource value: 0x7f050001 2063 | public const int abc_action_bar_home_description_format = 2131034113; 2064 | 2065 | // aapt resource value: 0x7f050002 2066 | public const int abc_action_bar_home_subtitle_description_format = 2131034114; 2067 | 2068 | // aapt resource value: 0x7f050003 2069 | public const int abc_action_bar_up_description = 2131034115; 2070 | 2071 | // aapt resource value: 0x7f050004 2072 | public const int abc_action_menu_overflow_description = 2131034116; 2073 | 2074 | // aapt resource value: 0x7f050005 2075 | public const int abc_action_mode_done = 2131034117; 2076 | 2077 | // aapt resource value: 0x7f050006 2078 | public const int abc_activity_chooser_view_see_all = 2131034118; 2079 | 2080 | // aapt resource value: 0x7f050007 2081 | public const int abc_activitychooserview_choose_application = 2131034119; 2082 | 2083 | // aapt resource value: 0x7f050008 2084 | public const int abc_capital_off = 2131034120; 2085 | 2086 | // aapt resource value: 0x7f050009 2087 | public const int abc_capital_on = 2131034121; 2088 | 2089 | // aapt resource value: 0x7f050015 2090 | public const int abc_font_family_body_1_material = 2131034133; 2091 | 2092 | // aapt resource value: 0x7f050016 2093 | public const int abc_font_family_body_2_material = 2131034134; 2094 | 2095 | // aapt resource value: 0x7f050017 2096 | public const int abc_font_family_button_material = 2131034135; 2097 | 2098 | // aapt resource value: 0x7f050018 2099 | public const int abc_font_family_caption_material = 2131034136; 2100 | 2101 | // aapt resource value: 0x7f050019 2102 | public const int abc_font_family_display_1_material = 2131034137; 2103 | 2104 | // aapt resource value: 0x7f05001a 2105 | public const int abc_font_family_display_2_material = 2131034138; 2106 | 2107 | // aapt resource value: 0x7f05001b 2108 | public const int abc_font_family_display_3_material = 2131034139; 2109 | 2110 | // aapt resource value: 0x7f05001c 2111 | public const int abc_font_family_display_4_material = 2131034140; 2112 | 2113 | // aapt resource value: 0x7f05001d 2114 | public const int abc_font_family_headline_material = 2131034141; 2115 | 2116 | // aapt resource value: 0x7f05001e 2117 | public const int abc_font_family_menu_material = 2131034142; 2118 | 2119 | // aapt resource value: 0x7f05001f 2120 | public const int abc_font_family_subhead_material = 2131034143; 2121 | 2122 | // aapt resource value: 0x7f050020 2123 | public const int abc_font_family_title_material = 2131034144; 2124 | 2125 | // aapt resource value: 0x7f05000a 2126 | public const int abc_search_hint = 2131034122; 2127 | 2128 | // aapt resource value: 0x7f05000b 2129 | public const int abc_searchview_description_clear = 2131034123; 2130 | 2131 | // aapt resource value: 0x7f05000c 2132 | public const int abc_searchview_description_query = 2131034124; 2133 | 2134 | // aapt resource value: 0x7f05000d 2135 | public const int abc_searchview_description_search = 2131034125; 2136 | 2137 | // aapt resource value: 0x7f05000e 2138 | public const int abc_searchview_description_submit = 2131034126; 2139 | 2140 | // aapt resource value: 0x7f05000f 2141 | public const int abc_searchview_description_voice = 2131034127; 2142 | 2143 | // aapt resource value: 0x7f050010 2144 | public const int abc_shareactionprovider_share_with = 2131034128; 2145 | 2146 | // aapt resource value: 0x7f050011 2147 | public const int abc_shareactionprovider_share_with_application = 2131034129; 2148 | 2149 | // aapt resource value: 0x7f050012 2150 | public const int abc_toolbar_collapse_description = 2131034130; 2151 | 2152 | // aapt resource value: 0x7f050022 2153 | public const int app_name = 2131034146; 2154 | 2155 | // aapt resource value: 0x7f050021 2156 | public const int hello = 2131034145; 2157 | 2158 | // aapt resource value: 0x7f050013 2159 | public const int search_menu_title = 2131034131; 2160 | 2161 | // aapt resource value: 0x7f050014 2162 | public const int status_bar_notification_info_overflow = 2131034132; 2163 | 2164 | static String() 2165 | { 2166 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 2167 | } 2168 | 2169 | private String() 2170 | { 2171 | } 2172 | } 2173 | 2174 | public partial class Style 2175 | { 2176 | 2177 | // aapt resource value: 0x7f07008a 2178 | public const int AlertDialog_AppCompat = 2131165322; 2179 | 2180 | // aapt resource value: 0x7f07008b 2181 | public const int AlertDialog_AppCompat_Light = 2131165323; 2182 | 2183 | // aapt resource value: 0x7f07008c 2184 | public const int Animation_AppCompat_Dialog = 2131165324; 2185 | 2186 | // aapt resource value: 0x7f07008d 2187 | public const int Animation_AppCompat_DropDownUp = 2131165325; 2188 | 2189 | // aapt resource value: 0x7f07014b 2190 | public const int AppTheme = 2131165515; 2191 | 2192 | // aapt resource value: 0x7f07008e 2193 | public const int Base_AlertDialog_AppCompat = 2131165326; 2194 | 2195 | // aapt resource value: 0x7f07008f 2196 | public const int Base_AlertDialog_AppCompat_Light = 2131165327; 2197 | 2198 | // aapt resource value: 0x7f070090 2199 | public const int Base_Animation_AppCompat_Dialog = 2131165328; 2200 | 2201 | // aapt resource value: 0x7f070091 2202 | public const int Base_Animation_AppCompat_DropDownUp = 2131165329; 2203 | 2204 | // aapt resource value: 0x7f070092 2205 | public const int Base_DialogWindowTitle_AppCompat = 2131165330; 2206 | 2207 | // aapt resource value: 0x7f070093 2208 | public const int Base_DialogWindowTitleBackground_AppCompat = 2131165331; 2209 | 2210 | // aapt resource value: 0x7f070038 2211 | public const int Base_TextAppearance_AppCompat = 2131165240; 2212 | 2213 | // aapt resource value: 0x7f070039 2214 | public const int Base_TextAppearance_AppCompat_Body1 = 2131165241; 2215 | 2216 | // aapt resource value: 0x7f07003a 2217 | public const int Base_TextAppearance_AppCompat_Body2 = 2131165242; 2218 | 2219 | // aapt resource value: 0x7f070022 2220 | public const int Base_TextAppearance_AppCompat_Button = 2131165218; 2221 | 2222 | // aapt resource value: 0x7f07003b 2223 | public const int Base_TextAppearance_AppCompat_Caption = 2131165243; 2224 | 2225 | // aapt resource value: 0x7f07003c 2226 | public const int Base_TextAppearance_AppCompat_Display1 = 2131165244; 2227 | 2228 | // aapt resource value: 0x7f07003d 2229 | public const int Base_TextAppearance_AppCompat_Display2 = 2131165245; 2230 | 2231 | // aapt resource value: 0x7f07003e 2232 | public const int Base_TextAppearance_AppCompat_Display3 = 2131165246; 2233 | 2234 | // aapt resource value: 0x7f07003f 2235 | public const int Base_TextAppearance_AppCompat_Display4 = 2131165247; 2236 | 2237 | // aapt resource value: 0x7f070040 2238 | public const int Base_TextAppearance_AppCompat_Headline = 2131165248; 2239 | 2240 | // aapt resource value: 0x7f07000b 2241 | public const int Base_TextAppearance_AppCompat_Inverse = 2131165195; 2242 | 2243 | // aapt resource value: 0x7f070041 2244 | public const int Base_TextAppearance_AppCompat_Large = 2131165249; 2245 | 2246 | // aapt resource value: 0x7f07000c 2247 | public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131165196; 2248 | 2249 | // aapt resource value: 0x7f070042 2250 | public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131165250; 2251 | 2252 | // aapt resource value: 0x7f070043 2253 | public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131165251; 2254 | 2255 | // aapt resource value: 0x7f070044 2256 | public const int Base_TextAppearance_AppCompat_Medium = 2131165252; 2257 | 2258 | // aapt resource value: 0x7f07000d 2259 | public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131165197; 2260 | 2261 | // aapt resource value: 0x7f070045 2262 | public const int Base_TextAppearance_AppCompat_Menu = 2131165253; 2263 | 2264 | // aapt resource value: 0x7f070094 2265 | public const int Base_TextAppearance_AppCompat_SearchResult = 2131165332; 2266 | 2267 | // aapt resource value: 0x7f070046 2268 | public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131165254; 2269 | 2270 | // aapt resource value: 0x7f070047 2271 | public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131165255; 2272 | 2273 | // aapt resource value: 0x7f070048 2274 | public const int Base_TextAppearance_AppCompat_Small = 2131165256; 2275 | 2276 | // aapt resource value: 0x7f07000e 2277 | public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131165198; 2278 | 2279 | // aapt resource value: 0x7f070049 2280 | public const int Base_TextAppearance_AppCompat_Subhead = 2131165257; 2281 | 2282 | // aapt resource value: 0x7f07000f 2283 | public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131165199; 2284 | 2285 | // aapt resource value: 0x7f07004a 2286 | public const int Base_TextAppearance_AppCompat_Title = 2131165258; 2287 | 2288 | // aapt resource value: 0x7f070010 2289 | public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131165200; 2290 | 2291 | // aapt resource value: 0x7f070083 2292 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131165315; 2293 | 2294 | // aapt resource value: 0x7f07004b 2295 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131165259; 2296 | 2297 | // aapt resource value: 0x7f07004c 2298 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131165260; 2299 | 2300 | // aapt resource value: 0x7f07004d 2301 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131165261; 2302 | 2303 | // aapt resource value: 0x7f07004e 2304 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131165262; 2305 | 2306 | // aapt resource value: 0x7f07004f 2307 | public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131165263; 2308 | 2309 | // aapt resource value: 0x7f070050 2310 | public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131165264; 2311 | 2312 | // aapt resource value: 0x7f070051 2313 | public const int Base_TextAppearance_AppCompat_Widget_Button = 2131165265; 2314 | 2315 | // aapt resource value: 0x7f070084 2316 | public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131165316; 2317 | 2318 | // aapt resource value: 0x7f070095 2319 | public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131165333; 2320 | 2321 | // aapt resource value: 0x7f070052 2322 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131165266; 2323 | 2324 | // aapt resource value: 0x7f070053 2325 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131165267; 2326 | 2327 | // aapt resource value: 0x7f070054 2328 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131165268; 2329 | 2330 | // aapt resource value: 0x7f070055 2331 | public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131165269; 2332 | 2333 | // aapt resource value: 0x7f070056 2334 | public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131165270; 2335 | 2336 | // aapt resource value: 0x7f070096 2337 | public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131165334; 2338 | 2339 | // aapt resource value: 0x7f070057 2340 | public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131165271; 2341 | 2342 | // aapt resource value: 0x7f070058 2343 | public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131165272; 2344 | 2345 | // aapt resource value: 0x7f070059 2346 | public const int Base_Theme_AppCompat = 2131165273; 2347 | 2348 | // aapt resource value: 0x7f070097 2349 | public const int Base_Theme_AppCompat_CompactMenu = 2131165335; 2350 | 2351 | // aapt resource value: 0x7f070011 2352 | public const int Base_Theme_AppCompat_Dialog = 2131165201; 2353 | 2354 | // aapt resource value: 0x7f070098 2355 | public const int Base_Theme_AppCompat_Dialog_Alert = 2131165336; 2356 | 2357 | // aapt resource value: 0x7f070099 2358 | public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131165337; 2359 | 2360 | // aapt resource value: 0x7f07009a 2361 | public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131165338; 2362 | 2363 | // aapt resource value: 0x7f070001 2364 | public const int Base_Theme_AppCompat_DialogWhenLarge = 2131165185; 2365 | 2366 | // aapt resource value: 0x7f07005a 2367 | public const int Base_Theme_AppCompat_Light = 2131165274; 2368 | 2369 | // aapt resource value: 0x7f07009b 2370 | public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131165339; 2371 | 2372 | // aapt resource value: 0x7f070012 2373 | public const int Base_Theme_AppCompat_Light_Dialog = 2131165202; 2374 | 2375 | // aapt resource value: 0x7f07009c 2376 | public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131165340; 2377 | 2378 | // aapt resource value: 0x7f07009d 2379 | public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131165341; 2380 | 2381 | // aapt resource value: 0x7f07009e 2382 | public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131165342; 2383 | 2384 | // aapt resource value: 0x7f070002 2385 | public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131165186; 2386 | 2387 | // aapt resource value: 0x7f07009f 2388 | public const int Base_ThemeOverlay_AppCompat = 2131165343; 2389 | 2390 | // aapt resource value: 0x7f0700a0 2391 | public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131165344; 2392 | 2393 | // aapt resource value: 0x7f0700a1 2394 | public const int Base_ThemeOverlay_AppCompat_Dark = 2131165345; 2395 | 2396 | // aapt resource value: 0x7f0700a2 2397 | public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131165346; 2398 | 2399 | // aapt resource value: 0x7f070013 2400 | public const int Base_ThemeOverlay_AppCompat_Dialog = 2131165203; 2401 | 2402 | // aapt resource value: 0x7f0700a3 2403 | public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131165347; 2404 | 2405 | // aapt resource value: 0x7f0700a4 2406 | public const int Base_ThemeOverlay_AppCompat_Light = 2131165348; 2407 | 2408 | // aapt resource value: 0x7f070014 2409 | public const int Base_V11_Theme_AppCompat_Dialog = 2131165204; 2410 | 2411 | // aapt resource value: 0x7f070015 2412 | public const int Base_V11_Theme_AppCompat_Light_Dialog = 2131165205; 2413 | 2414 | // aapt resource value: 0x7f070016 2415 | public const int Base_V11_ThemeOverlay_AppCompat_Dialog = 2131165206; 2416 | 2417 | // aapt resource value: 0x7f07001e 2418 | public const int Base_V12_Widget_AppCompat_AutoCompleteTextView = 2131165214; 2419 | 2420 | // aapt resource value: 0x7f07001f 2421 | public const int Base_V12_Widget_AppCompat_EditText = 2131165215; 2422 | 2423 | // aapt resource value: 0x7f07005b 2424 | public const int Base_V21_Theme_AppCompat = 2131165275; 2425 | 2426 | // aapt resource value: 0x7f07005c 2427 | public const int Base_V21_Theme_AppCompat_Dialog = 2131165276; 2428 | 2429 | // aapt resource value: 0x7f07005d 2430 | public const int Base_V21_Theme_AppCompat_Light = 2131165277; 2431 | 2432 | // aapt resource value: 0x7f07005e 2433 | public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131165278; 2434 | 2435 | // aapt resource value: 0x7f07005f 2436 | public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131165279; 2437 | 2438 | // aapt resource value: 0x7f070081 2439 | public const int Base_V22_Theme_AppCompat = 2131165313; 2440 | 2441 | // aapt resource value: 0x7f070082 2442 | public const int Base_V22_Theme_AppCompat_Light = 2131165314; 2443 | 2444 | // aapt resource value: 0x7f070085 2445 | public const int Base_V23_Theme_AppCompat = 2131165317; 2446 | 2447 | // aapt resource value: 0x7f070086 2448 | public const int Base_V23_Theme_AppCompat_Light = 2131165318; 2449 | 2450 | // aapt resource value: 0x7f0700a5 2451 | public const int Base_V7_Theme_AppCompat = 2131165349; 2452 | 2453 | // aapt resource value: 0x7f0700a6 2454 | public const int Base_V7_Theme_AppCompat_Dialog = 2131165350; 2455 | 2456 | // aapt resource value: 0x7f0700a7 2457 | public const int Base_V7_Theme_AppCompat_Light = 2131165351; 2458 | 2459 | // aapt resource value: 0x7f0700a8 2460 | public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131165352; 2461 | 2462 | // aapt resource value: 0x7f0700a9 2463 | public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131165353; 2464 | 2465 | // aapt resource value: 0x7f0700aa 2466 | public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131165354; 2467 | 2468 | // aapt resource value: 0x7f0700ab 2469 | public const int Base_V7_Widget_AppCompat_EditText = 2131165355; 2470 | 2471 | // aapt resource value: 0x7f0700ac 2472 | public const int Base_Widget_AppCompat_ActionBar = 2131165356; 2473 | 2474 | // aapt resource value: 0x7f0700ad 2475 | public const int Base_Widget_AppCompat_ActionBar_Solid = 2131165357; 2476 | 2477 | // aapt resource value: 0x7f0700ae 2478 | public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131165358; 2479 | 2480 | // aapt resource value: 0x7f070060 2481 | public const int Base_Widget_AppCompat_ActionBar_TabText = 2131165280; 2482 | 2483 | // aapt resource value: 0x7f070061 2484 | public const int Base_Widget_AppCompat_ActionBar_TabView = 2131165281; 2485 | 2486 | // aapt resource value: 0x7f070062 2487 | public const int Base_Widget_AppCompat_ActionButton = 2131165282; 2488 | 2489 | // aapt resource value: 0x7f070063 2490 | public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131165283; 2491 | 2492 | // aapt resource value: 0x7f070064 2493 | public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131165284; 2494 | 2495 | // aapt resource value: 0x7f0700af 2496 | public const int Base_Widget_AppCompat_ActionMode = 2131165359; 2497 | 2498 | // aapt resource value: 0x7f0700b0 2499 | public const int Base_Widget_AppCompat_ActivityChooserView = 2131165360; 2500 | 2501 | // aapt resource value: 0x7f070020 2502 | public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131165216; 2503 | 2504 | // aapt resource value: 0x7f070065 2505 | public const int Base_Widget_AppCompat_Button = 2131165285; 2506 | 2507 | // aapt resource value: 0x7f070066 2508 | public const int Base_Widget_AppCompat_Button_Borderless = 2131165286; 2509 | 2510 | // aapt resource value: 0x7f070067 2511 | public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131165287; 2512 | 2513 | // aapt resource value: 0x7f0700b1 2514 | public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131165361; 2515 | 2516 | // aapt resource value: 0x7f070087 2517 | public const int Base_Widget_AppCompat_Button_Colored = 2131165319; 2518 | 2519 | // aapt resource value: 0x7f070068 2520 | public const int Base_Widget_AppCompat_Button_Small = 2131165288; 2521 | 2522 | // aapt resource value: 0x7f070069 2523 | public const int Base_Widget_AppCompat_ButtonBar = 2131165289; 2524 | 2525 | // aapt resource value: 0x7f0700b2 2526 | public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131165362; 2527 | 2528 | // aapt resource value: 0x7f07006a 2529 | public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131165290; 2530 | 2531 | // aapt resource value: 0x7f07006b 2532 | public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131165291; 2533 | 2534 | // aapt resource value: 0x7f0700b3 2535 | public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131165363; 2536 | 2537 | // aapt resource value: 0x7f070000 2538 | public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131165184; 2539 | 2540 | // aapt resource value: 0x7f0700b4 2541 | public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131165364; 2542 | 2543 | // aapt resource value: 0x7f07006c 2544 | public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131165292; 2545 | 2546 | // aapt resource value: 0x7f070021 2547 | public const int Base_Widget_AppCompat_EditText = 2131165217; 2548 | 2549 | // aapt resource value: 0x7f07006d 2550 | public const int Base_Widget_AppCompat_ImageButton = 2131165293; 2551 | 2552 | // aapt resource value: 0x7f0700b5 2553 | public const int Base_Widget_AppCompat_Light_ActionBar = 2131165365; 2554 | 2555 | // aapt resource value: 0x7f0700b6 2556 | public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131165366; 2557 | 2558 | // aapt resource value: 0x7f0700b7 2559 | public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131165367; 2560 | 2561 | // aapt resource value: 0x7f07006e 2562 | public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131165294; 2563 | 2564 | // aapt resource value: 0x7f07006f 2565 | public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131165295; 2566 | 2567 | // aapt resource value: 0x7f070070 2568 | public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131165296; 2569 | 2570 | // aapt resource value: 0x7f070071 2571 | public const int Base_Widget_AppCompat_Light_PopupMenu = 2131165297; 2572 | 2573 | // aapt resource value: 0x7f070072 2574 | public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131165298; 2575 | 2576 | // aapt resource value: 0x7f0700b8 2577 | public const int Base_Widget_AppCompat_ListMenuView = 2131165368; 2578 | 2579 | // aapt resource value: 0x7f070073 2580 | public const int Base_Widget_AppCompat_ListPopupWindow = 2131165299; 2581 | 2582 | // aapt resource value: 0x7f070074 2583 | public const int Base_Widget_AppCompat_ListView = 2131165300; 2584 | 2585 | // aapt resource value: 0x7f070075 2586 | public const int Base_Widget_AppCompat_ListView_DropDown = 2131165301; 2587 | 2588 | // aapt resource value: 0x7f070076 2589 | public const int Base_Widget_AppCompat_ListView_Menu = 2131165302; 2590 | 2591 | // aapt resource value: 0x7f070077 2592 | public const int Base_Widget_AppCompat_PopupMenu = 2131165303; 2593 | 2594 | // aapt resource value: 0x7f070078 2595 | public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131165304; 2596 | 2597 | // aapt resource value: 0x7f0700b9 2598 | public const int Base_Widget_AppCompat_PopupWindow = 2131165369; 2599 | 2600 | // aapt resource value: 0x7f070017 2601 | public const int Base_Widget_AppCompat_ProgressBar = 2131165207; 2602 | 2603 | // aapt resource value: 0x7f070018 2604 | public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131165208; 2605 | 2606 | // aapt resource value: 0x7f070079 2607 | public const int Base_Widget_AppCompat_RatingBar = 2131165305; 2608 | 2609 | // aapt resource value: 0x7f070088 2610 | public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131165320; 2611 | 2612 | // aapt resource value: 0x7f070089 2613 | public const int Base_Widget_AppCompat_RatingBar_Small = 2131165321; 2614 | 2615 | // aapt resource value: 0x7f0700ba 2616 | public const int Base_Widget_AppCompat_SearchView = 2131165370; 2617 | 2618 | // aapt resource value: 0x7f0700bb 2619 | public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131165371; 2620 | 2621 | // aapt resource value: 0x7f07007a 2622 | public const int Base_Widget_AppCompat_SeekBar = 2131165306; 2623 | 2624 | // aapt resource value: 0x7f0700bc 2625 | public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131165372; 2626 | 2627 | // aapt resource value: 0x7f07007b 2628 | public const int Base_Widget_AppCompat_Spinner = 2131165307; 2629 | 2630 | // aapt resource value: 0x7f070003 2631 | public const int Base_Widget_AppCompat_Spinner_Underlined = 2131165187; 2632 | 2633 | // aapt resource value: 0x7f07007c 2634 | public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131165308; 2635 | 2636 | // aapt resource value: 0x7f0700bd 2637 | public const int Base_Widget_AppCompat_Toolbar = 2131165373; 2638 | 2639 | // aapt resource value: 0x7f07007d 2640 | public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131165309; 2641 | 2642 | // aapt resource value: 0x7f070019 2643 | public const int Platform_AppCompat = 2131165209; 2644 | 2645 | // aapt resource value: 0x7f07001a 2646 | public const int Platform_AppCompat_Light = 2131165210; 2647 | 2648 | // aapt resource value: 0x7f07007e 2649 | public const int Platform_ThemeOverlay_AppCompat = 2131165310; 2650 | 2651 | // aapt resource value: 0x7f07007f 2652 | public const int Platform_ThemeOverlay_AppCompat_Dark = 2131165311; 2653 | 2654 | // aapt resource value: 0x7f070080 2655 | public const int Platform_ThemeOverlay_AppCompat_Light = 2131165312; 2656 | 2657 | // aapt resource value: 0x7f07001b 2658 | public const int Platform_V11_AppCompat = 2131165211; 2659 | 2660 | // aapt resource value: 0x7f07001c 2661 | public const int Platform_V11_AppCompat_Light = 2131165212; 2662 | 2663 | // aapt resource value: 0x7f070023 2664 | public const int Platform_V14_AppCompat = 2131165219; 2665 | 2666 | // aapt resource value: 0x7f070024 2667 | public const int Platform_V14_AppCompat_Light = 2131165220; 2668 | 2669 | // aapt resource value: 0x7f07001d 2670 | public const int Platform_Widget_AppCompat_Spinner = 2131165213; 2671 | 2672 | // aapt resource value: 0x7f07002a 2673 | public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131165226; 2674 | 2675 | // aapt resource value: 0x7f07002b 2676 | public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131165227; 2677 | 2678 | // aapt resource value: 0x7f07002c 2679 | public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131165228; 2680 | 2681 | // aapt resource value: 0x7f07002d 2682 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131165229; 2683 | 2684 | // aapt resource value: 0x7f07002e 2685 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131165230; 2686 | 2687 | // aapt resource value: 0x7f07002f 2688 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131165231; 2689 | 2690 | // aapt resource value: 0x7f070030 2691 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131165232; 2692 | 2693 | // aapt resource value: 0x7f070031 2694 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131165233; 2695 | 2696 | // aapt resource value: 0x7f070032 2697 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131165234; 2698 | 2699 | // aapt resource value: 0x7f070033 2700 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131165235; 2701 | 2702 | // aapt resource value: 0x7f070034 2703 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131165236; 2704 | 2705 | // aapt resource value: 0x7f070035 2706 | public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131165237; 2707 | 2708 | // aapt resource value: 0x7f070036 2709 | public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131165238; 2710 | 2711 | // aapt resource value: 0x7f070037 2712 | public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131165239; 2713 | 2714 | // aapt resource value: 0x7f0700be 2715 | public const int TextAppearance_AppCompat = 2131165374; 2716 | 2717 | // aapt resource value: 0x7f0700bf 2718 | public const int TextAppearance_AppCompat_Body1 = 2131165375; 2719 | 2720 | // aapt resource value: 0x7f0700c0 2721 | public const int TextAppearance_AppCompat_Body2 = 2131165376; 2722 | 2723 | // aapt resource value: 0x7f0700c1 2724 | public const int TextAppearance_AppCompat_Button = 2131165377; 2725 | 2726 | // aapt resource value: 0x7f0700c2 2727 | public const int TextAppearance_AppCompat_Caption = 2131165378; 2728 | 2729 | // aapt resource value: 0x7f0700c3 2730 | public const int TextAppearance_AppCompat_Display1 = 2131165379; 2731 | 2732 | // aapt resource value: 0x7f0700c4 2733 | public const int TextAppearance_AppCompat_Display2 = 2131165380; 2734 | 2735 | // aapt resource value: 0x7f0700c5 2736 | public const int TextAppearance_AppCompat_Display3 = 2131165381; 2737 | 2738 | // aapt resource value: 0x7f0700c6 2739 | public const int TextAppearance_AppCompat_Display4 = 2131165382; 2740 | 2741 | // aapt resource value: 0x7f0700c7 2742 | public const int TextAppearance_AppCompat_Headline = 2131165383; 2743 | 2744 | // aapt resource value: 0x7f0700c8 2745 | public const int TextAppearance_AppCompat_Inverse = 2131165384; 2746 | 2747 | // aapt resource value: 0x7f0700c9 2748 | public const int TextAppearance_AppCompat_Large = 2131165385; 2749 | 2750 | // aapt resource value: 0x7f0700ca 2751 | public const int TextAppearance_AppCompat_Large_Inverse = 2131165386; 2752 | 2753 | // aapt resource value: 0x7f0700cb 2754 | public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131165387; 2755 | 2756 | // aapt resource value: 0x7f0700cc 2757 | public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131165388; 2758 | 2759 | // aapt resource value: 0x7f0700cd 2760 | public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131165389; 2761 | 2762 | // aapt resource value: 0x7f0700ce 2763 | public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131165390; 2764 | 2765 | // aapt resource value: 0x7f0700cf 2766 | public const int TextAppearance_AppCompat_Medium = 2131165391; 2767 | 2768 | // aapt resource value: 0x7f0700d0 2769 | public const int TextAppearance_AppCompat_Medium_Inverse = 2131165392; 2770 | 2771 | // aapt resource value: 0x7f0700d1 2772 | public const int TextAppearance_AppCompat_Menu = 2131165393; 2773 | 2774 | // aapt resource value: 0x7f0700d2 2775 | public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131165394; 2776 | 2777 | // aapt resource value: 0x7f0700d3 2778 | public const int TextAppearance_AppCompat_SearchResult_Title = 2131165395; 2779 | 2780 | // aapt resource value: 0x7f0700d4 2781 | public const int TextAppearance_AppCompat_Small = 2131165396; 2782 | 2783 | // aapt resource value: 0x7f0700d5 2784 | public const int TextAppearance_AppCompat_Small_Inverse = 2131165397; 2785 | 2786 | // aapt resource value: 0x7f0700d6 2787 | public const int TextAppearance_AppCompat_Subhead = 2131165398; 2788 | 2789 | // aapt resource value: 0x7f0700d7 2790 | public const int TextAppearance_AppCompat_Subhead_Inverse = 2131165399; 2791 | 2792 | // aapt resource value: 0x7f0700d8 2793 | public const int TextAppearance_AppCompat_Title = 2131165400; 2794 | 2795 | // aapt resource value: 0x7f0700d9 2796 | public const int TextAppearance_AppCompat_Title_Inverse = 2131165401; 2797 | 2798 | // aapt resource value: 0x7f0700da 2799 | public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131165402; 2800 | 2801 | // aapt resource value: 0x7f0700db 2802 | public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131165403; 2803 | 2804 | // aapt resource value: 0x7f0700dc 2805 | public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131165404; 2806 | 2807 | // aapt resource value: 0x7f0700dd 2808 | public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131165405; 2809 | 2810 | // aapt resource value: 0x7f0700de 2811 | public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131165406; 2812 | 2813 | // aapt resource value: 0x7f0700df 2814 | public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131165407; 2815 | 2816 | // aapt resource value: 0x7f0700e0 2817 | public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131165408; 2818 | 2819 | // aapt resource value: 0x7f0700e1 2820 | public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131165409; 2821 | 2822 | // aapt resource value: 0x7f0700e2 2823 | public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131165410; 2824 | 2825 | // aapt resource value: 0x7f0700e3 2826 | public const int TextAppearance_AppCompat_Widget_Button = 2131165411; 2827 | 2828 | // aapt resource value: 0x7f0700e4 2829 | public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131165412; 2830 | 2831 | // aapt resource value: 0x7f0700e5 2832 | public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131165413; 2833 | 2834 | // aapt resource value: 0x7f0700e6 2835 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131165414; 2836 | 2837 | // aapt resource value: 0x7f0700e7 2838 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131165415; 2839 | 2840 | // aapt resource value: 0x7f0700e8 2841 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131165416; 2842 | 2843 | // aapt resource value: 0x7f0700e9 2844 | public const int TextAppearance_AppCompat_Widget_Switch = 2131165417; 2845 | 2846 | // aapt resource value: 0x7f0700ea 2847 | public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131165418; 2848 | 2849 | // aapt resource value: 0x7f070025 2850 | public const int TextAppearance_StatusBar_EventContent = 2131165221; 2851 | 2852 | // aapt resource value: 0x7f070026 2853 | public const int TextAppearance_StatusBar_EventContent_Info = 2131165222; 2854 | 2855 | // aapt resource value: 0x7f070027 2856 | public const int TextAppearance_StatusBar_EventContent_Line2 = 2131165223; 2857 | 2858 | // aapt resource value: 0x7f070028 2859 | public const int TextAppearance_StatusBar_EventContent_Time = 2131165224; 2860 | 2861 | // aapt resource value: 0x7f070029 2862 | public const int TextAppearance_StatusBar_EventContent_Title = 2131165225; 2863 | 2864 | // aapt resource value: 0x7f0700eb 2865 | public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131165419; 2866 | 2867 | // aapt resource value: 0x7f0700ec 2868 | public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131165420; 2869 | 2870 | // aapt resource value: 0x7f0700ed 2871 | public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131165421; 2872 | 2873 | // aapt resource value: 0x7f0700ee 2874 | public const int Theme_AppCompat = 2131165422; 2875 | 2876 | // aapt resource value: 0x7f0700ef 2877 | public const int Theme_AppCompat_CompactMenu = 2131165423; 2878 | 2879 | // aapt resource value: 0x7f070004 2880 | public const int Theme_AppCompat_DayNight = 2131165188; 2881 | 2882 | // aapt resource value: 0x7f070005 2883 | public const int Theme_AppCompat_DayNight_DarkActionBar = 2131165189; 2884 | 2885 | // aapt resource value: 0x7f070006 2886 | public const int Theme_AppCompat_DayNight_Dialog = 2131165190; 2887 | 2888 | // aapt resource value: 0x7f070007 2889 | public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131165191; 2890 | 2891 | // aapt resource value: 0x7f070008 2892 | public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131165192; 2893 | 2894 | // aapt resource value: 0x7f070009 2895 | public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131165193; 2896 | 2897 | // aapt resource value: 0x7f07000a 2898 | public const int Theme_AppCompat_DayNight_NoActionBar = 2131165194; 2899 | 2900 | // aapt resource value: 0x7f0700f0 2901 | public const int Theme_AppCompat_Dialog = 2131165424; 2902 | 2903 | // aapt resource value: 0x7f0700f1 2904 | public const int Theme_AppCompat_Dialog_Alert = 2131165425; 2905 | 2906 | // aapt resource value: 0x7f0700f2 2907 | public const int Theme_AppCompat_Dialog_MinWidth = 2131165426; 2908 | 2909 | // aapt resource value: 0x7f0700f3 2910 | public const int Theme_AppCompat_DialogWhenLarge = 2131165427; 2911 | 2912 | // aapt resource value: 0x7f0700f4 2913 | public const int Theme_AppCompat_Light = 2131165428; 2914 | 2915 | // aapt resource value: 0x7f0700f5 2916 | public const int Theme_AppCompat_Light_DarkActionBar = 2131165429; 2917 | 2918 | // aapt resource value: 0x7f0700f6 2919 | public const int Theme_AppCompat_Light_Dialog = 2131165430; 2920 | 2921 | // aapt resource value: 0x7f0700f7 2922 | public const int Theme_AppCompat_Light_Dialog_Alert = 2131165431; 2923 | 2924 | // aapt resource value: 0x7f0700f8 2925 | public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131165432; 2926 | 2927 | // aapt resource value: 0x7f0700f9 2928 | public const int Theme_AppCompat_Light_DialogWhenLarge = 2131165433; 2929 | 2930 | // aapt resource value: 0x7f0700fa 2931 | public const int Theme_AppCompat_Light_NoActionBar = 2131165434; 2932 | 2933 | // aapt resource value: 0x7f0700fb 2934 | public const int Theme_AppCompat_NoActionBar = 2131165435; 2935 | 2936 | // aapt resource value: 0x7f0700fc 2937 | public const int ThemeOverlay_AppCompat = 2131165436; 2938 | 2939 | // aapt resource value: 0x7f0700fd 2940 | public const int ThemeOverlay_AppCompat_ActionBar = 2131165437; 2941 | 2942 | // aapt resource value: 0x7f0700fe 2943 | public const int ThemeOverlay_AppCompat_Dark = 2131165438; 2944 | 2945 | // aapt resource value: 0x7f0700ff 2946 | public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131165439; 2947 | 2948 | // aapt resource value: 0x7f070100 2949 | public const int ThemeOverlay_AppCompat_Dialog = 2131165440; 2950 | 2951 | // aapt resource value: 0x7f070101 2952 | public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131165441; 2953 | 2954 | // aapt resource value: 0x7f070102 2955 | public const int ThemeOverlay_AppCompat_Light = 2131165442; 2956 | 2957 | // aapt resource value: 0x7f070103 2958 | public const int Widget_AppCompat_ActionBar = 2131165443; 2959 | 2960 | // aapt resource value: 0x7f070104 2961 | public const int Widget_AppCompat_ActionBar_Solid = 2131165444; 2962 | 2963 | // aapt resource value: 0x7f070105 2964 | public const int Widget_AppCompat_ActionBar_TabBar = 2131165445; 2965 | 2966 | // aapt resource value: 0x7f070106 2967 | public const int Widget_AppCompat_ActionBar_TabText = 2131165446; 2968 | 2969 | // aapt resource value: 0x7f070107 2970 | public const int Widget_AppCompat_ActionBar_TabView = 2131165447; 2971 | 2972 | // aapt resource value: 0x7f070108 2973 | public const int Widget_AppCompat_ActionButton = 2131165448; 2974 | 2975 | // aapt resource value: 0x7f070109 2976 | public const int Widget_AppCompat_ActionButton_CloseMode = 2131165449; 2977 | 2978 | // aapt resource value: 0x7f07010a 2979 | public const int Widget_AppCompat_ActionButton_Overflow = 2131165450; 2980 | 2981 | // aapt resource value: 0x7f07010b 2982 | public const int Widget_AppCompat_ActionMode = 2131165451; 2983 | 2984 | // aapt resource value: 0x7f07010c 2985 | public const int Widget_AppCompat_ActivityChooserView = 2131165452; 2986 | 2987 | // aapt resource value: 0x7f07010d 2988 | public const int Widget_AppCompat_AutoCompleteTextView = 2131165453; 2989 | 2990 | // aapt resource value: 0x7f07010e 2991 | public const int Widget_AppCompat_Button = 2131165454; 2992 | 2993 | // aapt resource value: 0x7f07010f 2994 | public const int Widget_AppCompat_Button_Borderless = 2131165455; 2995 | 2996 | // aapt resource value: 0x7f070110 2997 | public const int Widget_AppCompat_Button_Borderless_Colored = 2131165456; 2998 | 2999 | // aapt resource value: 0x7f070111 3000 | public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131165457; 3001 | 3002 | // aapt resource value: 0x7f070112 3003 | public const int Widget_AppCompat_Button_Colored = 2131165458; 3004 | 3005 | // aapt resource value: 0x7f070113 3006 | public const int Widget_AppCompat_Button_Small = 2131165459; 3007 | 3008 | // aapt resource value: 0x7f070114 3009 | public const int Widget_AppCompat_ButtonBar = 2131165460; 3010 | 3011 | // aapt resource value: 0x7f070115 3012 | public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131165461; 3013 | 3014 | // aapt resource value: 0x7f070116 3015 | public const int Widget_AppCompat_CompoundButton_CheckBox = 2131165462; 3016 | 3017 | // aapt resource value: 0x7f070117 3018 | public const int Widget_AppCompat_CompoundButton_RadioButton = 2131165463; 3019 | 3020 | // aapt resource value: 0x7f070118 3021 | public const int Widget_AppCompat_CompoundButton_Switch = 2131165464; 3022 | 3023 | // aapt resource value: 0x7f070119 3024 | public const int Widget_AppCompat_DrawerArrowToggle = 2131165465; 3025 | 3026 | // aapt resource value: 0x7f07011a 3027 | public const int Widget_AppCompat_DropDownItem_Spinner = 2131165466; 3028 | 3029 | // aapt resource value: 0x7f07011b 3030 | public const int Widget_AppCompat_EditText = 2131165467; 3031 | 3032 | // aapt resource value: 0x7f07011c 3033 | public const int Widget_AppCompat_ImageButton = 2131165468; 3034 | 3035 | // aapt resource value: 0x7f07011d 3036 | public const int Widget_AppCompat_Light_ActionBar = 2131165469; 3037 | 3038 | // aapt resource value: 0x7f07011e 3039 | public const int Widget_AppCompat_Light_ActionBar_Solid = 2131165470; 3040 | 3041 | // aapt resource value: 0x7f07011f 3042 | public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131165471; 3043 | 3044 | // aapt resource value: 0x7f070120 3045 | public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131165472; 3046 | 3047 | // aapt resource value: 0x7f070121 3048 | public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131165473; 3049 | 3050 | // aapt resource value: 0x7f070122 3051 | public const int Widget_AppCompat_Light_ActionBar_TabText = 2131165474; 3052 | 3053 | // aapt resource value: 0x7f070123 3054 | public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131165475; 3055 | 3056 | // aapt resource value: 0x7f070124 3057 | public const int Widget_AppCompat_Light_ActionBar_TabView = 2131165476; 3058 | 3059 | // aapt resource value: 0x7f070125 3060 | public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131165477; 3061 | 3062 | // aapt resource value: 0x7f070126 3063 | public const int Widget_AppCompat_Light_ActionButton = 2131165478; 3064 | 3065 | // aapt resource value: 0x7f070127 3066 | public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131165479; 3067 | 3068 | // aapt resource value: 0x7f070128 3069 | public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131165480; 3070 | 3071 | // aapt resource value: 0x7f070129 3072 | public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131165481; 3073 | 3074 | // aapt resource value: 0x7f07012a 3075 | public const int Widget_AppCompat_Light_ActivityChooserView = 2131165482; 3076 | 3077 | // aapt resource value: 0x7f07012b 3078 | public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131165483; 3079 | 3080 | // aapt resource value: 0x7f07012c 3081 | public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131165484; 3082 | 3083 | // aapt resource value: 0x7f07012d 3084 | public const int Widget_AppCompat_Light_ListPopupWindow = 2131165485; 3085 | 3086 | // aapt resource value: 0x7f07012e 3087 | public const int Widget_AppCompat_Light_ListView_DropDown = 2131165486; 3088 | 3089 | // aapt resource value: 0x7f07012f 3090 | public const int Widget_AppCompat_Light_PopupMenu = 2131165487; 3091 | 3092 | // aapt resource value: 0x7f070130 3093 | public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131165488; 3094 | 3095 | // aapt resource value: 0x7f070131 3096 | public const int Widget_AppCompat_Light_SearchView = 2131165489; 3097 | 3098 | // aapt resource value: 0x7f070132 3099 | public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131165490; 3100 | 3101 | // aapt resource value: 0x7f070133 3102 | public const int Widget_AppCompat_ListMenuView = 2131165491; 3103 | 3104 | // aapt resource value: 0x7f070134 3105 | public const int Widget_AppCompat_ListPopupWindow = 2131165492; 3106 | 3107 | // aapt resource value: 0x7f070135 3108 | public const int Widget_AppCompat_ListView = 2131165493; 3109 | 3110 | // aapt resource value: 0x7f070136 3111 | public const int Widget_AppCompat_ListView_DropDown = 2131165494; 3112 | 3113 | // aapt resource value: 0x7f070137 3114 | public const int Widget_AppCompat_ListView_Menu = 2131165495; 3115 | 3116 | // aapt resource value: 0x7f070138 3117 | public const int Widget_AppCompat_PopupMenu = 2131165496; 3118 | 3119 | // aapt resource value: 0x7f070139 3120 | public const int Widget_AppCompat_PopupMenu_Overflow = 2131165497; 3121 | 3122 | // aapt resource value: 0x7f07013a 3123 | public const int Widget_AppCompat_PopupWindow = 2131165498; 3124 | 3125 | // aapt resource value: 0x7f07013b 3126 | public const int Widget_AppCompat_ProgressBar = 2131165499; 3127 | 3128 | // aapt resource value: 0x7f07013c 3129 | public const int Widget_AppCompat_ProgressBar_Horizontal = 2131165500; 3130 | 3131 | // aapt resource value: 0x7f07013d 3132 | public const int Widget_AppCompat_RatingBar = 2131165501; 3133 | 3134 | // aapt resource value: 0x7f07013e 3135 | public const int Widget_AppCompat_RatingBar_Indicator = 2131165502; 3136 | 3137 | // aapt resource value: 0x7f07013f 3138 | public const int Widget_AppCompat_RatingBar_Small = 2131165503; 3139 | 3140 | // aapt resource value: 0x7f070140 3141 | public const int Widget_AppCompat_SearchView = 2131165504; 3142 | 3143 | // aapt resource value: 0x7f070141 3144 | public const int Widget_AppCompat_SearchView_ActionBar = 2131165505; 3145 | 3146 | // aapt resource value: 0x7f070142 3147 | public const int Widget_AppCompat_SeekBar = 2131165506; 3148 | 3149 | // aapt resource value: 0x7f070143 3150 | public const int Widget_AppCompat_SeekBar_Discrete = 2131165507; 3151 | 3152 | // aapt resource value: 0x7f070144 3153 | public const int Widget_AppCompat_Spinner = 2131165508; 3154 | 3155 | // aapt resource value: 0x7f070145 3156 | public const int Widget_AppCompat_Spinner_DropDown = 2131165509; 3157 | 3158 | // aapt resource value: 0x7f070146 3159 | public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131165510; 3160 | 3161 | // aapt resource value: 0x7f070147 3162 | public const int Widget_AppCompat_Spinner_Underlined = 2131165511; 3163 | 3164 | // aapt resource value: 0x7f070148 3165 | public const int Widget_AppCompat_TextView_SpinnerItem = 2131165512; 3166 | 3167 | // aapt resource value: 0x7f070149 3168 | public const int Widget_AppCompat_Toolbar = 2131165513; 3169 | 3170 | // aapt resource value: 0x7f07014a 3171 | public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131165514; 3172 | 3173 | static Style() 3174 | { 3175 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 3176 | } 3177 | 3178 | private Style() 3179 | { 3180 | } 3181 | } 3182 | 3183 | public partial class Styleable 3184 | { 3185 | 3186 | public static int[] ActionBar = new int[] 3187 | { 3188 | 2130771969, 3189 | 2130771971, 3190 | 2130771972, 3191 | 2130771973, 3192 | 2130771974, 3193 | 2130771975, 3194 | 2130771976, 3195 | 2130771977, 3196 | 2130771978, 3197 | 2130771979, 3198 | 2130771980, 3199 | 2130771981, 3200 | 2130771982, 3201 | 2130771983, 3202 | 2130771984, 3203 | 2130771985, 3204 | 2130771986, 3205 | 2130771987, 3206 | 2130771988, 3207 | 2130771989, 3208 | 2130771990, 3209 | 2130771991, 3210 | 2130771992, 3211 | 2130771993, 3212 | 2130771994, 3213 | 2130771995, 3214 | 2130771996, 3215 | 2130771997, 3216 | 2130772058}; 3217 | 3218 | // aapt resource value: 10 3219 | public const int ActionBar_background = 10; 3220 | 3221 | // aapt resource value: 12 3222 | public const int ActionBar_backgroundSplit = 12; 3223 | 3224 | // aapt resource value: 11 3225 | public const int ActionBar_backgroundStacked = 11; 3226 | 3227 | // aapt resource value: 21 3228 | public const int ActionBar_contentInsetEnd = 21; 3229 | 3230 | // aapt resource value: 25 3231 | public const int ActionBar_contentInsetEndWithActions = 25; 3232 | 3233 | // aapt resource value: 22 3234 | public const int ActionBar_contentInsetLeft = 22; 3235 | 3236 | // aapt resource value: 23 3237 | public const int ActionBar_contentInsetRight = 23; 3238 | 3239 | // aapt resource value: 20 3240 | public const int ActionBar_contentInsetStart = 20; 3241 | 3242 | // aapt resource value: 24 3243 | public const int ActionBar_contentInsetStartWithNavigation = 24; 3244 | 3245 | // aapt resource value: 13 3246 | public const int ActionBar_customNavigationLayout = 13; 3247 | 3248 | // aapt resource value: 3 3249 | public const int ActionBar_displayOptions = 3; 3250 | 3251 | // aapt resource value: 9 3252 | public const int ActionBar_divider = 9; 3253 | 3254 | // aapt resource value: 26 3255 | public const int ActionBar_elevation = 26; 3256 | 3257 | // aapt resource value: 0 3258 | public const int ActionBar_height = 0; 3259 | 3260 | // aapt resource value: 19 3261 | public const int ActionBar_hideOnContentScroll = 19; 3262 | 3263 | // aapt resource value: 28 3264 | public const int ActionBar_homeAsUpIndicator = 28; 3265 | 3266 | // aapt resource value: 14 3267 | public const int ActionBar_homeLayout = 14; 3268 | 3269 | // aapt resource value: 7 3270 | public const int ActionBar_icon = 7; 3271 | 3272 | // aapt resource value: 16 3273 | public const int ActionBar_indeterminateProgressStyle = 16; 3274 | 3275 | // aapt resource value: 18 3276 | public const int ActionBar_itemPadding = 18; 3277 | 3278 | // aapt resource value: 8 3279 | public const int ActionBar_logo = 8; 3280 | 3281 | // aapt resource value: 2 3282 | public const int ActionBar_navigationMode = 2; 3283 | 3284 | // aapt resource value: 27 3285 | public const int ActionBar_popupTheme = 27; 3286 | 3287 | // aapt resource value: 17 3288 | public const int ActionBar_progressBarPadding = 17; 3289 | 3290 | // aapt resource value: 15 3291 | public const int ActionBar_progressBarStyle = 15; 3292 | 3293 | // aapt resource value: 4 3294 | public const int ActionBar_subtitle = 4; 3295 | 3296 | // aapt resource value: 6 3297 | public const int ActionBar_subtitleTextStyle = 6; 3298 | 3299 | // aapt resource value: 1 3300 | public const int ActionBar_title = 1; 3301 | 3302 | // aapt resource value: 5 3303 | public const int ActionBar_titleTextStyle = 5; 3304 | 3305 | public static int[] ActionBarLayout = new int[] 3306 | { 3307 | 16842931}; 3308 | 3309 | // aapt resource value: 0 3310 | public const int ActionBarLayout_android_layout_gravity = 0; 3311 | 3312 | public static int[] ActionMenuItemView = new int[] 3313 | { 3314 | 16843071}; 3315 | 3316 | // aapt resource value: 0 3317 | public const int ActionMenuItemView_android_minWidth = 0; 3318 | 3319 | public static int[] ActionMenuView; 3320 | 3321 | public static int[] ActionMode = new int[] 3322 | { 3323 | 2130771969, 3324 | 2130771975, 3325 | 2130771976, 3326 | 2130771980, 3327 | 2130771982, 3328 | 2130771998}; 3329 | 3330 | // aapt resource value: 3 3331 | public const int ActionMode_background = 3; 3332 | 3333 | // aapt resource value: 4 3334 | public const int ActionMode_backgroundSplit = 4; 3335 | 3336 | // aapt resource value: 5 3337 | public const int ActionMode_closeItemLayout = 5; 3338 | 3339 | // aapt resource value: 0 3340 | public const int ActionMode_height = 0; 3341 | 3342 | // aapt resource value: 2 3343 | public const int ActionMode_subtitleTextStyle = 2; 3344 | 3345 | // aapt resource value: 1 3346 | public const int ActionMode_titleTextStyle = 1; 3347 | 3348 | public static int[] ActivityChooserView = new int[] 3349 | { 3350 | 2130771999, 3351 | 2130772000}; 3352 | 3353 | // aapt resource value: 1 3354 | public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; 3355 | 3356 | // aapt resource value: 0 3357 | public const int ActivityChooserView_initialActivityCount = 0; 3358 | 3359 | public static int[] AlertDialog = new int[] 3360 | { 3361 | 16842994, 3362 | 2130772001, 3363 | 2130772002, 3364 | 2130772003, 3365 | 2130772004, 3366 | 2130772005}; 3367 | 3368 | // aapt resource value: 0 3369 | public const int AlertDialog_android_layout = 0; 3370 | 3371 | // aapt resource value: 1 3372 | public const int AlertDialog_buttonPanelSideLayout = 1; 3373 | 3374 | // aapt resource value: 5 3375 | public const int AlertDialog_listItemLayout = 5; 3376 | 3377 | // aapt resource value: 2 3378 | public const int AlertDialog_listLayout = 2; 3379 | 3380 | // aapt resource value: 3 3381 | public const int AlertDialog_multiChoiceItemLayout = 3; 3382 | 3383 | // aapt resource value: 4 3384 | public const int AlertDialog_singleChoiceItemLayout = 4; 3385 | 3386 | public static int[] AppCompatImageView = new int[] 3387 | { 3388 | 16843033, 3389 | 2130772006}; 3390 | 3391 | // aapt resource value: 0 3392 | public const int AppCompatImageView_android_src = 0; 3393 | 3394 | // aapt resource value: 1 3395 | public const int AppCompatImageView_srcCompat = 1; 3396 | 3397 | public static int[] AppCompatSeekBar = new int[] 3398 | { 3399 | 16843074, 3400 | 2130772007, 3401 | 2130772008, 3402 | 2130772009}; 3403 | 3404 | // aapt resource value: 0 3405 | public const int AppCompatSeekBar_android_thumb = 0; 3406 | 3407 | // aapt resource value: 1 3408 | public const int AppCompatSeekBar_tickMark = 1; 3409 | 3410 | // aapt resource value: 2 3411 | public const int AppCompatSeekBar_tickMarkTint = 2; 3412 | 3413 | // aapt resource value: 3 3414 | public const int AppCompatSeekBar_tickMarkTintMode = 3; 3415 | 3416 | public static int[] AppCompatTextHelper = new int[] 3417 | { 3418 | 16842804, 3419 | 16843117, 3420 | 16843118, 3421 | 16843119, 3422 | 16843120, 3423 | 16843666, 3424 | 16843667}; 3425 | 3426 | // aapt resource value: 2 3427 | public const int AppCompatTextHelper_android_drawableBottom = 2; 3428 | 3429 | // aapt resource value: 6 3430 | public const int AppCompatTextHelper_android_drawableEnd = 6; 3431 | 3432 | // aapt resource value: 3 3433 | public const int AppCompatTextHelper_android_drawableLeft = 3; 3434 | 3435 | // aapt resource value: 4 3436 | public const int AppCompatTextHelper_android_drawableRight = 4; 3437 | 3438 | // aapt resource value: 5 3439 | public const int AppCompatTextHelper_android_drawableStart = 5; 3440 | 3441 | // aapt resource value: 1 3442 | public const int AppCompatTextHelper_android_drawableTop = 1; 3443 | 3444 | // aapt resource value: 0 3445 | public const int AppCompatTextHelper_android_textAppearance = 0; 3446 | 3447 | public static int[] AppCompatTextView = new int[] 3448 | { 3449 | 16842804, 3450 | 2130772010}; 3451 | 3452 | // aapt resource value: 0 3453 | public const int AppCompatTextView_android_textAppearance = 0; 3454 | 3455 | // aapt resource value: 1 3456 | public const int AppCompatTextView_textAllCaps = 1; 3457 | 3458 | public static int[] AppCompatTheme = new int[] 3459 | { 3460 | 16842839, 3461 | 16842926, 3462 | 2130772011, 3463 | 2130772012, 3464 | 2130772013, 3465 | 2130772014, 3466 | 2130772015, 3467 | 2130772016, 3468 | 2130772017, 3469 | 2130772018, 3470 | 2130772019, 3471 | 2130772020, 3472 | 2130772021, 3473 | 2130772022, 3474 | 2130772023, 3475 | 2130772024, 3476 | 2130772025, 3477 | 2130772026, 3478 | 2130772027, 3479 | 2130772028, 3480 | 2130772029, 3481 | 2130772030, 3482 | 2130772031, 3483 | 2130772032, 3484 | 2130772033, 3485 | 2130772034, 3486 | 2130772035, 3487 | 2130772036, 3488 | 2130772037, 3489 | 2130772038, 3490 | 2130772039, 3491 | 2130772040, 3492 | 2130772041, 3493 | 2130772042, 3494 | 2130772043, 3495 | 2130772044, 3496 | 2130772045, 3497 | 2130772046, 3498 | 2130772047, 3499 | 2130772048, 3500 | 2130772049, 3501 | 2130772050, 3502 | 2130772051, 3503 | 2130772052, 3504 | 2130772053, 3505 | 2130772054, 3506 | 2130772055, 3507 | 2130772056, 3508 | 2130772057, 3509 | 2130772058, 3510 | 2130772059, 3511 | 2130772060, 3512 | 2130772061, 3513 | 2130772062, 3514 | 2130772063, 3515 | 2130772064, 3516 | 2130772065, 3517 | 2130772066, 3518 | 2130772067, 3519 | 2130772068, 3520 | 2130772069, 3521 | 2130772070, 3522 | 2130772071, 3523 | 2130772072, 3524 | 2130772073, 3525 | 2130772074, 3526 | 2130772075, 3527 | 2130772076, 3528 | 2130772077, 3529 | 2130772078, 3530 | 2130772079, 3531 | 2130772080, 3532 | 2130772081, 3533 | 2130772082, 3534 | 2130772083, 3535 | 2130772084, 3536 | 2130772085, 3537 | 2130772086, 3538 | 2130772087, 3539 | 2130772088, 3540 | 2130772089, 3541 | 2130772090, 3542 | 2130772091, 3543 | 2130772092, 3544 | 2130772093, 3545 | 2130772094, 3546 | 2130772095, 3547 | 2130772096, 3548 | 2130772097, 3549 | 2130772098, 3550 | 2130772099, 3551 | 2130772100, 3552 | 2130772101, 3553 | 2130772102, 3554 | 2130772103, 3555 | 2130772104, 3556 | 2130772105, 3557 | 2130772106, 3558 | 2130772107, 3559 | 2130772108, 3560 | 2130772109, 3561 | 2130772110, 3562 | 2130772111, 3563 | 2130772112, 3564 | 2130772113, 3565 | 2130772114, 3566 | 2130772115, 3567 | 2130772116, 3568 | 2130772117, 3569 | 2130772118, 3570 | 2130772119, 3571 | 2130772120, 3572 | 2130772121, 3573 | 2130772122, 3574 | 2130772123}; 3575 | 3576 | // aapt resource value: 23 3577 | public const int AppCompatTheme_actionBarDivider = 23; 3578 | 3579 | // aapt resource value: 24 3580 | public const int AppCompatTheme_actionBarItemBackground = 24; 3581 | 3582 | // aapt resource value: 17 3583 | public const int AppCompatTheme_actionBarPopupTheme = 17; 3584 | 3585 | // aapt resource value: 22 3586 | public const int AppCompatTheme_actionBarSize = 22; 3587 | 3588 | // aapt resource value: 19 3589 | public const int AppCompatTheme_actionBarSplitStyle = 19; 3590 | 3591 | // aapt resource value: 18 3592 | public const int AppCompatTheme_actionBarStyle = 18; 3593 | 3594 | // aapt resource value: 13 3595 | public const int AppCompatTheme_actionBarTabBarStyle = 13; 3596 | 3597 | // aapt resource value: 12 3598 | public const int AppCompatTheme_actionBarTabStyle = 12; 3599 | 3600 | // aapt resource value: 14 3601 | public const int AppCompatTheme_actionBarTabTextStyle = 14; 3602 | 3603 | // aapt resource value: 20 3604 | public const int AppCompatTheme_actionBarTheme = 20; 3605 | 3606 | // aapt resource value: 21 3607 | public const int AppCompatTheme_actionBarWidgetTheme = 21; 3608 | 3609 | // aapt resource value: 50 3610 | public const int AppCompatTheme_actionButtonStyle = 50; 3611 | 3612 | // aapt resource value: 46 3613 | public const int AppCompatTheme_actionDropDownStyle = 46; 3614 | 3615 | // aapt resource value: 25 3616 | public const int AppCompatTheme_actionMenuTextAppearance = 25; 3617 | 3618 | // aapt resource value: 26 3619 | public const int AppCompatTheme_actionMenuTextColor = 26; 3620 | 3621 | // aapt resource value: 29 3622 | public const int AppCompatTheme_actionModeBackground = 29; 3623 | 3624 | // aapt resource value: 28 3625 | public const int AppCompatTheme_actionModeCloseButtonStyle = 28; 3626 | 3627 | // aapt resource value: 31 3628 | public const int AppCompatTheme_actionModeCloseDrawable = 31; 3629 | 3630 | // aapt resource value: 33 3631 | public const int AppCompatTheme_actionModeCopyDrawable = 33; 3632 | 3633 | // aapt resource value: 32 3634 | public const int AppCompatTheme_actionModeCutDrawable = 32; 3635 | 3636 | // aapt resource value: 37 3637 | public const int AppCompatTheme_actionModeFindDrawable = 37; 3638 | 3639 | // aapt resource value: 34 3640 | public const int AppCompatTheme_actionModePasteDrawable = 34; 3641 | 3642 | // aapt resource value: 39 3643 | public const int AppCompatTheme_actionModePopupWindowStyle = 39; 3644 | 3645 | // aapt resource value: 35 3646 | public const int AppCompatTheme_actionModeSelectAllDrawable = 35; 3647 | 3648 | // aapt resource value: 36 3649 | public const int AppCompatTheme_actionModeShareDrawable = 36; 3650 | 3651 | // aapt resource value: 30 3652 | public const int AppCompatTheme_actionModeSplitBackground = 30; 3653 | 3654 | // aapt resource value: 27 3655 | public const int AppCompatTheme_actionModeStyle = 27; 3656 | 3657 | // aapt resource value: 38 3658 | public const int AppCompatTheme_actionModeWebSearchDrawable = 38; 3659 | 3660 | // aapt resource value: 15 3661 | public const int AppCompatTheme_actionOverflowButtonStyle = 15; 3662 | 3663 | // aapt resource value: 16 3664 | public const int AppCompatTheme_actionOverflowMenuStyle = 16; 3665 | 3666 | // aapt resource value: 58 3667 | public const int AppCompatTheme_activityChooserViewStyle = 58; 3668 | 3669 | // aapt resource value: 94 3670 | public const int AppCompatTheme_alertDialogButtonGroupStyle = 94; 3671 | 3672 | // aapt resource value: 95 3673 | public const int AppCompatTheme_alertDialogCenterButtons = 95; 3674 | 3675 | // aapt resource value: 93 3676 | public const int AppCompatTheme_alertDialogStyle = 93; 3677 | 3678 | // aapt resource value: 96 3679 | public const int AppCompatTheme_alertDialogTheme = 96; 3680 | 3681 | // aapt resource value: 1 3682 | public const int AppCompatTheme_android_windowAnimationStyle = 1; 3683 | 3684 | // aapt resource value: 0 3685 | public const int AppCompatTheme_android_windowIsFloating = 0; 3686 | 3687 | // aapt resource value: 101 3688 | public const int AppCompatTheme_autoCompleteTextViewStyle = 101; 3689 | 3690 | // aapt resource value: 55 3691 | public const int AppCompatTheme_borderlessButtonStyle = 55; 3692 | 3693 | // aapt resource value: 52 3694 | public const int AppCompatTheme_buttonBarButtonStyle = 52; 3695 | 3696 | // aapt resource value: 99 3697 | public const int AppCompatTheme_buttonBarNegativeButtonStyle = 99; 3698 | 3699 | // aapt resource value: 100 3700 | public const int AppCompatTheme_buttonBarNeutralButtonStyle = 100; 3701 | 3702 | // aapt resource value: 98 3703 | public const int AppCompatTheme_buttonBarPositiveButtonStyle = 98; 3704 | 3705 | // aapt resource value: 51 3706 | public const int AppCompatTheme_buttonBarStyle = 51; 3707 | 3708 | // aapt resource value: 102 3709 | public const int AppCompatTheme_buttonStyle = 102; 3710 | 3711 | // aapt resource value: 103 3712 | public const int AppCompatTheme_buttonStyleSmall = 103; 3713 | 3714 | // aapt resource value: 104 3715 | public const int AppCompatTheme_checkboxStyle = 104; 3716 | 3717 | // aapt resource value: 105 3718 | public const int AppCompatTheme_checkedTextViewStyle = 105; 3719 | 3720 | // aapt resource value: 85 3721 | public const int AppCompatTheme_colorAccent = 85; 3722 | 3723 | // aapt resource value: 92 3724 | public const int AppCompatTheme_colorBackgroundFloating = 92; 3725 | 3726 | // aapt resource value: 89 3727 | public const int AppCompatTheme_colorButtonNormal = 89; 3728 | 3729 | // aapt resource value: 87 3730 | public const int AppCompatTheme_colorControlActivated = 87; 3731 | 3732 | // aapt resource value: 88 3733 | public const int AppCompatTheme_colorControlHighlight = 88; 3734 | 3735 | // aapt resource value: 86 3736 | public const int AppCompatTheme_colorControlNormal = 86; 3737 | 3738 | // aapt resource value: 83 3739 | public const int AppCompatTheme_colorPrimary = 83; 3740 | 3741 | // aapt resource value: 84 3742 | public const int AppCompatTheme_colorPrimaryDark = 84; 3743 | 3744 | // aapt resource value: 90 3745 | public const int AppCompatTheme_colorSwitchThumbNormal = 90; 3746 | 3747 | // aapt resource value: 91 3748 | public const int AppCompatTheme_controlBackground = 91; 3749 | 3750 | // aapt resource value: 44 3751 | public const int AppCompatTheme_dialogPreferredPadding = 44; 3752 | 3753 | // aapt resource value: 43 3754 | public const int AppCompatTheme_dialogTheme = 43; 3755 | 3756 | // aapt resource value: 57 3757 | public const int AppCompatTheme_dividerHorizontal = 57; 3758 | 3759 | // aapt resource value: 56 3760 | public const int AppCompatTheme_dividerVertical = 56; 3761 | 3762 | // aapt resource value: 75 3763 | public const int AppCompatTheme_dropDownListViewStyle = 75; 3764 | 3765 | // aapt resource value: 47 3766 | public const int AppCompatTheme_dropdownListPreferredItemHeight = 47; 3767 | 3768 | // aapt resource value: 64 3769 | public const int AppCompatTheme_editTextBackground = 64; 3770 | 3771 | // aapt resource value: 63 3772 | public const int AppCompatTheme_editTextColor = 63; 3773 | 3774 | // aapt resource value: 106 3775 | public const int AppCompatTheme_editTextStyle = 106; 3776 | 3777 | // aapt resource value: 49 3778 | public const int AppCompatTheme_homeAsUpIndicator = 49; 3779 | 3780 | // aapt resource value: 65 3781 | public const int AppCompatTheme_imageButtonStyle = 65; 3782 | 3783 | // aapt resource value: 82 3784 | public const int AppCompatTheme_listChoiceBackgroundIndicator = 82; 3785 | 3786 | // aapt resource value: 45 3787 | public const int AppCompatTheme_listDividerAlertDialog = 45; 3788 | 3789 | // aapt resource value: 114 3790 | public const int AppCompatTheme_listMenuViewStyle = 114; 3791 | 3792 | // aapt resource value: 76 3793 | public const int AppCompatTheme_listPopupWindowStyle = 76; 3794 | 3795 | // aapt resource value: 70 3796 | public const int AppCompatTheme_listPreferredItemHeight = 70; 3797 | 3798 | // aapt resource value: 72 3799 | public const int AppCompatTheme_listPreferredItemHeightLarge = 72; 3800 | 3801 | // aapt resource value: 71 3802 | public const int AppCompatTheme_listPreferredItemHeightSmall = 71; 3803 | 3804 | // aapt resource value: 73 3805 | public const int AppCompatTheme_listPreferredItemPaddingLeft = 73; 3806 | 3807 | // aapt resource value: 74 3808 | public const int AppCompatTheme_listPreferredItemPaddingRight = 74; 3809 | 3810 | // aapt resource value: 79 3811 | public const int AppCompatTheme_panelBackground = 79; 3812 | 3813 | // aapt resource value: 81 3814 | public const int AppCompatTheme_panelMenuListTheme = 81; 3815 | 3816 | // aapt resource value: 80 3817 | public const int AppCompatTheme_panelMenuListWidth = 80; 3818 | 3819 | // aapt resource value: 61 3820 | public const int AppCompatTheme_popupMenuStyle = 61; 3821 | 3822 | // aapt resource value: 62 3823 | public const int AppCompatTheme_popupWindowStyle = 62; 3824 | 3825 | // aapt resource value: 107 3826 | public const int AppCompatTheme_radioButtonStyle = 107; 3827 | 3828 | // aapt resource value: 108 3829 | public const int AppCompatTheme_ratingBarStyle = 108; 3830 | 3831 | // aapt resource value: 109 3832 | public const int AppCompatTheme_ratingBarStyleIndicator = 109; 3833 | 3834 | // aapt resource value: 110 3835 | public const int AppCompatTheme_ratingBarStyleSmall = 110; 3836 | 3837 | // aapt resource value: 69 3838 | public const int AppCompatTheme_searchViewStyle = 69; 3839 | 3840 | // aapt resource value: 111 3841 | public const int AppCompatTheme_seekBarStyle = 111; 3842 | 3843 | // aapt resource value: 53 3844 | public const int AppCompatTheme_selectableItemBackground = 53; 3845 | 3846 | // aapt resource value: 54 3847 | public const int AppCompatTheme_selectableItemBackgroundBorderless = 54; 3848 | 3849 | // aapt resource value: 48 3850 | public const int AppCompatTheme_spinnerDropDownItemStyle = 48; 3851 | 3852 | // aapt resource value: 112 3853 | public const int AppCompatTheme_spinnerStyle = 112; 3854 | 3855 | // aapt resource value: 113 3856 | public const int AppCompatTheme_switchStyle = 113; 3857 | 3858 | // aapt resource value: 40 3859 | public const int AppCompatTheme_textAppearanceLargePopupMenu = 40; 3860 | 3861 | // aapt resource value: 77 3862 | public const int AppCompatTheme_textAppearanceListItem = 77; 3863 | 3864 | // aapt resource value: 78 3865 | public const int AppCompatTheme_textAppearanceListItemSmall = 78; 3866 | 3867 | // aapt resource value: 42 3868 | public const int AppCompatTheme_textAppearancePopupMenuHeader = 42; 3869 | 3870 | // aapt resource value: 67 3871 | public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 67; 3872 | 3873 | // aapt resource value: 66 3874 | public const int AppCompatTheme_textAppearanceSearchResultTitle = 66; 3875 | 3876 | // aapt resource value: 41 3877 | public const int AppCompatTheme_textAppearanceSmallPopupMenu = 41; 3878 | 3879 | // aapt resource value: 97 3880 | public const int AppCompatTheme_textColorAlertDialogListItem = 97; 3881 | 3882 | // aapt resource value: 68 3883 | public const int AppCompatTheme_textColorSearchUrl = 68; 3884 | 3885 | // aapt resource value: 60 3886 | public const int AppCompatTheme_toolbarNavigationButtonStyle = 60; 3887 | 3888 | // aapt resource value: 59 3889 | public const int AppCompatTheme_toolbarStyle = 59; 3890 | 3891 | // aapt resource value: 2 3892 | public const int AppCompatTheme_windowActionBar = 2; 3893 | 3894 | // aapt resource value: 4 3895 | public const int AppCompatTheme_windowActionBarOverlay = 4; 3896 | 3897 | // aapt resource value: 5 3898 | public const int AppCompatTheme_windowActionModeOverlay = 5; 3899 | 3900 | // aapt resource value: 9 3901 | public const int AppCompatTheme_windowFixedHeightMajor = 9; 3902 | 3903 | // aapt resource value: 7 3904 | public const int AppCompatTheme_windowFixedHeightMinor = 7; 3905 | 3906 | // aapt resource value: 6 3907 | public const int AppCompatTheme_windowFixedWidthMajor = 6; 3908 | 3909 | // aapt resource value: 8 3910 | public const int AppCompatTheme_windowFixedWidthMinor = 8; 3911 | 3912 | // aapt resource value: 10 3913 | public const int AppCompatTheme_windowMinWidthMajor = 10; 3914 | 3915 | // aapt resource value: 11 3916 | public const int AppCompatTheme_windowMinWidthMinor = 11; 3917 | 3918 | // aapt resource value: 3 3919 | public const int AppCompatTheme_windowNoTitle = 3; 3920 | 3921 | public static int[] ButtonBarLayout = new int[] 3922 | { 3923 | 2130772124}; 3924 | 3925 | // aapt resource value: 0 3926 | public const int ButtonBarLayout_allowStacking = 0; 3927 | 3928 | public static int[] ColorStateListItem = new int[] 3929 | { 3930 | 16843173, 3931 | 16843551, 3932 | 2130772125}; 3933 | 3934 | // aapt resource value: 2 3935 | public const int ColorStateListItem_alpha = 2; 3936 | 3937 | // aapt resource value: 1 3938 | public const int ColorStateListItem_android_alpha = 1; 3939 | 3940 | // aapt resource value: 0 3941 | public const int ColorStateListItem_android_color = 0; 3942 | 3943 | public static int[] CompoundButton = new int[] 3944 | { 3945 | 16843015, 3946 | 2130772126, 3947 | 2130772127}; 3948 | 3949 | // aapt resource value: 0 3950 | public const int CompoundButton_android_button = 0; 3951 | 3952 | // aapt resource value: 1 3953 | public const int CompoundButton_buttonTint = 1; 3954 | 3955 | // aapt resource value: 2 3956 | public const int CompoundButton_buttonTintMode = 2; 3957 | 3958 | public static int[] DrawerArrowToggle = new int[] 3959 | { 3960 | 2130772128, 3961 | 2130772129, 3962 | 2130772130, 3963 | 2130772131, 3964 | 2130772132, 3965 | 2130772133, 3966 | 2130772134, 3967 | 2130772135}; 3968 | 3969 | // aapt resource value: 4 3970 | public const int DrawerArrowToggle_arrowHeadLength = 4; 3971 | 3972 | // aapt resource value: 5 3973 | public const int DrawerArrowToggle_arrowShaftLength = 5; 3974 | 3975 | // aapt resource value: 6 3976 | public const int DrawerArrowToggle_barLength = 6; 3977 | 3978 | // aapt resource value: 0 3979 | public const int DrawerArrowToggle_color = 0; 3980 | 3981 | // aapt resource value: 2 3982 | public const int DrawerArrowToggle_drawableSize = 2; 3983 | 3984 | // aapt resource value: 3 3985 | public const int DrawerArrowToggle_gapBetweenBars = 3; 3986 | 3987 | // aapt resource value: 1 3988 | public const int DrawerArrowToggle_spinBars = 1; 3989 | 3990 | // aapt resource value: 7 3991 | public const int DrawerArrowToggle_thickness = 7; 3992 | 3993 | public static int[] LinearLayoutCompat = new int[] 3994 | { 3995 | 16842927, 3996 | 16842948, 3997 | 16843046, 3998 | 16843047, 3999 | 16843048, 4000 | 2130771979, 4001 | 2130772136, 4002 | 2130772137, 4003 | 2130772138}; 4004 | 4005 | // aapt resource value: 2 4006 | public const int LinearLayoutCompat_android_baselineAligned = 2; 4007 | 4008 | // aapt resource value: 3 4009 | public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; 4010 | 4011 | // aapt resource value: 0 4012 | public const int LinearLayoutCompat_android_gravity = 0; 4013 | 4014 | // aapt resource value: 1 4015 | public const int LinearLayoutCompat_android_orientation = 1; 4016 | 4017 | // aapt resource value: 4 4018 | public const int LinearLayoutCompat_android_weightSum = 4; 4019 | 4020 | // aapt resource value: 5 4021 | public const int LinearLayoutCompat_divider = 5; 4022 | 4023 | // aapt resource value: 8 4024 | public const int LinearLayoutCompat_dividerPadding = 8; 4025 | 4026 | // aapt resource value: 6 4027 | public const int LinearLayoutCompat_measureWithLargestChild = 6; 4028 | 4029 | // aapt resource value: 7 4030 | public const int LinearLayoutCompat_showDividers = 7; 4031 | 4032 | public static int[] LinearLayoutCompat_Layout = new int[] 4033 | { 4034 | 16842931, 4035 | 16842996, 4036 | 16842997, 4037 | 16843137}; 4038 | 4039 | // aapt resource value: 0 4040 | public const int LinearLayoutCompat_Layout_android_layout_gravity = 0; 4041 | 4042 | // aapt resource value: 2 4043 | public const int LinearLayoutCompat_Layout_android_layout_height = 2; 4044 | 4045 | // aapt resource value: 3 4046 | public const int LinearLayoutCompat_Layout_android_layout_weight = 3; 4047 | 4048 | // aapt resource value: 1 4049 | public const int LinearLayoutCompat_Layout_android_layout_width = 1; 4050 | 4051 | public static int[] ListPopupWindow = new int[] 4052 | { 4053 | 16843436, 4054 | 16843437}; 4055 | 4056 | // aapt resource value: 0 4057 | public const int ListPopupWindow_android_dropDownHorizontalOffset = 0; 4058 | 4059 | // aapt resource value: 1 4060 | public const int ListPopupWindow_android_dropDownVerticalOffset = 1; 4061 | 4062 | public static int[] MenuGroup = new int[] 4063 | { 4064 | 16842766, 4065 | 16842960, 4066 | 16843156, 4067 | 16843230, 4068 | 16843231, 4069 | 16843232}; 4070 | 4071 | // aapt resource value: 5 4072 | public const int MenuGroup_android_checkableBehavior = 5; 4073 | 4074 | // aapt resource value: 0 4075 | public const int MenuGroup_android_enabled = 0; 4076 | 4077 | // aapt resource value: 1 4078 | public const int MenuGroup_android_id = 1; 4079 | 4080 | // aapt resource value: 3 4081 | public const int MenuGroup_android_menuCategory = 3; 4082 | 4083 | // aapt resource value: 4 4084 | public const int MenuGroup_android_orderInCategory = 4; 4085 | 4086 | // aapt resource value: 2 4087 | public const int MenuGroup_android_visible = 2; 4088 | 4089 | public static int[] MenuItem = new int[] 4090 | { 4091 | 16842754, 4092 | 16842766, 4093 | 16842960, 4094 | 16843014, 4095 | 16843156, 4096 | 16843230, 4097 | 16843231, 4098 | 16843233, 4099 | 16843234, 4100 | 16843235, 4101 | 16843236, 4102 | 16843237, 4103 | 16843375, 4104 | 2130772139, 4105 | 2130772140, 4106 | 2130772141, 4107 | 2130772142}; 4108 | 4109 | // aapt resource value: 14 4110 | public const int MenuItem_actionLayout = 14; 4111 | 4112 | // aapt resource value: 16 4113 | public const int MenuItem_actionProviderClass = 16; 4114 | 4115 | // aapt resource value: 15 4116 | public const int MenuItem_actionViewClass = 15; 4117 | 4118 | // aapt resource value: 9 4119 | public const int MenuItem_android_alphabeticShortcut = 9; 4120 | 4121 | // aapt resource value: 11 4122 | public const int MenuItem_android_checkable = 11; 4123 | 4124 | // aapt resource value: 3 4125 | public const int MenuItem_android_checked = 3; 4126 | 4127 | // aapt resource value: 1 4128 | public const int MenuItem_android_enabled = 1; 4129 | 4130 | // aapt resource value: 0 4131 | public const int MenuItem_android_icon = 0; 4132 | 4133 | // aapt resource value: 2 4134 | public const int MenuItem_android_id = 2; 4135 | 4136 | // aapt resource value: 5 4137 | public const int MenuItem_android_menuCategory = 5; 4138 | 4139 | // aapt resource value: 10 4140 | public const int MenuItem_android_numericShortcut = 10; 4141 | 4142 | // aapt resource value: 12 4143 | public const int MenuItem_android_onClick = 12; 4144 | 4145 | // aapt resource value: 6 4146 | public const int MenuItem_android_orderInCategory = 6; 4147 | 4148 | // aapt resource value: 7 4149 | public const int MenuItem_android_title = 7; 4150 | 4151 | // aapt resource value: 8 4152 | public const int MenuItem_android_titleCondensed = 8; 4153 | 4154 | // aapt resource value: 4 4155 | public const int MenuItem_android_visible = 4; 4156 | 4157 | // aapt resource value: 13 4158 | public const int MenuItem_showAsAction = 13; 4159 | 4160 | public static int[] MenuView = new int[] 4161 | { 4162 | 16842926, 4163 | 16843052, 4164 | 16843053, 4165 | 16843054, 4166 | 16843055, 4167 | 16843056, 4168 | 16843057, 4169 | 2130772143, 4170 | 2130772144}; 4171 | 4172 | // aapt resource value: 4 4173 | public const int MenuView_android_headerBackground = 4; 4174 | 4175 | // aapt resource value: 2 4176 | public const int MenuView_android_horizontalDivider = 2; 4177 | 4178 | // aapt resource value: 5 4179 | public const int MenuView_android_itemBackground = 5; 4180 | 4181 | // aapt resource value: 6 4182 | public const int MenuView_android_itemIconDisabledAlpha = 6; 4183 | 4184 | // aapt resource value: 1 4185 | public const int MenuView_android_itemTextAppearance = 1; 4186 | 4187 | // aapt resource value: 3 4188 | public const int MenuView_android_verticalDivider = 3; 4189 | 4190 | // aapt resource value: 0 4191 | public const int MenuView_android_windowAnimationStyle = 0; 4192 | 4193 | // aapt resource value: 7 4194 | public const int MenuView_preserveIconSpacing = 7; 4195 | 4196 | // aapt resource value: 8 4197 | public const int MenuView_subMenuArrow = 8; 4198 | 4199 | public static int[] PopupWindow = new int[] 4200 | { 4201 | 16843126, 4202 | 16843465, 4203 | 2130772145}; 4204 | 4205 | // aapt resource value: 1 4206 | public const int PopupWindow_android_popupAnimationStyle = 1; 4207 | 4208 | // aapt resource value: 0 4209 | public const int PopupWindow_android_popupBackground = 0; 4210 | 4211 | // aapt resource value: 2 4212 | public const int PopupWindow_overlapAnchor = 2; 4213 | 4214 | public static int[] PopupWindowBackgroundState = new int[] 4215 | { 4216 | 2130772146}; 4217 | 4218 | // aapt resource value: 0 4219 | public const int PopupWindowBackgroundState_state_above_anchor = 0; 4220 | 4221 | public static int[] RecyclerView = new int[] 4222 | { 4223 | 16842948, 4224 | 16842993, 4225 | 2130772193, 4226 | 2130772194, 4227 | 2130772195, 4228 | 2130772196}; 4229 | 4230 | // aapt resource value: 1 4231 | public const int RecyclerView_android_descendantFocusability = 1; 4232 | 4233 | // aapt resource value: 0 4234 | public const int RecyclerView_android_orientation = 0; 4235 | 4236 | // aapt resource value: 2 4237 | public const int RecyclerView_layoutManager = 2; 4238 | 4239 | // aapt resource value: 4 4240 | public const int RecyclerView_reverseLayout = 4; 4241 | 4242 | // aapt resource value: 3 4243 | public const int RecyclerView_spanCount = 3; 4244 | 4245 | // aapt resource value: 5 4246 | public const int RecyclerView_stackFromEnd = 5; 4247 | 4248 | public static int[] SearchView = new int[] 4249 | { 4250 | 16842970, 4251 | 16843039, 4252 | 16843296, 4253 | 16843364, 4254 | 2130772147, 4255 | 2130772148, 4256 | 2130772149, 4257 | 2130772150, 4258 | 2130772151, 4259 | 2130772152, 4260 | 2130772153, 4261 | 2130772154, 4262 | 2130772155, 4263 | 2130772156, 4264 | 2130772157, 4265 | 2130772158, 4266 | 2130772159}; 4267 | 4268 | // aapt resource value: 0 4269 | public const int SearchView_android_focusable = 0; 4270 | 4271 | // aapt resource value: 3 4272 | public const int SearchView_android_imeOptions = 3; 4273 | 4274 | // aapt resource value: 2 4275 | public const int SearchView_android_inputType = 2; 4276 | 4277 | // aapt resource value: 1 4278 | public const int SearchView_android_maxWidth = 1; 4279 | 4280 | // aapt resource value: 8 4281 | public const int SearchView_closeIcon = 8; 4282 | 4283 | // aapt resource value: 13 4284 | public const int SearchView_commitIcon = 13; 4285 | 4286 | // aapt resource value: 7 4287 | public const int SearchView_defaultQueryHint = 7; 4288 | 4289 | // aapt resource value: 9 4290 | public const int SearchView_goIcon = 9; 4291 | 4292 | // aapt resource value: 5 4293 | public const int SearchView_iconifiedByDefault = 5; 4294 | 4295 | // aapt resource value: 4 4296 | public const int SearchView_layout = 4; 4297 | 4298 | // aapt resource value: 15 4299 | public const int SearchView_queryBackground = 15; 4300 | 4301 | // aapt resource value: 6 4302 | public const int SearchView_queryHint = 6; 4303 | 4304 | // aapt resource value: 11 4305 | public const int SearchView_searchHintIcon = 11; 4306 | 4307 | // aapt resource value: 10 4308 | public const int SearchView_searchIcon = 10; 4309 | 4310 | // aapt resource value: 16 4311 | public const int SearchView_submitBackground = 16; 4312 | 4313 | // aapt resource value: 14 4314 | public const int SearchView_suggestionRowLayout = 14; 4315 | 4316 | // aapt resource value: 12 4317 | public const int SearchView_voiceIcon = 12; 4318 | 4319 | public static int[] Spinner = new int[] 4320 | { 4321 | 16842930, 4322 | 16843126, 4323 | 16843131, 4324 | 16843362, 4325 | 2130771997}; 4326 | 4327 | // aapt resource value: 3 4328 | public const int Spinner_android_dropDownWidth = 3; 4329 | 4330 | // aapt resource value: 0 4331 | public const int Spinner_android_entries = 0; 4332 | 4333 | // aapt resource value: 1 4334 | public const int Spinner_android_popupBackground = 1; 4335 | 4336 | // aapt resource value: 2 4337 | public const int Spinner_android_prompt = 2; 4338 | 4339 | // aapt resource value: 4 4340 | public const int Spinner_popupTheme = 4; 4341 | 4342 | public static int[] SwitchCompat = new int[] 4343 | { 4344 | 16843044, 4345 | 16843045, 4346 | 16843074, 4347 | 2130772160, 4348 | 2130772161, 4349 | 2130772162, 4350 | 2130772163, 4351 | 2130772164, 4352 | 2130772165, 4353 | 2130772166, 4354 | 2130772167, 4355 | 2130772168, 4356 | 2130772169, 4357 | 2130772170}; 4358 | 4359 | // aapt resource value: 1 4360 | public const int SwitchCompat_android_textOff = 1; 4361 | 4362 | // aapt resource value: 0 4363 | public const int SwitchCompat_android_textOn = 0; 4364 | 4365 | // aapt resource value: 2 4366 | public const int SwitchCompat_android_thumb = 2; 4367 | 4368 | // aapt resource value: 13 4369 | public const int SwitchCompat_showText = 13; 4370 | 4371 | // aapt resource value: 12 4372 | public const int SwitchCompat_splitTrack = 12; 4373 | 4374 | // aapt resource value: 10 4375 | public const int SwitchCompat_switchMinWidth = 10; 4376 | 4377 | // aapt resource value: 11 4378 | public const int SwitchCompat_switchPadding = 11; 4379 | 4380 | // aapt resource value: 9 4381 | public const int SwitchCompat_switchTextAppearance = 9; 4382 | 4383 | // aapt resource value: 8 4384 | public const int SwitchCompat_thumbTextPadding = 8; 4385 | 4386 | // aapt resource value: 3 4387 | public const int SwitchCompat_thumbTint = 3; 4388 | 4389 | // aapt resource value: 4 4390 | public const int SwitchCompat_thumbTintMode = 4; 4391 | 4392 | // aapt resource value: 5 4393 | public const int SwitchCompat_track = 5; 4394 | 4395 | // aapt resource value: 6 4396 | public const int SwitchCompat_trackTint = 6; 4397 | 4398 | // aapt resource value: 7 4399 | public const int SwitchCompat_trackTintMode = 7; 4400 | 4401 | public static int[] TextAppearance = new int[] 4402 | { 4403 | 16842901, 4404 | 16842902, 4405 | 16842903, 4406 | 16842904, 4407 | 16843105, 4408 | 16843106, 4409 | 16843107, 4410 | 16843108, 4411 | 2130772010}; 4412 | 4413 | // aapt resource value: 4 4414 | public const int TextAppearance_android_shadowColor = 4; 4415 | 4416 | // aapt resource value: 5 4417 | public const int TextAppearance_android_shadowDx = 5; 4418 | 4419 | // aapt resource value: 6 4420 | public const int TextAppearance_android_shadowDy = 6; 4421 | 4422 | // aapt resource value: 7 4423 | public const int TextAppearance_android_shadowRadius = 7; 4424 | 4425 | // aapt resource value: 3 4426 | public const int TextAppearance_android_textColor = 3; 4427 | 4428 | // aapt resource value: 0 4429 | public const int TextAppearance_android_textSize = 0; 4430 | 4431 | // aapt resource value: 2 4432 | public const int TextAppearance_android_textStyle = 2; 4433 | 4434 | // aapt resource value: 1 4435 | public const int TextAppearance_android_typeface = 1; 4436 | 4437 | // aapt resource value: 8 4438 | public const int TextAppearance_textAllCaps = 8; 4439 | 4440 | public static int[] Toolbar = new int[] 4441 | { 4442 | 16842927, 4443 | 16843072, 4444 | 2130771971, 4445 | 2130771974, 4446 | 2130771978, 4447 | 2130771990, 4448 | 2130771991, 4449 | 2130771992, 4450 | 2130771993, 4451 | 2130771994, 4452 | 2130771995, 4453 | 2130771997, 4454 | 2130772171, 4455 | 2130772172, 4456 | 2130772173, 4457 | 2130772174, 4458 | 2130772175, 4459 | 2130772176, 4460 | 2130772177, 4461 | 2130772178, 4462 | 2130772179, 4463 | 2130772180, 4464 | 2130772181, 4465 | 2130772182, 4466 | 2130772183, 4467 | 2130772184, 4468 | 2130772185, 4469 | 2130772186, 4470 | 2130772187}; 4471 | 4472 | // aapt resource value: 0 4473 | public const int Toolbar_android_gravity = 0; 4474 | 4475 | // aapt resource value: 1 4476 | public const int Toolbar_android_minHeight = 1; 4477 | 4478 | // aapt resource value: 21 4479 | public const int Toolbar_buttonGravity = 21; 4480 | 4481 | // aapt resource value: 23 4482 | public const int Toolbar_collapseContentDescription = 23; 4483 | 4484 | // aapt resource value: 22 4485 | public const int Toolbar_collapseIcon = 22; 4486 | 4487 | // aapt resource value: 6 4488 | public const int Toolbar_contentInsetEnd = 6; 4489 | 4490 | // aapt resource value: 10 4491 | public const int Toolbar_contentInsetEndWithActions = 10; 4492 | 4493 | // aapt resource value: 7 4494 | public const int Toolbar_contentInsetLeft = 7; 4495 | 4496 | // aapt resource value: 8 4497 | public const int Toolbar_contentInsetRight = 8; 4498 | 4499 | // aapt resource value: 5 4500 | public const int Toolbar_contentInsetStart = 5; 4501 | 4502 | // aapt resource value: 9 4503 | public const int Toolbar_contentInsetStartWithNavigation = 9; 4504 | 4505 | // aapt resource value: 4 4506 | public const int Toolbar_logo = 4; 4507 | 4508 | // aapt resource value: 26 4509 | public const int Toolbar_logoDescription = 26; 4510 | 4511 | // aapt resource value: 20 4512 | public const int Toolbar_maxButtonHeight = 20; 4513 | 4514 | // aapt resource value: 25 4515 | public const int Toolbar_navigationContentDescription = 25; 4516 | 4517 | // aapt resource value: 24 4518 | public const int Toolbar_navigationIcon = 24; 4519 | 4520 | // aapt resource value: 11 4521 | public const int Toolbar_popupTheme = 11; 4522 | 4523 | // aapt resource value: 3 4524 | public const int Toolbar_subtitle = 3; 4525 | 4526 | // aapt resource value: 13 4527 | public const int Toolbar_subtitleTextAppearance = 13; 4528 | 4529 | // aapt resource value: 28 4530 | public const int Toolbar_subtitleTextColor = 28; 4531 | 4532 | // aapt resource value: 2 4533 | public const int Toolbar_title = 2; 4534 | 4535 | // aapt resource value: 14 4536 | public const int Toolbar_titleMargin = 14; 4537 | 4538 | // aapt resource value: 18 4539 | public const int Toolbar_titleMarginBottom = 18; 4540 | 4541 | // aapt resource value: 16 4542 | public const int Toolbar_titleMarginEnd = 16; 4543 | 4544 | // aapt resource value: 15 4545 | public const int Toolbar_titleMarginStart = 15; 4546 | 4547 | // aapt resource value: 17 4548 | public const int Toolbar_titleMarginTop = 17; 4549 | 4550 | // aapt resource value: 19 4551 | public const int Toolbar_titleMargins = 19; 4552 | 4553 | // aapt resource value: 12 4554 | public const int Toolbar_titleTextAppearance = 12; 4555 | 4556 | // aapt resource value: 27 4557 | public const int Toolbar_titleTextColor = 27; 4558 | 4559 | public static int[] View = new int[] 4560 | { 4561 | 16842752, 4562 | 16842970, 4563 | 2130772188, 4564 | 2130772189, 4565 | 2130772190}; 4566 | 4567 | // aapt resource value: 1 4568 | public const int View_android_focusable = 1; 4569 | 4570 | // aapt resource value: 0 4571 | public const int View_android_theme = 0; 4572 | 4573 | // aapt resource value: 3 4574 | public const int View_paddingEnd = 3; 4575 | 4576 | // aapt resource value: 2 4577 | public const int View_paddingStart = 2; 4578 | 4579 | // aapt resource value: 4 4580 | public const int View_theme = 4; 4581 | 4582 | public static int[] ViewBackgroundHelper = new int[] 4583 | { 4584 | 16842964, 4585 | 2130772191, 4586 | 2130772192}; 4587 | 4588 | // aapt resource value: 0 4589 | public const int ViewBackgroundHelper_android_background = 0; 4590 | 4591 | // aapt resource value: 1 4592 | public const int ViewBackgroundHelper_backgroundTint = 1; 4593 | 4594 | // aapt resource value: 2 4595 | public const int ViewBackgroundHelper_backgroundTintMode = 2; 4596 | 4597 | public static int[] ViewStubCompat = new int[] 4598 | { 4599 | 16842960, 4600 | 16842994, 4601 | 16842995}; 4602 | 4603 | // aapt resource value: 0 4604 | public const int ViewStubCompat_android_id = 0; 4605 | 4606 | // aapt resource value: 2 4607 | public const int ViewStubCompat_android_inflatedId = 2; 4608 | 4609 | // aapt resource value: 1 4610 | public const int ViewStubCompat_android_layout = 1; 4611 | 4612 | static Styleable() 4613 | { 4614 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 4615 | } 4616 | 4617 | private Styleable() 4618 | { 4619 | } 4620 | } 4621 | } 4622 | } 4623 | #pragma warning restore 1591 4624 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-hdpi/ic_reorder_grey_500_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-hdpi/ic_reorder_grey_500_24dp.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-mdpi/ic_reorder_grey_500_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-mdpi/ic_reorder_grey_500_24dp.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-xhdpi/ic_reorder_grey_500_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-xhdpi/ic_reorder_grey_500_24dp.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-xxhdpi/ic_reorder_grey_500_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-xxhdpi/ic_reorder_grey_500_24dp.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/drawable-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper.Sample/Resources/drawable-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/layout/Main.axml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 10 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/layout/item_main.axml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 20 | 33 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/values/Strings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | Hello World, Click Me! 4 | XamarinItemTouchHelper.Sample 5 | 6 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/Resources/values/styles.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/XamarinItemTouchHelper.Sample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 7 | {BBAA60D3-CC25-48E5-8247-2AB6E0A77F3A} 8 | Library 9 | XamarinItemTouchHelper.Sample 10 | True 11 | Resources\Resource.designer.cs 12 | Resource 13 | Resources 14 | Assets 15 | False 16 | XamarinItemTouchHelper.Sample 17 | Properties\AndroidManifest.xml 18 | v7.0 19 | 1.1.2 20 | 21 | 22 | true 23 | full 24 | false 25 | bin\Debug 26 | DEBUG; 27 | prompt 28 | 4 29 | false 30 | None 31 | 32 | 33 | full 34 | true 35 | bin\Release 36 | prompt 37 | 4 38 | false 39 | false 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | ..\packages\Xamarin.Android.Support.Compat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll 48 | 49 | 50 | ..\packages\Xamarin.Android.Support.Core.UI.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll 51 | 52 | 53 | ..\packages\Xamarin.Android.Support.Core.Utils.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll 54 | 55 | 56 | ..\packages\Xamarin.Android.Support.Media.Compat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll 57 | 58 | 59 | ..\packages\Xamarin.Android.Support.Fragment.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll 60 | 61 | 62 | ..\packages\Xamarin.Android.Support.v4.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll 63 | 64 | 65 | ..\packages\Xamarin.Android.Support.v7.RecyclerView.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll 66 | 67 | 68 | ..\packages\Xamarin.Android.Support.Vector.Drawable.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll 69 | 70 | 71 | ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll 72 | 73 | 74 | ..\packages\Xamarin.Android.Support.v7.AppCompat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | {19FB28F4-9CC2-40DA-96B5-12220D352946} 107 | XamarinItemTouchHelper 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.Sample/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | VisualStudioVersion = 12.0.30723.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinItemTouchHelper", "XamarinItemTouchHelper\XamarinItemTouchHelper.csproj", "{19FB28F4-9CC2-40DA-96B5-12220D352946}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamarinItemTouchHelper.Sample", "XamarinItemTouchHelper.Sample\XamarinItemTouchHelper.Sample.csproj", "{BBAA60D3-CC25-48E5-8247-2AB6E0A77F3A}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {19FB28F4-9CC2-40DA-96B5-12220D352946}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {19FB28F4-9CC2-40DA-96B5-12220D352946}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {19FB28F4-9CC2-40DA-96B5-12220D352946}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {19FB28F4-9CC2-40DA-96B5-12220D352946}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {BBAA60D3-CC25-48E5-8247-2AB6E0A77F3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {BBAA60D3-CC25-48E5-8247-2AB6E0A77F3A}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {BBAA60D3-CC25-48E5-8247-2AB6E0A77F3A}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {BBAA60D3-CC25-48E5-8247-2AB6E0A77F3A}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(MonoDevelopProperties) = preSolution 26 | version = 1.1.2 27 | EndGlobalSection 28 | GlobalSection(SolutionProperties) = preSolution 29 | HideSolutionNode = FALSE 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper/IItemTouchHelperAdapter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | using Android.App; 7 | using Android.Content; 8 | using Android.OS; 9 | using Android.Runtime; 10 | using Android.Views; 11 | using Android.Widget; 12 | 13 | namespace XamarinItemTouchHelper 14 | { 15 | /// 16 | /// Interface to listen for a move or dismissal event from a ItemTouchHelper.Callback. 17 | /// 18 | public interface IItemTouchHelperAdapter 19 | { 20 | /// 21 | /// Called when an item has been dragged far enough to trigger a move. This is called every time 22 | /// an item is shifted, and not at the end of a "drop" event.
23 | ///
24 | /// Implementations should call {@link RecyclerView.Adapter#notifyItemMoved(int, int)} after 25 | /// adjusting the underlying data to reflect this move. 26 | ///
27 | /// True if the item was moved to the new adapter position. 28 | /// The start position of the moved item. 29 | /// Then resolved position of the moved item. 30 | bool OnItemMove(int fromPosition, int toPosition); 31 | 32 | /// 33 | /// Called when an item has been dismissed by a swipe.
34 | ///
35 | /// Implementations should call RecyclerView.Adapter#notifyItemRemoved(int) after 36 | /// adjusting the underlying data to reflect this removal. 37 | ///
38 | /// The position of the item dismissed. 39 | void OnItemDismiss(int position); 40 | } 41 | } -------------------------------------------------------------------------------- /XamarinItemTouchHelper/IItemTouchHelperViewHolder.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | using Android.App; 7 | using Android.Content; 8 | using Android.OS; 9 | using Android.Runtime; 10 | using Android.Views; 11 | using Android.Widget; 12 | 13 | namespace XamarinItemTouchHelper 14 | { 15 | /// 16 | /// Interface to notify an item ViewHolder of relevant callbacks from 17 | /// android.support.v7.widget.helper.ItemTouchHelper.Callback. 18 | /// 19 | public interface IItemTouchHelperViewHolder 20 | { 21 | /// 22 | /// Called when the ItemTouchHelper first registers an item as being moved or swiped. 23 | /// Implementations should update the item view to indicate it's active state. 24 | /// 25 | void OnItemSelected(); 26 | 27 | /// 28 | /// Called when the ItemTouchHelper has completed the move or swipe, and the active item 29 | /// state should be cleared. 30 | /// 31 | void OnItemClear(); 32 | } 33 | } -------------------------------------------------------------------------------- /XamarinItemTouchHelper/IOnStartDragListener.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Support.V7.Widget; 3 | 4 | namespace XamarinItemTouchHelper 5 | { 6 | /// 7 | /// Listener for manual initiation of a drag. 8 | /// 9 | public interface IOnStartDragListener 10 | { 11 | /// 12 | /// Called when a view is requesting a start of a drag. 13 | /// 14 | /// The holder of the view to drag. 15 | void OnStartDrag(RecyclerView.ViewHolder viewHolder); 16 | } 17 | } -------------------------------------------------------------------------------- /XamarinItemTouchHelper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("XamarinItemTouchHelper")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("Unattended")] 13 | [assembly: AssemblyProduct("XamarinItemTouchHelper")] 14 | [assembly: AssemblyCopyright("Copyright © Unattended 2015")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.1.2.0")] 30 | [assembly: AssemblyFileVersion("1.1.2.0")] 31 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper/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.xml), 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-hdpi/ 12 | icon.png 13 | 14 | drawable-ldpi/ 15 | icon.png 16 | 17 | drawable-mdpi/ 18 | icon.png 19 | 20 | layout/ 21 | main.xml 22 | 23 | values/ 24 | strings.xml 25 | 26 | In order to get the build system to recognize Android resources, set the build action to 27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 28 | instead operate on resource IDs. When you compile an Android application that uses resources, 29 | the build system will package the resources for distribution and generate a class called 30 | "Resource" that contains the tokens for each one of the resources included. For example, 31 | for the above Resources layout, this is what the Resource class would expose: 32 | 33 | public class Resource { 34 | public class drawable { 35 | public const int icon = 0x123; 36 | } 37 | 38 | public class layout { 39 | public const int main = 0x456; 40 | } 41 | 42 | public class strings { 43 | public const int first_string = 0xabc; 44 | public const int second_string = 0xbcd; 45 | } 46 | } 47 | 48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main 49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first 50 | string in the dictionary file values/strings.xml. -------------------------------------------------------------------------------- /XamarinItemTouchHelper/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/XamarinItemTouchHelper/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /XamarinItemTouchHelper/SimpleItemTouchHelperCallback.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | using Android.App; 7 | using Android.Content; 8 | using Android.OS; 9 | using Android.Runtime; 10 | using Android.Views; 11 | using Android.Widget; 12 | using Android.Support.V7.Widget.Helper; 13 | using Android.Support.V7.Widget; 14 | using Android.Graphics; 15 | 16 | namespace XamarinItemTouchHelper 17 | { 18 | /// 19 | /// An implementation of ItemTouchHelper.Callback that enables basic drag & drop and 20 | /// swipe-to-dismiss. Drag events are automatically started by an item long-press. 21 | /// Expects the RecyclerView.Adapter to listen for 22 | /// ItemTouchHelperAdapter callbacks and the RecyclerView.ViewHolder to implement 23 | /// ItemTouchHelperViewHolder. 24 | /// 25 | public class SimpleItemTouchHelperCallback : ItemTouchHelper.Callback 26 | { 27 | private bool dragEnabled = true; 28 | 29 | private bool swipeEnabled = true; 30 | 31 | public static float AlphaFull = 1.0f; 32 | 33 | private IItemTouchHelperAdapter mAdapter; 34 | 35 | public SimpleItemTouchHelperCallback(IItemTouchHelperAdapter adapter) 36 | { 37 | mAdapter = adapter; 38 | } 39 | 40 | public override bool IsLongPressDragEnabled { 41 | get { 42 | return dragEnabled; 43 | } 44 | } 45 | 46 | public void SetLongPressDragEnabled(bool longPressDragEnabled) 47 | { 48 | dragEnabled = longPressDragEnabled; 49 | } 50 | 51 | public override bool IsItemViewSwipeEnabled { 52 | get { 53 | return swipeEnabled; 54 | } 55 | } 56 | 57 | public void SetItemViewSwipeEnabled(bool itemViewSwipeEnabled) 58 | { 59 | swipeEnabled = itemViewSwipeEnabled; 60 | } 61 | 62 | public override int GetMovementFlags(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) 63 | { 64 | int dragFlags = 0; 65 | int swipeFlags = 0; 66 | // Set movement flags based on the layout manager 67 | if (recyclerView.GetLayoutManager() is GridLayoutManager) 68 | { 69 | dragFlags = ItemTouchHelper.Up | ItemTouchHelper.Down | ItemTouchHelper.Left | ItemTouchHelper.Right; 70 | } 71 | else { 72 | if (swipeEnabled) 73 | { 74 | swipeFlags = ItemTouchHelper.Left | ItemTouchHelper.Right; 75 | } 76 | else 77 | { 78 | dragFlags = ItemTouchHelper.Up | ItemTouchHelper.Down; 79 | swipeFlags = ItemTouchHelper.Start | ItemTouchHelper.End; 80 | } 81 | } 82 | return MakeMovementFlags(dragFlags, swipeFlags); 83 | } 84 | 85 | public override bool OnMove (RecyclerView recyclerView, RecyclerView.ViewHolder source, RecyclerView.ViewHolder target) 86 | { 87 | if (source.ItemViewType != target.ItemViewType) { 88 | return false; 89 | } 90 | 91 | // Notify the adapter of the move 92 | return mAdapter.OnItemMove(source.AdapterPosition, target.AdapterPosition); 93 | } 94 | 95 | public override void OnSwiped (Android.Support.V7.Widget.RecyclerView.ViewHolder viewHolder, int i) 96 | { 97 | // Notify the adapter of the dismissal 98 | mAdapter.OnItemDismiss(viewHolder.AdapterPosition); 99 | } 100 | 101 | public override void OnChildDraw (Canvas c, RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, float dX, float dY, int actionState, bool isCurrentlyActive) 102 | { 103 | if (actionState == ItemTouchHelper.ActionStateSwipe) { 104 | // Fade out the view as it is swiped out of the parent's bounds 105 | float alpha = AlphaFull - Math.Abs(dX) / (float) viewHolder.ItemView.Width; 106 | viewHolder.ItemView.Alpha = alpha; 107 | viewHolder.ItemView.TranslationX = dX; 108 | } else { 109 | base.OnChildDraw(c, recyclerView, viewHolder, dX, dY, actionState, isCurrentlyActive); 110 | } 111 | } 112 | 113 | public override void OnSelectedChanged (RecyclerView.ViewHolder viewHolder, int actionState) 114 | { 115 | // We only want the active item to change 116 | if (actionState != ItemTouchHelper.ActionStateIdle) { 117 | if (viewHolder is IItemTouchHelperViewHolder) { 118 | // Let the view holder know that this item is being moved or dragged 119 | IItemTouchHelperViewHolder itemViewHolder = (IItemTouchHelperViewHolder) viewHolder; 120 | itemViewHolder.OnItemSelected(); 121 | } 122 | } 123 | 124 | base.OnSelectedChanged(viewHolder, actionState); 125 | } 126 | 127 | public override void ClearView (RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) 128 | { 129 | base.ClearView(recyclerView, viewHolder); 130 | 131 | viewHolder.ItemView.Alpha = AlphaFull; 132 | 133 | if (viewHolder is IItemTouchHelperViewHolder) { 134 | // Tell the view holder it's time to restore the idle state 135 | IItemTouchHelperViewHolder itemViewHolder = (IItemTouchHelperViewHolder) viewHolder; 136 | itemViewHolder.OnItemClear(); 137 | } 138 | } 139 | } 140 | } -------------------------------------------------------------------------------- /XamarinItemTouchHelper/TouchListenerHelper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Android.Views; 3 | using Android.Support.V4.View; 4 | using Android.Support.V7.Widget; 5 | 6 | namespace XamarinItemTouchHelper 7 | { 8 | public class TouchListenerHelper : Java.Lang.Object, View.IOnTouchListener 9 | { 10 | private RecyclerView.ViewHolder _itemHolder; 11 | private IOnStartDragListener _mDragStartListener; 12 | 13 | public TouchListenerHelper(RecyclerView.ViewHolder holder, IOnStartDragListener mDragStartListener) 14 | { 15 | _itemHolder = holder; 16 | _mDragStartListener = mDragStartListener; 17 | } 18 | 19 | public bool OnTouch (View v, MotionEvent e) 20 | { 21 | if (e.Action == MotionEventActions.Down) { 22 | _mDragStartListener.OnStartDrag(_itemHolder); 23 | } 24 | return false; 25 | } 26 | } 27 | } 28 | 29 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper/XamarinItemTouchHelper.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | {19FB28F4-9CC2-40DA-96B5-12220D352946} 7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 8 | Library 9 | Properties 10 | XamarinItemTouchHelper 11 | XamarinItemTouchHelper 12 | 512 13 | Resources\Resource.Designer.cs 14 | Off 15 | False 16 | v7.0 17 | 1.1.2 18 | 19 | 20 | true 21 | full 22 | false 23 | bin\Debug\ 24 | DEBUG;TRACE 25 | prompt 26 | 4 27 | 28 | 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | true 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | ..\packages\Xamarin.Android.Support.Compat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll 46 | 47 | 48 | ..\packages\Xamarin.Android.Support.Core.UI.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll 49 | 50 | 51 | ..\packages\Xamarin.Android.Support.Core.Utils.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll 52 | 53 | 54 | ..\packages\Xamarin.Android.Support.Media.Compat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll 55 | 56 | 57 | ..\packages\Xamarin.Android.Support.Fragment.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll 58 | 59 | 60 | ..\packages\Xamarin.Android.Support.v4.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll 61 | 62 | 63 | ..\packages\Xamarin.Android.Support.v7.RecyclerView.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 87 | -------------------------------------------------------------------------------- /XamarinItemTouchHelper/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /icon_touchhelper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baseflow/XamarinItemTouchHelper/81656c8af771aa3d9f09c754b8b76cfaa238a6fa/icon_touchhelper.png -------------------------------------------------------------------------------- /nuspec/Xam.Plugins.Android.XamarinItemTouchHelper.nuspec: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Xam.Plugins.Android.XamarinItemTouchHelper 5 | 1.1.7 6 | ItemTouchHelper for Xamarin.Android RecyclerView 7 | Martijn van Dijk 8 | Martijn van Dijk 9 | https://github.com/martijn00/XamarinItemTouchHelper/blob/master/LICENSE 10 | https://github.com/martijn00/XamarinItemTouchHelper 11 | https://raw.githubusercontent.com/martijn00/XamarinItemTouchHelper/master/icon_touchhelper.png 12 | false 13 | ItemTouchHelper for Xamarin RecyclerView 14 | ItemTouchHelper to add drag & drop and swipe-to-dismiss to RecyclerView for Xamarin 15 | xamarin, monodroid, C#, xamarin.android, android, recyclerview, itemtouchhelper, swipe, drag 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | --------------------------------------------------------------------------------