diff --git a/.vs/Sharif-Support/v15/.suo b/.vs/Sharif-Support/v15/.suo new file mode 100644 index 0000000..dd8f220 Binary files /dev/null and b/.vs/Sharif-Support/v15/.suo differ diff --git a/Sharif-Support.sln b/Sharif-Support.sln new file mode 100644 index 0000000..f74ee15 --- /dev/null +++ b/Sharif-Support.sln @@ -0,0 +1,40 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26228.4 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Support.Android", "Support\Support.Android\Support.Android.csproj", "{8EADCA87-5094-4532-91F6-93AC25667CE5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|iPhone = Debug|iPhone + Debug|iPhoneSimulator = Debug|iPhoneSimulator + Release|Any CPU = Release|Any CPU + Release|iPhone = Release|iPhone + Release|iPhoneSimulator = Release|iPhoneSimulator + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|iPhone.Build.0 = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|iPhone.Deploy.0 = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|Any CPU.Build.0 = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|Any CPU.Deploy.0 = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|iPhone.ActiveCfg = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|iPhone.Build.0 = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|iPhone.Deploy.0 = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|iPhoneSimulator.Build.0 = Release|Any CPU + {8EADCA87-5094-4532-91F6-93AC25667CE5}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Support/Support.Android/Activities/AddItemActivity.cs b/Support/Support.Android/Activities/AddItemActivity.cs new file mode 100644 index 0000000..d6c0815 --- /dev/null +++ b/Support/Support.Android/Activities/AddItemActivity.cs @@ -0,0 +1,34 @@ + +using System; +using Android.App; +using Android.OS; +using Android.Support.Design.Widget; +using Android.Widget; +using Plugin.CurrentActivity; + +namespace Support.Droid +{ + + [Activity(Label = "AddItemActivity")] + public class AddItemActivity : Activity + { + FloatingActionButton saveButton; + EditText title, description; + + + protected override void OnCreate(Bundle savedInstanceState) + { + base.OnCreate(savedInstanceState); + + + + saveButton.Click += SaveButton_Click; + } + + private void SaveButton_Click(object sender, EventArgs e) + { + + Finish(); + } + } +} diff --git a/Support/Support.Android/Activities/BaseActivity.cs b/Support/Support.Android/Activities/BaseActivity.cs new file mode 100644 index 0000000..53d9282 --- /dev/null +++ b/Support/Support.Android/Activities/BaseActivity.cs @@ -0,0 +1,40 @@ +using Android.OS; +using Android.Support.V7.App; +using Android.Support.V7.Widget; + +namespace Support.Droid +{ + public class BaseActivity : AppCompatActivity + { + protected override void OnCreate(Bundle savedInstanceState) + { + base.OnCreate(savedInstanceState); + SetContentView(LayoutResource); + Toolbar = FindViewById(Resource.Id.toolbar); + if (Toolbar != null) + { + SetSupportActionBar(Toolbar); + SupportActionBar.SetDisplayHomeAsUpEnabled(true); + SupportActionBar.SetHomeButtonEnabled(true); + + } + } + + public Toolbar Toolbar + { + get; + set; + } + + protected virtual int LayoutResource + { + get; + } + + protected int ActionBarIcon + { + set { Toolbar?.SetNavigationIcon(value); } + } + } +} + diff --git a/Support/Support.Android/Activities/MainActivity.cs b/Support/Support.Android/Activities/MainActivity.cs new file mode 100644 index 0000000..1c19582 --- /dev/null +++ b/Support/Support.Android/Activities/MainActivity.cs @@ -0,0 +1,59 @@ +using Android.App; +using Android.Content; +using Android.Content.PM; +using Android.OS; +using Android.Support.Design.Widget; +using Android.Support.V4.App; +using Android.Support.V4.View; +using Android.Views; +using Android.Widget; + +namespace Support.Droid +{ + [Activity(Label = "@string/app_name", + LaunchMode = LaunchMode.SingleInstance, + ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation, + ScreenOrientation = ScreenOrientation.Portrait)] + public class MainActivity : BaseActivity + { + + protected override int LayoutResource => Resource.Layout.activity_main; + + ViewPager pager; + + protected override void OnCreate(Bundle savedInstanceState) + { + base.OnCreate(savedInstanceState); + + pager = FindViewById(Resource.Id.viewpager); + pager.OffscreenPageLimit = 3; + + pager.PageSelected += (sender, args) => + { + + + }; + + Toolbar.MenuItemClick += (sender, e) => + { + var intent = new Intent(this, typeof(AddItemActivity)); ; + StartActivity(intent); + }; + + SupportActionBar.SetDisplayHomeAsUpEnabled(false); + SupportActionBar.SetHomeButtonEnabled(false); + + + } + + public override bool OnCreateOptionsMenu(IMenu menu) + { + MenuInflater.Inflate(Resource.Menu.top_menus, menu); + return base.OnCreateOptionsMenu(menu); + } + + } + +} + + diff --git a/Support/Support.Android/Activities/SplashActivity.cs b/Support/Support.Android/Activities/SplashActivity.cs new file mode 100644 index 0000000..e0c132f --- /dev/null +++ b/Support/Support.Android/Activities/SplashActivity.cs @@ -0,0 +1,23 @@ +using Android.App; +using Android.Content; +using Android.OS; +using Android.Support.V7.App; + +namespace Support.Droid +{ + [Activity(Label = "@string/app_name", Theme = "@style/SplashTheme", MainLauncher = true)] + public class SplashActivity : AppCompatActivity + { + protected override void OnCreate(Bundle savedInstanceState) + { + base.OnCreate(savedInstanceState); + + var mainActivityIntent = new Intent(this, typeof(MainActivity)); + mainActivityIntent.AddFlags(ActivityFlags.ClearTop); + mainActivityIntent.AddFlags(ActivityFlags.SingleTop); + + StartActivity(mainActivityIntent); + Finish(); + } + } +} \ No newline at end of file diff --git a/Support/Support.Android/Assets/AboutAssets.txt b/Support/Support.Android/Assets/AboutAssets.txt new file mode 100644 index 0000000..a9b0638 --- /dev/null +++ b/Support/Support.Android/Assets/AboutAssets.txt @@ -0,0 +1,19 @@ +Any raw assets you want to be deployed with your application can be placed in +this directory (and child directories) and given a Build Action of "AndroidAsset". + +These files will be deployed with your package and will be accessible using Android's +AssetManager, like this: + +public class ReadAsset : Activity +{ + protected override void OnCreate (Bundle bundle) + { + base.OnCreate (bundle); + + InputStream input = Assets.Open ("my_asset.txt"); + } +} + +Additionally, some Android functions will automatically load asset files: + +Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); diff --git a/Support/Support.Android/Properties/AndroidManifest.xml b/Support/Support.Android/Properties/AndroidManifest.xml new file mode 100644 index 0000000..1befe75 --- /dev/null +++ b/Support/Support.Android/Properties/AndroidManifest.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/Properties/AssemblyInfo.cs b/Support/Support.Android/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2ee483d --- /dev/null +++ b/Support/Support.Android/Properties/AssemblyInfo.cs @@ -0,0 +1,28 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using Android.App; + +// Information about this assembly is defined by the following attributes. +// Change them to the values specific to your project. + +[assembly: AssemblyTitle("Support.Android")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". +// The form "{Major}.{Minor}.*" will automatically update the build and revision, +// and "{Major}.{Minor}.{Build}.*" will update just the revision. + +[assembly: AssemblyVersion("1.0.0")] + +// The following attributes are used to specify the signing key for the assembly, +// if desired. See the Mono documentation for more information about signing. + +//[assembly: AssemblyDelaySign(false)] +//[assembly: AssemblyKeyFile("")] + diff --git a/Support/Support.Android/Resources/AboutResources.txt b/Support/Support.Android/Resources/AboutResources.txt new file mode 100644 index 0000000..10f52d4 --- /dev/null +++ b/Support/Support.Android/Resources/AboutResources.txt @@ -0,0 +1,44 @@ +Images, layout descriptions, binary blobs and string dictionaries can be included +in your application as resource files. Various Android APIs are designed to +operate on the resource IDs instead of dealing with images, strings or binary blobs +directly. + +For example, a sample Android app that contains a user interface layout (main.axml), +an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) +would keep its resources in the "Resources" directory of the application: + +Resources/ + drawable/ + icon.png + + layout/ + main.axml + + values/ + strings.xml + +In order to get the build system to recognize Android resources, set the build action to +"AndroidResource". The native Android APIs do not operate directly with filenames, but +instead operate on resource IDs. When you compile an Android application that uses resources, +the build system will package the resources for distribution and generate a class called "R" +(this is an Android convention) that contains the tokens for each one of the resources +included. For example, for the above Resources layout, this is what the R class would expose: + +public class R { + public class drawable { + public const int icon = 0x123; + } + + public class layout { + public const int main = 0x456; + } + + public class strings { + public const int first_string = 0xabc; + public const int second_string = 0xbcd; + } +} + +You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main +to reference the layout/main.axml file, or R.strings.first_string to reference the first +string in the dictionary file values/strings.xml. diff --git a/Support/Support.Android/Resources/Resource.designer.cs b/Support/Support.Android/Resources/Resource.designer.cs new file mode 100644 index 0000000..708beef --- /dev/null +++ b/Support/Support.Android/Resources/Resource.designer.cs @@ -0,0 +1,5499 @@ +#pragma warning disable 1591 +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +[assembly: global::Android.Runtime.ResourceDesignerAttribute("Support.Droid.Resource", IsApplication=true)] + +namespace Support.Droid +{ + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] + public partial class Resource + { + + static Resource() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + public static void UpdateIdValues() + { + } + + public partial class Animation + { + + // aapt resource value: 0x7f040000 + public const int abc_fade_in = 2130968576; + + // aapt resource value: 0x7f040001 + public const int abc_fade_out = 2130968577; + + // aapt resource value: 0x7f040002 + public const int abc_grow_fade_in_from_bottom = 2130968578; + + // aapt resource value: 0x7f040003 + public const int abc_popup_enter = 2130968579; + + // aapt resource value: 0x7f040004 + public const int abc_popup_exit = 2130968580; + + // aapt resource value: 0x7f040005 + public const int abc_shrink_fade_out_from_bottom = 2130968581; + + // aapt resource value: 0x7f040006 + public const int abc_slide_in_bottom = 2130968582; + + // aapt resource value: 0x7f040007 + public const int abc_slide_in_top = 2130968583; + + // aapt resource value: 0x7f040008 + public const int abc_slide_out_bottom = 2130968584; + + // aapt resource value: 0x7f040009 + public const int abc_slide_out_top = 2130968585; + + // aapt resource value: 0x7f04000a + public const int design_bottom_sheet_slide_in = 2130968586; + + // aapt resource value: 0x7f04000b + public const int design_bottom_sheet_slide_out = 2130968587; + + // aapt resource value: 0x7f04000c + public const int design_fab_in = 2130968588; + + // aapt resource value: 0x7f04000d + public const int design_fab_out = 2130968589; + + // aapt resource value: 0x7f04000e + public const int design_snackbar_in = 2130968590; + + // aapt resource value: 0x7f04000f + public const int design_snackbar_out = 2130968591; + + static Animation() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Animation() + { + } + } + + public partial class Array + { + + // aapt resource value: 0x7f0c0000 + public const int sections = 2131492864; + + static Array() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Array() + { + } + } + + public partial class Attribute + { + + // aapt resource value: 0x7f01004a + public const int actionBarDivider = 2130772042; + + // aapt resource value: 0x7f01004b + public const int actionBarItemBackground = 2130772043; + + // aapt resource value: 0x7f010044 + public const int actionBarPopupTheme = 2130772036; + + // aapt resource value: 0x7f010049 + public const int actionBarSize = 2130772041; + + // aapt resource value: 0x7f010046 + public const int actionBarSplitStyle = 2130772038; + + // aapt resource value: 0x7f010045 + public const int actionBarStyle = 2130772037; + + // aapt resource value: 0x7f010040 + public const int actionBarTabBarStyle = 2130772032; + + // aapt resource value: 0x7f01003f + public const int actionBarTabStyle = 2130772031; + + // aapt resource value: 0x7f010041 + public const int actionBarTabTextStyle = 2130772033; + + // aapt resource value: 0x7f010047 + public const int actionBarTheme = 2130772039; + + // aapt resource value: 0x7f010048 + public const int actionBarWidgetTheme = 2130772040; + + // aapt resource value: 0x7f010064 + public const int actionButtonStyle = 2130772068; + + // aapt resource value: 0x7f010060 + public const int actionDropDownStyle = 2130772064; + + // aapt resource value: 0x7f0100b2 + public const int actionLayout = 2130772146; + + // aapt resource value: 0x7f01004c + public const int actionMenuTextAppearance = 2130772044; + + // aapt resource value: 0x7f01004d + public const int actionMenuTextColor = 2130772045; + + // aapt resource value: 0x7f010050 + public const int actionModeBackground = 2130772048; + + // aapt resource value: 0x7f01004f + public const int actionModeCloseButtonStyle = 2130772047; + + // aapt resource value: 0x7f010052 + public const int actionModeCloseDrawable = 2130772050; + + // aapt resource value: 0x7f010054 + public const int actionModeCopyDrawable = 2130772052; + + // aapt resource value: 0x7f010053 + public const int actionModeCutDrawable = 2130772051; + + // aapt resource value: 0x7f010058 + public const int actionModeFindDrawable = 2130772056; + + // aapt resource value: 0x7f010055 + public const int actionModePasteDrawable = 2130772053; + + // aapt resource value: 0x7f01005a + public const int actionModePopupWindowStyle = 2130772058; + + // aapt resource value: 0x7f010056 + public const int actionModeSelectAllDrawable = 2130772054; + + // aapt resource value: 0x7f010057 + public const int actionModeShareDrawable = 2130772055; + + // aapt resource value: 0x7f010051 + public const int actionModeSplitBackground = 2130772049; + + // aapt resource value: 0x7f01004e + public const int actionModeStyle = 2130772046; + + // aapt resource value: 0x7f010059 + public const int actionModeWebSearchDrawable = 2130772057; + + // aapt resource value: 0x7f010042 + public const int actionOverflowButtonStyle = 2130772034; + + // aapt resource value: 0x7f010043 + public const int actionOverflowMenuStyle = 2130772035; + + // aapt resource value: 0x7f0100b4 + public const int actionProviderClass = 2130772148; + + // aapt resource value: 0x7f0100b3 + public const int actionViewClass = 2130772147; + + // aapt resource value: 0x7f01006c + public const int activityChooserViewStyle = 2130772076; + + // aapt resource value: 0x7f01008f + public const int alertDialogButtonGroupStyle = 2130772111; + + // aapt resource value: 0x7f010090 + public const int alertDialogCenterButtons = 2130772112; + + // aapt resource value: 0x7f01008e + public const int alertDialogStyle = 2130772110; + + // aapt resource value: 0x7f010091 + public const int alertDialogTheme = 2130772113; + + // aapt resource value: 0x7f0100a3 + public const int allowStacking = 2130772131; + + // aapt resource value: 0x7f0100aa + public const int arrowHeadLength = 2130772138; + + // aapt resource value: 0x7f0100ab + public const int arrowShaftLength = 2130772139; + + // aapt resource value: 0x7f010096 + public const int autoCompleteTextViewStyle = 2130772118; + + // aapt resource value: 0x7f01001b + public const int background = 2130771995; + + // aapt resource value: 0x7f01001d + public const int backgroundSplit = 2130771997; + + // aapt resource value: 0x7f01001c + public const int backgroundStacked = 2130771996; + + // aapt resource value: 0x7f0100de + public const int backgroundTint = 2130772190; + + // aapt resource value: 0x7f0100df + public const int backgroundTintMode = 2130772191; + + // aapt resource value: 0x7f0100ac + public const int barLength = 2130772140; + + // aapt resource value: 0x7f0100e4 + public const int behavior_hideable = 2130772196; + + // aapt resource value: 0x7f01010a + public const int behavior_overlapTop = 2130772234; + + // aapt resource value: 0x7f0100e3 + public const int behavior_peekHeight = 2130772195; + + // aapt resource value: 0x7f010100 + public const int borderWidth = 2130772224; + + // aapt resource value: 0x7f010069 + public const int borderlessButtonStyle = 2130772073; + + // aapt resource value: 0x7f0100fa + public const int bottomSheetDialogTheme = 2130772218; + + // aapt resource value: 0x7f0100fb + public const int bottomSheetStyle = 2130772219; + + // aapt resource value: 0x7f010066 + public const int buttonBarButtonStyle = 2130772070; + + // aapt resource value: 0x7f010094 + public const int buttonBarNegativeButtonStyle = 2130772116; + + // aapt resource value: 0x7f010095 + public const int buttonBarNeutralButtonStyle = 2130772117; + + // aapt resource value: 0x7f010093 + public const int buttonBarPositiveButtonStyle = 2130772115; + + // aapt resource value: 0x7f010065 + public const int buttonBarStyle = 2130772069; + + // aapt resource value: 0x7f01002e + public const int buttonPanelSideLayout = 2130772014; + + // aapt resource value: 0x7f010097 + public const int buttonStyle = 2130772119; + + // aapt resource value: 0x7f010098 + public const int buttonStyleSmall = 2130772120; + + // aapt resource value: 0x7f0100a4 + public const int buttonTint = 2130772132; + + // aapt resource value: 0x7f0100a5 + public const int buttonTintMode = 2130772133; + + // aapt resource value: 0x7f010004 + public const int cardBackgroundColor = 2130771972; + + // aapt resource value: 0x7f010005 + public const int cardCornerRadius = 2130771973; + + // aapt resource value: 0x7f010006 + public const int cardElevation = 2130771974; + + // aapt resource value: 0x7f010007 + public const int cardMaxElevation = 2130771975; + + // aapt resource value: 0x7f010009 + public const int cardPreventCornerOverlap = 2130771977; + + // aapt resource value: 0x7f010008 + public const int cardUseCompatPadding = 2130771976; + + // aapt resource value: 0x7f010099 + public const int checkboxStyle = 2130772121; + + // aapt resource value: 0x7f01009a + public const int checkedTextViewStyle = 2130772122; + + // aapt resource value: 0x7f0100bc + public const int closeIcon = 2130772156; + + // aapt resource value: 0x7f01002b + public const int closeItemLayout = 2130772011; + + // aapt resource value: 0x7f0100d5 + public const int collapseContentDescription = 2130772181; + + // aapt resource value: 0x7f0100d4 + public const int collapseIcon = 2130772180; + + // aapt resource value: 0x7f0100f1 + public const int collapsedTitleGravity = 2130772209; + + // aapt resource value: 0x7f0100ed + public const int collapsedTitleTextAppearance = 2130772205; + + // aapt resource value: 0x7f0100a6 + public const int color = 2130772134; + + // aapt resource value: 0x7f010087 + public const int colorAccent = 2130772103; + + // aapt resource value: 0x7f01008b + public const int colorButtonNormal = 2130772107; + + // aapt resource value: 0x7f010089 + public const int colorControlActivated = 2130772105; + + // aapt resource value: 0x7f01008a + public const int colorControlHighlight = 2130772106; + + // aapt resource value: 0x7f010088 + public const int colorControlNormal = 2130772104; + + // aapt resource value: 0x7f010085 + public const int colorPrimary = 2130772101; + + // aapt resource value: 0x7f010086 + public const int colorPrimaryDark = 2130772102; + + // aapt resource value: 0x7f01008c + public const int colorSwitchThumbNormal = 2130772108; + + // aapt resource value: 0x7f0100c1 + public const int commitIcon = 2130772161; + + // aapt resource value: 0x7f010026 + public const int contentInsetEnd = 2130772006; + + // aapt resource value: 0x7f010027 + public const int contentInsetLeft = 2130772007; + + // aapt resource value: 0x7f010028 + public const int contentInsetRight = 2130772008; + + // aapt resource value: 0x7f010025 + public const int contentInsetStart = 2130772005; + + // aapt resource value: 0x7f01000a + public const int contentPadding = 2130771978; + + // aapt resource value: 0x7f01000e + public const int contentPaddingBottom = 2130771982; + + // aapt resource value: 0x7f01000b + public const int contentPaddingLeft = 2130771979; + + // aapt resource value: 0x7f01000c + public const int contentPaddingRight = 2130771980; + + // aapt resource value: 0x7f01000d + public const int contentPaddingTop = 2130771981; + + // aapt resource value: 0x7f0100ee + public const int contentScrim = 2130772206; + + // aapt resource value: 0x7f01008d + public const int controlBackground = 2130772109; + + // aapt resource value: 0x7f010120 + public const int counterEnabled = 2130772256; + + // aapt resource value: 0x7f010121 + public const int counterMaxLength = 2130772257; + + // aapt resource value: 0x7f010123 + public const int counterOverflowTextAppearance = 2130772259; + + // aapt resource value: 0x7f010122 + public const int counterTextAppearance = 2130772258; + + // aapt resource value: 0x7f01001e + public const int customNavigationLayout = 2130771998; + + // aapt resource value: 0x7f0100bb + public const int defaultQueryHint = 2130772155; + + // aapt resource value: 0x7f01005e + public const int dialogPreferredPadding = 2130772062; + + // aapt resource value: 0x7f01005d + public const int dialogTheme = 2130772061; + + // aapt resource value: 0x7f010014 + public const int displayOptions = 2130771988; + + // aapt resource value: 0x7f01001a + public const int divider = 2130771994; + + // aapt resource value: 0x7f01006b + public const int dividerHorizontal = 2130772075; + + // aapt resource value: 0x7f0100b0 + public const int dividerPadding = 2130772144; + + // aapt resource value: 0x7f01006a + public const int dividerVertical = 2130772074; + + // aapt resource value: 0x7f0100a8 + public const int drawableSize = 2130772136; + + // aapt resource value: 0x7f01000f + public const int drawerArrowStyle = 2130771983; + + // aapt resource value: 0x7f01007d + public const int dropDownListViewStyle = 2130772093; + + // aapt resource value: 0x7f010061 + public const int dropdownListPreferredItemHeight = 2130772065; + + // aapt resource value: 0x7f010072 + public const int editTextBackground = 2130772082; + + // aapt resource value: 0x7f010071 + public const int editTextColor = 2130772081; + + // aapt resource value: 0x7f01009b + public const int editTextStyle = 2130772123; + + // aapt resource value: 0x7f010029 + public const int elevation = 2130772009; + + // aapt resource value: 0x7f01011e + public const int errorEnabled = 2130772254; + + // aapt resource value: 0x7f01011f + public const int errorTextAppearance = 2130772255; + + // aapt resource value: 0x7f01002d + public const int expandActivityOverflowButtonDrawable = 2130772013; + + // aapt resource value: 0x7f0100e0 + public const int expanded = 2130772192; + + // aapt resource value: 0x7f0100f2 + public const int expandedTitleGravity = 2130772210; + + // aapt resource value: 0x7f0100e7 + public const int expandedTitleMargin = 2130772199; + + // aapt resource value: 0x7f0100eb + public const int expandedTitleMarginBottom = 2130772203; + + // aapt resource value: 0x7f0100ea + public const int expandedTitleMarginEnd = 2130772202; + + // aapt resource value: 0x7f0100e8 + public const int expandedTitleMarginStart = 2130772200; + + // aapt resource value: 0x7f0100e9 + public const int expandedTitleMarginTop = 2130772201; + + // aapt resource value: 0x7f0100ec + public const int expandedTitleTextAppearance = 2130772204; + + // aapt resource value: 0x7f0100fe + public const int fabSize = 2130772222; + + // aapt resource value: 0x7f010102 + public const int foregroundInsidePadding = 2130772226; + + // aapt resource value: 0x7f0100a9 + public const int gapBetweenBars = 2130772137; + + // aapt resource value: 0x7f0100bd + public const int goIcon = 2130772157; + + // aapt resource value: 0x7f010108 + public const int headerLayout = 2130772232; + + // aapt resource value: 0x7f010010 + public const int height = 2130771984; + + // aapt resource value: 0x7f010024 + public const int hideOnContentScroll = 2130772004; + + // aapt resource value: 0x7f010124 + public const int hintAnimationEnabled = 2130772260; + + // aapt resource value: 0x7f01011d + public const int hintEnabled = 2130772253; + + // aapt resource value: 0x7f01011c + public const int hintTextAppearance = 2130772252; + + // aapt resource value: 0x7f010063 + public const int homeAsUpIndicator = 2130772067; + + // aapt resource value: 0x7f01001f + public const int homeLayout = 2130771999; + + // aapt resource value: 0x7f010018 + public const int icon = 2130771992; + + // aapt resource value: 0x7f0100b9 + public const int iconifiedByDefault = 2130772153; + + // aapt resource value: 0x7f010073 + public const int imageButtonStyle = 2130772083; + + // aapt resource value: 0x7f010021 + public const int indeterminateProgressStyle = 2130772001; + + // aapt resource value: 0x7f01002c + public const int initialActivityCount = 2130772012; + + // aapt resource value: 0x7f010109 + public const int insetForeground = 2130772233; + + // aapt resource value: 0x7f010011 + public const int isLightTheme = 2130771985; + + // aapt resource value: 0x7f010106 + public const int itemBackground = 2130772230; + + // aapt resource value: 0x7f010104 + public const int itemIconTint = 2130772228; + + // aapt resource value: 0x7f010023 + public const int itemPadding = 2130772003; + + // aapt resource value: 0x7f010107 + public const int itemTextAppearance = 2130772231; + + // aapt resource value: 0x7f010105 + public const int itemTextColor = 2130772229; + + // aapt resource value: 0x7f0100f4 + public const int keylines = 2130772212; + + // aapt resource value: 0x7f0100b8 + public const int layout = 2130772152; + + // aapt resource value: 0x7f010000 + public const int layoutManager = 2130771968; + + // aapt resource value: 0x7f0100f7 + public const int layout_anchor = 2130772215; + + // aapt resource value: 0x7f0100f9 + public const int layout_anchorGravity = 2130772217; + + // aapt resource value: 0x7f0100f6 + public const int layout_behavior = 2130772214; + + // aapt resource value: 0x7f0100e5 + public const int layout_collapseMode = 2130772197; + + // aapt resource value: 0x7f0100e6 + public const int layout_collapseParallaxMultiplier = 2130772198; + + // aapt resource value: 0x7f0100f8 + public const int layout_keyline = 2130772216; + + // aapt resource value: 0x7f0100e1 + public const int layout_scrollFlags = 2130772193; + + // aapt resource value: 0x7f0100e2 + public const int layout_scrollInterpolator = 2130772194; + + // aapt resource value: 0x7f010084 + public const int listChoiceBackgroundIndicator = 2130772100; + + // aapt resource value: 0x7f01005f + public const int listDividerAlertDialog = 2130772063; + + // aapt resource value: 0x7f010032 + public const int listItemLayout = 2130772018; + + // aapt resource value: 0x7f01002f + public const int listLayout = 2130772015; + + // aapt resource value: 0x7f01007e + public const int listPopupWindowStyle = 2130772094; + + // aapt resource value: 0x7f010078 + public const int listPreferredItemHeight = 2130772088; + + // aapt resource value: 0x7f01007a + public const int listPreferredItemHeightLarge = 2130772090; + + // aapt resource value: 0x7f010079 + public const int listPreferredItemHeightSmall = 2130772089; + + // aapt resource value: 0x7f01007b + public const int listPreferredItemPaddingLeft = 2130772091; + + // aapt resource value: 0x7f01007c + public const int listPreferredItemPaddingRight = 2130772092; + + // aapt resource value: 0x7f010019 + public const int logo = 2130771993; + + // aapt resource value: 0x7f0100d8 + public const int logoDescription = 2130772184; + + // aapt resource value: 0x7f01010b + public const int maxActionInlineWidth = 2130772235; + + // aapt resource value: 0x7f0100d3 + public const int maxButtonHeight = 2130772179; + + // aapt resource value: 0x7f0100ae + public const int measureWithLargestChild = 2130772142; + + // aapt resource value: 0x7f010103 + public const int menu = 2130772227; + + // aapt resource value: 0x7f010030 + public const int multiChoiceItemLayout = 2130772016; + + // aapt resource value: 0x7f0100d7 + public const int navigationContentDescription = 2130772183; + + // aapt resource value: 0x7f0100d6 + public const int navigationIcon = 2130772182; + + // aapt resource value: 0x7f010013 + public const int navigationMode = 2130771987; + + // aapt resource value: 0x7f0100b6 + public const int overlapAnchor = 2130772150; + + // aapt resource value: 0x7f0100dc + public const int paddingEnd = 2130772188; + + // aapt resource value: 0x7f0100db + public const int paddingStart = 2130772187; + + // aapt resource value: 0x7f010081 + public const int panelBackground = 2130772097; + + // aapt resource value: 0x7f010083 + public const int panelMenuListTheme = 2130772099; + + // aapt resource value: 0x7f010082 + public const int panelMenuListWidth = 2130772098; + + // aapt resource value: 0x7f01006f + public const int popupMenuStyle = 2130772079; + + // aapt resource value: 0x7f01002a + public const int popupTheme = 2130772010; + + // aapt resource value: 0x7f010070 + public const int popupWindowStyle = 2130772080; + + // aapt resource value: 0x7f0100b5 + public const int preserveIconSpacing = 2130772149; + + // aapt resource value: 0x7f0100ff + public const int pressedTranslationZ = 2130772223; + + // aapt resource value: 0x7f010022 + public const int progressBarPadding = 2130772002; + + // aapt resource value: 0x7f010020 + public const int progressBarStyle = 2130772000; + + // aapt resource value: 0x7f0100c3 + public const int queryBackground = 2130772163; + + // aapt resource value: 0x7f0100ba + public const int queryHint = 2130772154; + + // aapt resource value: 0x7f01009c + public const int radioButtonStyle = 2130772124; + + // aapt resource value: 0x7f01009d + public const int ratingBarStyle = 2130772125; + + // aapt resource value: 0x7f01009e + public const int ratingBarStyleIndicator = 2130772126; + + // aapt resource value: 0x7f01009f + public const int ratingBarStyleSmall = 2130772127; + + // aapt resource value: 0x7f010002 + public const int reverseLayout = 2130771970; + + // aapt resource value: 0x7f0100fd + public const int rippleColor = 2130772221; + + // aapt resource value: 0x7f0100bf + public const int searchHintIcon = 2130772159; + + // aapt resource value: 0x7f0100be + public const int searchIcon = 2130772158; + + // aapt resource value: 0x7f010077 + public const int searchViewStyle = 2130772087; + + // aapt resource value: 0x7f0100a0 + public const int seekBarStyle = 2130772128; + + // aapt resource value: 0x7f010067 + public const int selectableItemBackground = 2130772071; + + // aapt resource value: 0x7f010068 + public const int selectableItemBackgroundBorderless = 2130772072; + + // aapt resource value: 0x7f0100b1 + public const int showAsAction = 2130772145; + + // aapt resource value: 0x7f0100af + public const int showDividers = 2130772143; + + // aapt resource value: 0x7f0100cb + public const int showText = 2130772171; + + // aapt resource value: 0x7f010031 + public const int singleChoiceItemLayout = 2130772017; + + // aapt resource value: 0x7f010001 + public const int spanCount = 2130771969; + + // aapt resource value: 0x7f0100a7 + public const int spinBars = 2130772135; + + // aapt resource value: 0x7f010062 + public const int spinnerDropDownItemStyle = 2130772066; + + // aapt resource value: 0x7f0100a1 + public const int spinnerStyle = 2130772129; + + // aapt resource value: 0x7f0100ca + public const int splitTrack = 2130772170; + + // aapt resource value: 0x7f010033 + public const int srcCompat = 2130772019; + + // aapt resource value: 0x7f010003 + public const int stackFromEnd = 2130771971; + + // aapt resource value: 0x7f0100b7 + public const int state_above_anchor = 2130772151; + + // aapt resource value: 0x7f0100f5 + public const int statusBarBackground = 2130772213; + + // aapt resource value: 0x7f0100ef + public const int statusBarScrim = 2130772207; + + // aapt resource value: 0x7f0100c4 + public const int submitBackground = 2130772164; + + // aapt resource value: 0x7f010015 + public const int subtitle = 2130771989; + + // aapt resource value: 0x7f0100cd + public const int subtitleTextAppearance = 2130772173; + + // aapt resource value: 0x7f0100da + public const int subtitleTextColor = 2130772186; + + // aapt resource value: 0x7f010017 + public const int subtitleTextStyle = 2130771991; + + // aapt resource value: 0x7f0100c2 + public const int suggestionRowLayout = 2130772162; + + // aapt resource value: 0x7f0100c8 + public const int switchMinWidth = 2130772168; + + // aapt resource value: 0x7f0100c9 + public const int switchPadding = 2130772169; + + // aapt resource value: 0x7f0100a2 + public const int switchStyle = 2130772130; + + // aapt resource value: 0x7f0100c7 + public const int switchTextAppearance = 2130772167; + + // aapt resource value: 0x7f01010f + public const int tabBackground = 2130772239; + + // aapt resource value: 0x7f01010e + public const int tabContentStart = 2130772238; + + // aapt resource value: 0x7f010111 + public const int tabGravity = 2130772241; + + // aapt resource value: 0x7f01010c + public const int tabIndicatorColor = 2130772236; + + // aapt resource value: 0x7f01010d + public const int tabIndicatorHeight = 2130772237; + + // aapt resource value: 0x7f010113 + public const int tabMaxWidth = 2130772243; + + // aapt resource value: 0x7f010112 + public const int tabMinWidth = 2130772242; + + // aapt resource value: 0x7f010110 + public const int tabMode = 2130772240; + + // aapt resource value: 0x7f01011b + public const int tabPadding = 2130772251; + + // aapt resource value: 0x7f01011a + public const int tabPaddingBottom = 2130772250; + + // aapt resource value: 0x7f010119 + public const int tabPaddingEnd = 2130772249; + + // aapt resource value: 0x7f010117 + public const int tabPaddingStart = 2130772247; + + // aapt resource value: 0x7f010118 + public const int tabPaddingTop = 2130772248; + + // aapt resource value: 0x7f010116 + public const int tabSelectedTextColor = 2130772246; + + // aapt resource value: 0x7f010114 + public const int tabTextAppearance = 2130772244; + + // aapt resource value: 0x7f010115 + public const int tabTextColor = 2130772245; + + // aapt resource value: 0x7f010034 + public const int textAllCaps = 2130772020; + + // aapt resource value: 0x7f01005b + public const int textAppearanceLargePopupMenu = 2130772059; + + // aapt resource value: 0x7f01007f + public const int textAppearanceListItem = 2130772095; + + // aapt resource value: 0x7f010080 + public const int textAppearanceListItemSmall = 2130772096; + + // aapt resource value: 0x7f010075 + public const int textAppearanceSearchResultSubtitle = 2130772085; + + // aapt resource value: 0x7f010074 + public const int textAppearanceSearchResultTitle = 2130772084; + + // aapt resource value: 0x7f01005c + public const int textAppearanceSmallPopupMenu = 2130772060; + + // aapt resource value: 0x7f010092 + public const int textColorAlertDialogListItem = 2130772114; + + // aapt resource value: 0x7f0100fc + public const int textColorError = 2130772220; + + // aapt resource value: 0x7f010076 + public const int textColorSearchUrl = 2130772086; + + // aapt resource value: 0x7f0100dd + public const int theme = 2130772189; + + // aapt resource value: 0x7f0100ad + public const int thickness = 2130772141; + + // aapt resource value: 0x7f0100c6 + public const int thumbTextPadding = 2130772166; + + // aapt resource value: 0x7f010012 + public const int title = 2130771986; + + // aapt resource value: 0x7f0100f3 + public const int titleEnabled = 2130772211; + + // aapt resource value: 0x7f0100d2 + public const int titleMarginBottom = 2130772178; + + // aapt resource value: 0x7f0100d0 + public const int titleMarginEnd = 2130772176; + + // aapt resource value: 0x7f0100cf + public const int titleMarginStart = 2130772175; + + // aapt resource value: 0x7f0100d1 + public const int titleMarginTop = 2130772177; + + // aapt resource value: 0x7f0100ce + public const int titleMargins = 2130772174; + + // aapt resource value: 0x7f0100cc + public const int titleTextAppearance = 2130772172; + + // aapt resource value: 0x7f0100d9 + public const int titleTextColor = 2130772185; + + // aapt resource value: 0x7f010016 + public const int titleTextStyle = 2130771990; + + // aapt resource value: 0x7f0100f0 + public const int toolbarId = 2130772208; + + // aapt resource value: 0x7f01006e + public const int toolbarNavigationButtonStyle = 2130772078; + + // aapt resource value: 0x7f01006d + public const int toolbarStyle = 2130772077; + + // aapt resource value: 0x7f0100c5 + public const int track = 2130772165; + + // aapt resource value: 0x7f010101 + public const int useCompatPadding = 2130772225; + + // aapt resource value: 0x7f0100c0 + public const int voiceIcon = 2130772160; + + // aapt resource value: 0x7f010035 + public const int windowActionBar = 2130772021; + + // aapt resource value: 0x7f010037 + public const int windowActionBarOverlay = 2130772023; + + // aapt resource value: 0x7f010038 + public const int windowActionModeOverlay = 2130772024; + + // aapt resource value: 0x7f01003c + public const int windowFixedHeightMajor = 2130772028; + + // aapt resource value: 0x7f01003a + public const int windowFixedHeightMinor = 2130772026; + + // aapt resource value: 0x7f010039 + public const int windowFixedWidthMajor = 2130772025; + + // aapt resource value: 0x7f01003b + public const int windowFixedWidthMinor = 2130772027; + + // aapt resource value: 0x7f01003d + public const int windowMinWidthMajor = 2130772029; + + // aapt resource value: 0x7f01003e + public const int windowMinWidthMinor = 2130772030; + + // aapt resource value: 0x7f010036 + public const int windowNoTitle = 2130772022; + + static Attribute() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Attribute() + { + } + } + + public partial class Boolean + { + + // aapt resource value: 0x7f0a0003 + public const int abc_action_bar_embed_tabs = 2131361795; + + // aapt resource value: 0x7f0a0001 + public const int abc_action_bar_embed_tabs_pre_jb = 2131361793; + + // aapt resource value: 0x7f0a0004 + public const int abc_action_bar_expanded_action_views_exclusive = 2131361796; + + // aapt resource value: 0x7f0a0000 + public const int abc_allow_stacked_button_bar = 2131361792; + + // aapt resource value: 0x7f0a0005 + public const int abc_config_actionMenuItemAllCaps = 2131361797; + + // aapt resource value: 0x7f0a0002 + public const int abc_config_allowActionMenuItemTextWithIcon = 2131361794; + + // aapt resource value: 0x7f0a0006 + public const int abc_config_closeDialogWhenTouchOutside = 2131361798; + + // aapt resource value: 0x7f0a0007 + public const int abc_config_showMenuShortcutsWhenKeyboardPresent = 2131361799; + + static Boolean() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Boolean() + { + } + } + + public partial class Color + { + + // aapt resource value: 0x7f08004c + public const int abc_background_cache_hint_selector_material_dark = 2131230796; + + // aapt resource value: 0x7f08004d + public const int abc_background_cache_hint_selector_material_light = 2131230797; + + // aapt resource value: 0x7f08004e + public const int abc_color_highlight_material = 2131230798; + + // aapt resource value: 0x7f080004 + public const int abc_input_method_navigation_guard = 2131230724; + + // aapt resource value: 0x7f08004f + public const int abc_primary_text_disable_only_material_dark = 2131230799; + + // aapt resource value: 0x7f080050 + public const int abc_primary_text_disable_only_material_light = 2131230800; + + // aapt resource value: 0x7f080051 + public const int abc_primary_text_material_dark = 2131230801; + + // aapt resource value: 0x7f080052 + public const int abc_primary_text_material_light = 2131230802; + + // aapt resource value: 0x7f080053 + public const int abc_search_url_text = 2131230803; + + // aapt resource value: 0x7f080005 + public const int abc_search_url_text_normal = 2131230725; + + // aapt resource value: 0x7f080006 + public const int abc_search_url_text_pressed = 2131230726; + + // aapt resource value: 0x7f080007 + public const int abc_search_url_text_selected = 2131230727; + + // aapt resource value: 0x7f080054 + public const int abc_secondary_text_material_dark = 2131230804; + + // aapt resource value: 0x7f080055 + public const int abc_secondary_text_material_light = 2131230805; + + // aapt resource value: 0x7f08004a + public const int accent = 2131230794; + + // aapt resource value: 0x7f080008 + public const int accent_material_dark = 2131230728; + + // aapt resource value: 0x7f080009 + public const int accent_material_light = 2131230729; + + // aapt resource value: 0x7f08000a + public const int background_floating_material_dark = 2131230730; + + // aapt resource value: 0x7f08000b + public const int background_floating_material_light = 2131230731; + + // aapt resource value: 0x7f08000c + public const int background_material_dark = 2131230732; + + // aapt resource value: 0x7f08000d + public const int background_material_light = 2131230733; + + // aapt resource value: 0x7f08000e + public const int bright_foreground_disabled_material_dark = 2131230734; + + // aapt resource value: 0x7f08000f + public const int bright_foreground_disabled_material_light = 2131230735; + + // aapt resource value: 0x7f080010 + public const int bright_foreground_inverse_material_dark = 2131230736; + + // aapt resource value: 0x7f080011 + public const int bright_foreground_inverse_material_light = 2131230737; + + // aapt resource value: 0x7f080012 + public const int bright_foreground_material_dark = 2131230738; + + // aapt resource value: 0x7f080013 + public const int bright_foreground_material_light = 2131230739; + + // aapt resource value: 0x7f080014 + public const int button_material_dark = 2131230740; + + // aapt resource value: 0x7f080015 + public const int button_material_light = 2131230741; + + // aapt resource value: 0x7f080000 + public const int cardview_dark_background = 2131230720; + + // aapt resource value: 0x7f080001 + public const int cardview_light_background = 2131230721; + + // aapt resource value: 0x7f080002 + public const int cardview_shadow_end_color = 2131230722; + + // aapt resource value: 0x7f080003 + public const int cardview_shadow_start_color = 2131230723; + + // aapt resource value: 0x7f08003e + public const int design_fab_shadow_end_color = 2131230782; + + // aapt resource value: 0x7f08003f + public const int design_fab_shadow_mid_color = 2131230783; + + // aapt resource value: 0x7f080040 + public const int design_fab_shadow_start_color = 2131230784; + + // aapt resource value: 0x7f080041 + public const int design_fab_stroke_end_inner_color = 2131230785; + + // aapt resource value: 0x7f080042 + public const int design_fab_stroke_end_outer_color = 2131230786; + + // aapt resource value: 0x7f080043 + public const int design_fab_stroke_top_inner_color = 2131230787; + + // aapt resource value: 0x7f080044 + public const int design_fab_stroke_top_outer_color = 2131230788; + + // aapt resource value: 0x7f080045 + public const int design_snackbar_background_color = 2131230789; + + // aapt resource value: 0x7f080046 + public const int design_textinput_error_color_dark = 2131230790; + + // aapt resource value: 0x7f080047 + public const int design_textinput_error_color_light = 2131230791; + + // aapt resource value: 0x7f080016 + public const int dim_foreground_disabled_material_dark = 2131230742; + + // aapt resource value: 0x7f080017 + public const int dim_foreground_disabled_material_light = 2131230743; + + // aapt resource value: 0x7f080018 + public const int dim_foreground_material_dark = 2131230744; + + // aapt resource value: 0x7f080019 + public const int dim_foreground_material_light = 2131230745; + + // aapt resource value: 0x7f08001a + public const int foreground_material_dark = 2131230746; + + // aapt resource value: 0x7f08001b + public const int foreground_material_light = 2131230747; + + // aapt resource value: 0x7f08001c + public const int highlighted_text_material_dark = 2131230748; + + // aapt resource value: 0x7f08001d + public const int highlighted_text_material_light = 2131230749; + + // aapt resource value: 0x7f08001e + public const int hint_foreground_material_dark = 2131230750; + + // aapt resource value: 0x7f08001f + public const int hint_foreground_material_light = 2131230751; + + // aapt resource value: 0x7f080020 + public const int material_blue_grey_800 = 2131230752; + + // aapt resource value: 0x7f080021 + public const int material_blue_grey_900 = 2131230753; + + // aapt resource value: 0x7f080022 + public const int material_blue_grey_950 = 2131230754; + + // aapt resource value: 0x7f080023 + public const int material_deep_teal_200 = 2131230755; + + // aapt resource value: 0x7f080024 + public const int material_deep_teal_500 = 2131230756; + + // aapt resource value: 0x7f080025 + public const int material_grey_100 = 2131230757; + + // aapt resource value: 0x7f080026 + public const int material_grey_300 = 2131230758; + + // aapt resource value: 0x7f080027 + public const int material_grey_50 = 2131230759; + + // aapt resource value: 0x7f080028 + public const int material_grey_600 = 2131230760; + + // aapt resource value: 0x7f080029 + public const int material_grey_800 = 2131230761; + + // aapt resource value: 0x7f08002a + public const int material_grey_850 = 2131230762; + + // aapt resource value: 0x7f08002b + public const int material_grey_900 = 2131230763; + + // aapt resource value: 0x7f080048 + public const int primary = 2131230792; + + // aapt resource value: 0x7f080049 + public const int primaryDark = 2131230793; + + // aapt resource value: 0x7f08002c + public const int primary_dark_material_dark = 2131230764; + + // aapt resource value: 0x7f08002d + public const int primary_dark_material_light = 2131230765; + + // aapt resource value: 0x7f08002e + public const int primary_material_dark = 2131230766; + + // aapt resource value: 0x7f08002f + public const int primary_material_light = 2131230767; + + // aapt resource value: 0x7f080030 + public const int primary_text_default_material_dark = 2131230768; + + // aapt resource value: 0x7f080031 + public const int primary_text_default_material_light = 2131230769; + + // aapt resource value: 0x7f080032 + public const int primary_text_disabled_material_dark = 2131230770; + + // aapt resource value: 0x7f080033 + public const int primary_text_disabled_material_light = 2131230771; + + // aapt resource value: 0x7f080034 + public const int ripple_material_dark = 2131230772; + + // aapt resource value: 0x7f080035 + public const int ripple_material_light = 2131230773; + + // aapt resource value: 0x7f080036 + public const int secondary_text_default_material_dark = 2131230774; + + // aapt resource value: 0x7f080037 + public const int secondary_text_default_material_light = 2131230775; + + // aapt resource value: 0x7f080038 + public const int secondary_text_disabled_material_dark = 2131230776; + + // aapt resource value: 0x7f080039 + public const int secondary_text_disabled_material_light = 2131230777; + + // aapt resource value: 0x7f08003a + public const int switch_thumb_disabled_material_dark = 2131230778; + + // aapt resource value: 0x7f08003b + public const int switch_thumb_disabled_material_light = 2131230779; + + // aapt resource value: 0x7f080056 + public const int switch_thumb_material_dark = 2131230806; + + // aapt resource value: 0x7f080057 + public const int switch_thumb_material_light = 2131230807; + + // aapt resource value: 0x7f08003c + public const int switch_thumb_normal_material_dark = 2131230780; + + // aapt resource value: 0x7f08003d + public const int switch_thumb_normal_material_light = 2131230781; + + // aapt resource value: 0x7f08004b + public const int window_background = 2131230795; + + static Color() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Color() + { + } + } + + public partial class Dimension + { + + // aapt resource value: 0x7f050013 + public const int abc_action_bar_content_inset_material = 2131034131; + + // aapt resource value: 0x7f050007 + public const int abc_action_bar_default_height_material = 2131034119; + + // aapt resource value: 0x7f050014 + public const int abc_action_bar_default_padding_end_material = 2131034132; + + // aapt resource value: 0x7f050015 + public const int abc_action_bar_default_padding_start_material = 2131034133; + + // aapt resource value: 0x7f050017 + public const int abc_action_bar_icon_vertical_padding_material = 2131034135; + + // aapt resource value: 0x7f050018 + public const int abc_action_bar_overflow_padding_end_material = 2131034136; + + // aapt resource value: 0x7f050019 + public const int abc_action_bar_overflow_padding_start_material = 2131034137; + + // aapt resource value: 0x7f050008 + public const int abc_action_bar_progress_bar_size = 2131034120; + + // aapt resource value: 0x7f05001a + public const int abc_action_bar_stacked_max_height = 2131034138; + + // aapt resource value: 0x7f05001b + public const int abc_action_bar_stacked_tab_max_width = 2131034139; + + // aapt resource value: 0x7f05001c + public const int abc_action_bar_subtitle_bottom_margin_material = 2131034140; + + // aapt resource value: 0x7f05001d + public const int abc_action_bar_subtitle_top_margin_material = 2131034141; + + // aapt resource value: 0x7f05001e + public const int abc_action_button_min_height_material = 2131034142; + + // aapt resource value: 0x7f05001f + public const int abc_action_button_min_width_material = 2131034143; + + // aapt resource value: 0x7f050020 + public const int abc_action_button_min_width_overflow_material = 2131034144; + + // aapt resource value: 0x7f050006 + public const int abc_alert_dialog_button_bar_height = 2131034118; + + // aapt resource value: 0x7f050021 + public const int abc_button_inset_horizontal_material = 2131034145; + + // aapt resource value: 0x7f050022 + public const int abc_button_inset_vertical_material = 2131034146; + + // aapt resource value: 0x7f050023 + public const int abc_button_padding_horizontal_material = 2131034147; + + // aapt resource value: 0x7f050024 + public const int abc_button_padding_vertical_material = 2131034148; + + // aapt resource value: 0x7f05000b + public const int abc_config_prefDialogWidth = 2131034123; + + // aapt resource value: 0x7f050025 + public const int abc_control_corner_material = 2131034149; + + // aapt resource value: 0x7f050026 + public const int abc_control_inset_material = 2131034150; + + // aapt resource value: 0x7f050027 + public const int abc_control_padding_material = 2131034151; + + // aapt resource value: 0x7f05000c + public const int abc_dialog_fixed_height_major = 2131034124; + + // aapt resource value: 0x7f05000d + public const int abc_dialog_fixed_height_minor = 2131034125; + + // aapt resource value: 0x7f05000e + public const int abc_dialog_fixed_width_major = 2131034126; + + // aapt resource value: 0x7f05000f + public const int abc_dialog_fixed_width_minor = 2131034127; + + // aapt resource value: 0x7f050028 + public const int abc_dialog_list_padding_vertical_material = 2131034152; + + // aapt resource value: 0x7f050010 + public const int abc_dialog_min_width_major = 2131034128; + + // aapt resource value: 0x7f050011 + public const int abc_dialog_min_width_minor = 2131034129; + + // aapt resource value: 0x7f050029 + public const int abc_dialog_padding_material = 2131034153; + + // aapt resource value: 0x7f05002a + public const int abc_dialog_padding_top_material = 2131034154; + + // aapt resource value: 0x7f05002b + public const int abc_disabled_alpha_material_dark = 2131034155; + + // aapt resource value: 0x7f05002c + public const int abc_disabled_alpha_material_light = 2131034156; + + // aapt resource value: 0x7f05002d + public const int abc_dropdownitem_icon_width = 2131034157; + + // aapt resource value: 0x7f05002e + public const int abc_dropdownitem_text_padding_left = 2131034158; + + // aapt resource value: 0x7f05002f + public const int abc_dropdownitem_text_padding_right = 2131034159; + + // aapt resource value: 0x7f050030 + public const int abc_edit_text_inset_bottom_material = 2131034160; + + // aapt resource value: 0x7f050031 + public const int abc_edit_text_inset_horizontal_material = 2131034161; + + // aapt resource value: 0x7f050032 + public const int abc_edit_text_inset_top_material = 2131034162; + + // aapt resource value: 0x7f050033 + public const int abc_floating_window_z = 2131034163; + + // aapt resource value: 0x7f050034 + public const int abc_list_item_padding_horizontal_material = 2131034164; + + // aapt resource value: 0x7f050035 + public const int abc_panel_menu_list_width = 2131034165; + + // aapt resource value: 0x7f050036 + public const int abc_search_view_preferred_width = 2131034166; + + // aapt resource value: 0x7f050012 + public const int abc_search_view_text_min_width = 2131034130; + + // aapt resource value: 0x7f050037 + public const int abc_seekbar_track_background_height_material = 2131034167; + + // aapt resource value: 0x7f050038 + public const int abc_seekbar_track_progress_height_material = 2131034168; + + // aapt resource value: 0x7f050039 + public const int abc_select_dialog_padding_start_material = 2131034169; + + // aapt resource value: 0x7f050016 + public const int abc_switch_padding = 2131034134; + + // aapt resource value: 0x7f05003a + public const int abc_text_size_body_1_material = 2131034170; + + // aapt resource value: 0x7f05003b + public const int abc_text_size_body_2_material = 2131034171; + + // aapt resource value: 0x7f05003c + public const int abc_text_size_button_material = 2131034172; + + // aapt resource value: 0x7f05003d + public const int abc_text_size_caption_material = 2131034173; + + // aapt resource value: 0x7f05003e + public const int abc_text_size_display_1_material = 2131034174; + + // aapt resource value: 0x7f05003f + public const int abc_text_size_display_2_material = 2131034175; + + // aapt resource value: 0x7f050040 + public const int abc_text_size_display_3_material = 2131034176; + + // aapt resource value: 0x7f050041 + public const int abc_text_size_display_4_material = 2131034177; + + // aapt resource value: 0x7f050042 + public const int abc_text_size_headline_material = 2131034178; + + // aapt resource value: 0x7f050043 + public const int abc_text_size_large_material = 2131034179; + + // aapt resource value: 0x7f050044 + public const int abc_text_size_medium_material = 2131034180; + + // aapt resource value: 0x7f050045 + public const int abc_text_size_menu_material = 2131034181; + + // aapt resource value: 0x7f050046 + public const int abc_text_size_small_material = 2131034182; + + // aapt resource value: 0x7f050047 + public const int abc_text_size_subhead_material = 2131034183; + + // aapt resource value: 0x7f050009 + public const int abc_text_size_subtitle_material_toolbar = 2131034121; + + // aapt resource value: 0x7f050048 + public const int abc_text_size_title_material = 2131034184; + + // aapt resource value: 0x7f05000a + public const int abc_text_size_title_material_toolbar = 2131034122; + + // aapt resource value: 0x7f050072 + public const int card_margin = 2131034226; + + // aapt resource value: 0x7f050003 + public const int cardview_compat_inset_shadow = 2131034115; + + // aapt resource value: 0x7f050004 + public const int cardview_default_elevation = 2131034116; + + // aapt resource value: 0x7f050005 + public const int cardview_default_radius = 2131034117; + + // aapt resource value: 0x7f050059 + public const int design_appbar_elevation = 2131034201; + + // aapt resource value: 0x7f05005a + public const int design_bottom_sheet_modal_elevation = 2131034202; + + // aapt resource value: 0x7f05005b + public const int design_bottom_sheet_modal_peek_height = 2131034203; + + // aapt resource value: 0x7f05005c + public const int design_fab_border_width = 2131034204; + + // aapt resource value: 0x7f05005d + public const int design_fab_elevation = 2131034205; + + // aapt resource value: 0x7f05005e + public const int design_fab_image_size = 2131034206; + + // aapt resource value: 0x7f05005f + public const int design_fab_size_mini = 2131034207; + + // aapt resource value: 0x7f050060 + public const int design_fab_size_normal = 2131034208; + + // aapt resource value: 0x7f050061 + public const int design_fab_translation_z_pressed = 2131034209; + + // aapt resource value: 0x7f050062 + public const int design_navigation_elevation = 2131034210; + + // aapt resource value: 0x7f050063 + public const int design_navigation_icon_padding = 2131034211; + + // aapt resource value: 0x7f050064 + public const int design_navigation_icon_size = 2131034212; + + // aapt resource value: 0x7f050051 + public const int design_navigation_max_width = 2131034193; + + // aapt resource value: 0x7f050065 + public const int design_navigation_padding_bottom = 2131034213; + + // aapt resource value: 0x7f050066 + public const int design_navigation_separator_vertical_padding = 2131034214; + + // aapt resource value: 0x7f050052 + public const int design_snackbar_action_inline_max_width = 2131034194; + + // aapt resource value: 0x7f050053 + public const int design_snackbar_background_corner_radius = 2131034195; + + // aapt resource value: 0x7f050067 + public const int design_snackbar_elevation = 2131034215; + + // aapt resource value: 0x7f050054 + public const int design_snackbar_extra_spacing_horizontal = 2131034196; + + // aapt resource value: 0x7f050055 + public const int design_snackbar_max_width = 2131034197; + + // aapt resource value: 0x7f050056 + public const int design_snackbar_min_width = 2131034198; + + // aapt resource value: 0x7f050068 + public const int design_snackbar_padding_horizontal = 2131034216; + + // aapt resource value: 0x7f050069 + public const int design_snackbar_padding_vertical = 2131034217; + + // aapt resource value: 0x7f050057 + public const int design_snackbar_padding_vertical_2lines = 2131034199; + + // aapt resource value: 0x7f05006a + public const int design_snackbar_text_size = 2131034218; + + // aapt resource value: 0x7f05006b + public const int design_tab_max_width = 2131034219; + + // aapt resource value: 0x7f050058 + public const int design_tab_scrollable_min_width = 2131034200; + + // aapt resource value: 0x7f05006c + public const int design_tab_text_size = 2131034220; + + // aapt resource value: 0x7f05006d + public const int design_tab_text_size_2line = 2131034221; + + // aapt resource value: 0x7f050049 + public const int disabled_alpha_material_dark = 2131034185; + + // aapt resource value: 0x7f05004a + public const int disabled_alpha_material_light = 2131034186; + + // aapt resource value: 0x7f050073 + public const int fab_margin = 2131034227; + + // aapt resource value: 0x7f05004b + public const int highlight_alpha_material_colored = 2131034187; + + // aapt resource value: 0x7f05004c + public const int highlight_alpha_material_dark = 2131034188; + + // aapt resource value: 0x7f05004d + public const int highlight_alpha_material_light = 2131034189; + + // aapt resource value: 0x7f050071 + public const int image_size = 2131034225; + + // aapt resource value: 0x7f050000 + public const int item_touch_helper_max_drag_scroll_per_frame = 2131034112; + + // aapt resource value: 0x7f050001 + public const int item_touch_helper_swipe_escape_max_velocity = 2131034113; + + // aapt resource value: 0x7f050002 + public const int item_touch_helper_swipe_escape_velocity = 2131034114; + + // aapt resource value: 0x7f05004e + public const int notification_large_icon_height = 2131034190; + + // aapt resource value: 0x7f05004f + public const int notification_large_icon_width = 2131034191; + + // aapt resource value: 0x7f050050 + public const int notification_subtext_size = 2131034192; + + // aapt resource value: 0x7f05006f + public const int small_margin = 2131034223; + + // aapt resource value: 0x7f05006e + public const int standard_margin = 2131034222; + + // aapt resource value: 0x7f050070 + public const int tiny_margin = 2131034224; + + static Dimension() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Dimension() + { + } + } + + public partial class Drawable + { + + // aapt resource value: 0x7f020000 + public const int abc_ab_share_pack_mtrl_alpha = 2130837504; + + // aapt resource value: 0x7f020001 + public const int abc_action_bar_item_background_material = 2130837505; + + // aapt resource value: 0x7f020002 + public const int abc_btn_borderless_material = 2130837506; + + // aapt resource value: 0x7f020003 + public const int abc_btn_check_material = 2130837507; + + // aapt resource value: 0x7f020004 + public const int abc_btn_check_to_on_mtrl_000 = 2130837508; + + // aapt resource value: 0x7f020005 + public const int abc_btn_check_to_on_mtrl_015 = 2130837509; + + // aapt resource value: 0x7f020006 + public const int abc_btn_colored_material = 2130837510; + + // aapt resource value: 0x7f020007 + public const int abc_btn_default_mtrl_shape = 2130837511; + + // aapt resource value: 0x7f020008 + public const int abc_btn_radio_material = 2130837512; + + // aapt resource value: 0x7f020009 + public const int abc_btn_radio_to_on_mtrl_000 = 2130837513; + + // aapt resource value: 0x7f02000a + public const int abc_btn_radio_to_on_mtrl_015 = 2130837514; + + // aapt resource value: 0x7f02000b + public const int abc_btn_rating_star_off_mtrl_alpha = 2130837515; + + // aapt resource value: 0x7f02000c + public const int abc_btn_rating_star_on_mtrl_alpha = 2130837516; + + // aapt resource value: 0x7f02000d + public const int abc_btn_switch_to_on_mtrl_00001 = 2130837517; + + // aapt resource value: 0x7f02000e + public const int abc_btn_switch_to_on_mtrl_00012 = 2130837518; + + // aapt resource value: 0x7f02000f + public const int abc_cab_background_internal_bg = 2130837519; + + // aapt resource value: 0x7f020010 + public const int abc_cab_background_top_material = 2130837520; + + // aapt resource value: 0x7f020011 + public const int abc_cab_background_top_mtrl_alpha = 2130837521; + + // aapt resource value: 0x7f020012 + public const int abc_control_background_material = 2130837522; + + // aapt resource value: 0x7f020013 + public const int abc_dialog_material_background_dark = 2130837523; + + // aapt resource value: 0x7f020014 + public const int abc_dialog_material_background_light = 2130837524; + + // aapt resource value: 0x7f020015 + public const int abc_edit_text_material = 2130837525; + + // aapt resource value: 0x7f020016 + public const int abc_ic_ab_back_mtrl_am_alpha = 2130837526; + + // aapt resource value: 0x7f020017 + public const int abc_ic_clear_mtrl_alpha = 2130837527; + + // aapt resource value: 0x7f020018 + public const int abc_ic_commit_search_api_mtrl_alpha = 2130837528; + + // aapt resource value: 0x7f020019 + public const int abc_ic_go_search_api_mtrl_alpha = 2130837529; + + // aapt resource value: 0x7f02001a + public const int abc_ic_menu_copy_mtrl_am_alpha = 2130837530; + + // aapt resource value: 0x7f02001b + public const int abc_ic_menu_cut_mtrl_alpha = 2130837531; + + // aapt resource value: 0x7f02001c + public const int abc_ic_menu_moreoverflow_mtrl_alpha = 2130837532; + + // aapt resource value: 0x7f02001d + public const int abc_ic_menu_paste_mtrl_am_alpha = 2130837533; + + // aapt resource value: 0x7f02001e + public const int abc_ic_menu_selectall_mtrl_alpha = 2130837534; + + // aapt resource value: 0x7f02001f + public const int abc_ic_menu_share_mtrl_alpha = 2130837535; + + // aapt resource value: 0x7f020020 + public const int abc_ic_search_api_mtrl_alpha = 2130837536; + + // aapt resource value: 0x7f020021 + public const int abc_ic_star_black_16dp = 2130837537; + + // aapt resource value: 0x7f020022 + public const int abc_ic_star_black_36dp = 2130837538; + + // aapt resource value: 0x7f020023 + public const int abc_ic_star_half_black_16dp = 2130837539; + + // aapt resource value: 0x7f020024 + public const int abc_ic_star_half_black_36dp = 2130837540; + + // aapt resource value: 0x7f020025 + public const int abc_ic_voice_search_api_mtrl_alpha = 2130837541; + + // aapt resource value: 0x7f020026 + public const int abc_item_background_holo_dark = 2130837542; + + // aapt resource value: 0x7f020027 + public const int abc_item_background_holo_light = 2130837543; + + // aapt resource value: 0x7f020028 + public const int abc_list_divider_mtrl_alpha = 2130837544; + + // aapt resource value: 0x7f020029 + public const int abc_list_focused_holo = 2130837545; + + // aapt resource value: 0x7f02002a + public const int abc_list_longpressed_holo = 2130837546; + + // aapt resource value: 0x7f02002b + public const int abc_list_pressed_holo_dark = 2130837547; + + // aapt resource value: 0x7f02002c + public const int abc_list_pressed_holo_light = 2130837548; + + // aapt resource value: 0x7f02002d + public const int abc_list_selector_background_transition_holo_dark = 2130837549; + + // aapt resource value: 0x7f02002e + public const int abc_list_selector_background_transition_holo_light = 2130837550; + + // aapt resource value: 0x7f02002f + public const int abc_list_selector_disabled_holo_dark = 2130837551; + + // aapt resource value: 0x7f020030 + public const int abc_list_selector_disabled_holo_light = 2130837552; + + // aapt resource value: 0x7f020031 + public const int abc_list_selector_holo_dark = 2130837553; + + // aapt resource value: 0x7f020032 + public const int abc_list_selector_holo_light = 2130837554; + + // aapt resource value: 0x7f020033 + public const int abc_menu_hardkey_panel_mtrl_mult = 2130837555; + + // aapt resource value: 0x7f020034 + public const int abc_popup_background_mtrl_mult = 2130837556; + + // aapt resource value: 0x7f020035 + public const int abc_ratingbar_full_material = 2130837557; + + // aapt resource value: 0x7f020036 + public const int abc_ratingbar_indicator_material = 2130837558; + + // aapt resource value: 0x7f020037 + public const int abc_ratingbar_small_material = 2130837559; + + // aapt resource value: 0x7f020038 + public const int abc_scrubber_control_off_mtrl_alpha = 2130837560; + + // aapt resource value: 0x7f020039 + public const int abc_scrubber_control_to_pressed_mtrl_000 = 2130837561; + + // aapt resource value: 0x7f02003a + public const int abc_scrubber_control_to_pressed_mtrl_005 = 2130837562; + + // aapt resource value: 0x7f02003b + public const int abc_scrubber_primary_mtrl_alpha = 2130837563; + + // aapt resource value: 0x7f02003c + public const int abc_scrubber_track_mtrl_alpha = 2130837564; + + // aapt resource value: 0x7f02003d + public const int abc_seekbar_thumb_material = 2130837565; + + // aapt resource value: 0x7f02003e + public const int abc_seekbar_track_material = 2130837566; + + // aapt resource value: 0x7f02003f + public const int abc_spinner_mtrl_am_alpha = 2130837567; + + // aapt resource value: 0x7f020040 + public const int abc_spinner_textfield_background_material = 2130837568; + + // aapt resource value: 0x7f020041 + public const int abc_switch_thumb_material = 2130837569; + + // aapt resource value: 0x7f020042 + public const int abc_switch_track_mtrl_alpha = 2130837570; + + // aapt resource value: 0x7f020043 + public const int abc_tab_indicator_material = 2130837571; + + // aapt resource value: 0x7f020044 + public const int abc_tab_indicator_mtrl_alpha = 2130837572; + + // aapt resource value: 0x7f020045 + public const int abc_text_cursor_material = 2130837573; + + // aapt resource value: 0x7f020046 + public const int abc_textfield_activated_mtrl_alpha = 2130837574; + + // aapt resource value: 0x7f020047 + public const int abc_textfield_default_mtrl_alpha = 2130837575; + + // aapt resource value: 0x7f020048 + public const int abc_textfield_search_activated_mtrl_alpha = 2130837576; + + // aapt resource value: 0x7f020049 + public const int abc_textfield_search_default_mtrl_alpha = 2130837577; + + // aapt resource value: 0x7f02004a + public const int abc_textfield_search_material = 2130837578; + + // aapt resource value: 0x7f02004b + public const int background_splash = 2130837579; + + // aapt resource value: 0x7f02004c + public const int circle_background = 2130837580; + + // aapt resource value: 0x7f02004d + public const int design_fab_background = 2130837581; + + // aapt resource value: 0x7f02004e + public const int design_snackbar_background = 2130837582; + + // aapt resource value: 0x7f02004f + public const int heroplaceholder = 2130837583; + + // aapt resource value: 0x7f020050 + public const int ic_save = 2130837584; + + // aapt resource value: 0x7f020053 + public const int notification_template_icon_bg = 2130837587; + + // aapt resource value: 0x7f020051 + public const int profile_generic = 2130837585; + + // aapt resource value: 0x7f020052 + public const int xamarin_logo = 2130837586; + + static Drawable() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Drawable() + { + } + } + + public partial class Id + { + + // aapt resource value: 0x7f060076 + public const int action0 = 2131099766; + + // aapt resource value: 0x7f06005a + public const int action_bar = 2131099738; + + // aapt resource value: 0x7f060001 + public const int action_bar_activity_content = 2131099649; + + // aapt resource value: 0x7f060059 + public const int action_bar_container = 2131099737; + + // aapt resource value: 0x7f060055 + public const int action_bar_root = 2131099733; + + // aapt resource value: 0x7f060002 + public const int action_bar_spinner = 2131099650; + + // aapt resource value: 0x7f06003b + public const int action_bar_subtitle = 2131099707; + + // aapt resource value: 0x7f06003a + public const int action_bar_title = 2131099706; + + // aapt resource value: 0x7f06005b + public const int action_context_bar = 2131099739; + + // aapt resource value: 0x7f06007a + public const int action_divider = 2131099770; + + // aapt resource value: 0x7f060003 + public const int action_menu_divider = 2131099651; + + // aapt resource value: 0x7f060004 + public const int action_menu_presenter = 2131099652; + + // aapt resource value: 0x7f060057 + public const int action_mode_bar = 2131099735; + + // aapt resource value: 0x7f060056 + public const int action_mode_bar_stub = 2131099734; + + // aapt resource value: 0x7f06003c + public const int action_mode_close_button = 2131099708; + + // aapt resource value: 0x7f06003d + public const int activity_chooser_view_content = 2131099709; + + // aapt resource value: 0x7f060049 + public const int alertTitle = 2131099721; + + // aapt resource value: 0x7f06001e + public const int always = 2131099678; + + // aapt resource value: 0x7f06006a + public const int appbar = 2131099754; + + // aapt resource value: 0x7f06001b + public const int beginning = 2131099675; + + // aapt resource value: 0x7f06002a + public const int bottom = 2131099690; + + // aapt resource value: 0x7f060044 + public const int buttonPanel = 2131099716; + + // aapt resource value: 0x7f060077 + public const int cancel_action = 2131099767; + + // aapt resource value: 0x7f06002b + public const int center = 2131099691; + + // aapt resource value: 0x7f06002c + public const int center_horizontal = 2131099692; + + // aapt resource value: 0x7f06002d + public const int center_vertical = 2131099693; + + // aapt resource value: 0x7f060052 + public const int checkbox = 2131099730; + + // aapt resource value: 0x7f06007d + public const int chronometer = 2131099773; + + // aapt resource value: 0x7f060033 + public const int clip_horizontal = 2131099699; + + // aapt resource value: 0x7f060034 + public const int clip_vertical = 2131099700; + + // aapt resource value: 0x7f06001f + public const int collapseActionView = 2131099679; + + // aapt resource value: 0x7f06004a + public const int contentPanel = 2131099722; + + // aapt resource value: 0x7f060050 + public const int custom = 2131099728; + + // aapt resource value: 0x7f06004f + public const int customPanel = 2131099727; + + // aapt resource value: 0x7f060058 + public const int decor_content_parent = 2131099736; + + // aapt resource value: 0x7f060040 + public const int default_activity_button = 2131099712; + + // aapt resource value: 0x7f06006e + public const int design_bottom_sheet = 2131099758; + + // aapt resource value: 0x7f060075 + public const int design_menu_item_action_area = 2131099765; + + // aapt resource value: 0x7f060074 + public const int design_menu_item_action_area_stub = 2131099764; + + // aapt resource value: 0x7f060073 + public const int design_menu_item_text = 2131099763; + + // aapt resource value: 0x7f060072 + public const int design_navigation_view = 2131099762; + + // aapt resource value: 0x7f06000e + public const int disableHome = 2131099662; + + // aapt resource value: 0x7f06005c + public const int edit_query = 2131099740; + + // aapt resource value: 0x7f06001c + public const int end = 2131099676; + + // aapt resource value: 0x7f060082 + public const int end_padder = 2131099778; + + // aapt resource value: 0x7f060023 + public const int enterAlways = 2131099683; + + // aapt resource value: 0x7f060024 + public const int enterAlwaysCollapsed = 2131099684; + + // aapt resource value: 0x7f060025 + public const int exitUntilCollapsed = 2131099685; + + // aapt resource value: 0x7f06003e + public const int expand_activities_button = 2131099710; + + // aapt resource value: 0x7f060051 + public const int expanded_menu = 2131099729; + + // aapt resource value: 0x7f060035 + public const int fill = 2131099701; + + // aapt resource value: 0x7f060036 + public const int fill_horizontal = 2131099702; + + // aapt resource value: 0x7f06002e + public const int fill_vertical = 2131099694; + + // aapt resource value: 0x7f060038 + public const int @fixed = 2131099704; + + // aapt resource value: 0x7f060005 + public const int home = 2131099653; + + // aapt resource value: 0x7f06000f + public const int homeAsUp = 2131099663; + + // aapt resource value: 0x7f060042 + public const int icon = 2131099714; + + // aapt resource value: 0x7f060020 + public const int ifRoom = 2131099680; + + // aapt resource value: 0x7f06003f + public const int image = 2131099711; + + // aapt resource value: 0x7f060081 + public const int info = 2131099777; + + // aapt resource value: 0x7f060000 + public const int item_touch_helper_previous_elevation = 2131099648; + + // aapt resource value: 0x7f06002f + public const int left = 2131099695; + + // aapt resource value: 0x7f06007b + public const int line1 = 2131099771; + + // aapt resource value: 0x7f06007f + public const int line3 = 2131099775; + + // aapt resource value: 0x7f06000b + public const int listMode = 2131099659; + + // aapt resource value: 0x7f060041 + public const int list_item = 2131099713; + + // aapt resource value: 0x7f060069 + public const int main_content = 2131099753; + + // aapt resource value: 0x7f060079 + public const int media_actions = 2131099769; + + // aapt resource value: 0x7f060083 + public const int menu_edit = 2131099779; + + // aapt resource value: 0x7f06001d + public const int middle = 2131099677; + + // aapt resource value: 0x7f060037 + public const int mini = 2131099703; + + // aapt resource value: 0x7f060016 + public const int multiply = 2131099670; + + // aapt resource value: 0x7f060071 + public const int navigation_header_container = 2131099761; + + // aapt resource value: 0x7f060021 + public const int never = 2131099681; + + // aapt resource value: 0x7f060010 + public const int none = 2131099664; + + // aapt resource value: 0x7f06000c + public const int normal = 2131099660; + + // aapt resource value: 0x7f060028 + public const int parallax = 2131099688; + + // aapt resource value: 0x7f060046 + public const int parentPanel = 2131099718; + + // aapt resource value: 0x7f060029 + public const int pin = 2131099689; + + // aapt resource value: 0x7f060006 + public const int progress_circular = 2131099654; + + // aapt resource value: 0x7f060007 + public const int progress_horizontal = 2131099655; + + // aapt resource value: 0x7f060054 + public const int radio = 2131099732; + + // aapt resource value: 0x7f060030 + public const int right = 2131099696; + + // aapt resource value: 0x7f060017 + public const int screen = 2131099671; + + // aapt resource value: 0x7f060026 + public const int scroll = 2131099686; + + // aapt resource value: 0x7f06004e + public const int scrollIndicatorDown = 2131099726; + + // aapt resource value: 0x7f06004b + public const int scrollIndicatorUp = 2131099723; + + // aapt resource value: 0x7f06004c + public const int scrollView = 2131099724; + + // aapt resource value: 0x7f060039 + public const int scrollable = 2131099705; + + // aapt resource value: 0x7f06005e + public const int search_badge = 2131099742; + + // aapt resource value: 0x7f06005d + public const int search_bar = 2131099741; + + // aapt resource value: 0x7f06005f + public const int search_button = 2131099743; + + // aapt resource value: 0x7f060064 + public const int search_close_btn = 2131099748; + + // aapt resource value: 0x7f060060 + public const int search_edit_frame = 2131099744; + + // aapt resource value: 0x7f060066 + public const int search_go_btn = 2131099750; + + // aapt resource value: 0x7f060061 + public const int search_mag_icon = 2131099745; + + // aapt resource value: 0x7f060062 + public const int search_plate = 2131099746; + + // aapt resource value: 0x7f060063 + public const int search_src_text = 2131099747; + + // aapt resource value: 0x7f060067 + public const int search_voice_btn = 2131099751; + + // aapt resource value: 0x7f060068 + public const int select_dialog_listview = 2131099752; + + // aapt resource value: 0x7f060053 + public const int shortcut = 2131099731; + + // aapt resource value: 0x7f060011 + public const int showCustom = 2131099665; + + // aapt resource value: 0x7f060012 + public const int showHome = 2131099666; + + // aapt resource value: 0x7f060013 + public const int showTitle = 2131099667; + + // aapt resource value: 0x7f060070 + public const int snackbar_action = 2131099760; + + // aapt resource value: 0x7f06006f + public const int snackbar_text = 2131099759; + + // aapt resource value: 0x7f060027 + public const int snap = 2131099687; + + // aapt resource value: 0x7f060045 + public const int spacer = 2131099717; + + // aapt resource value: 0x7f060008 + public const int split_action_bar = 2131099656; + + // aapt resource value: 0x7f060018 + public const int src_atop = 2131099672; + + // aapt resource value: 0x7f060019 + public const int src_in = 2131099673; + + // aapt resource value: 0x7f06001a + public const int src_over = 2131099674; + + // aapt resource value: 0x7f060031 + public const int start = 2131099697; + + // aapt resource value: 0x7f060078 + public const int status_bar_latest_event_content = 2131099768; + + // aapt resource value: 0x7f060065 + public const int submit_area = 2131099749; + + // aapt resource value: 0x7f06000d + public const int tabMode = 2131099661; + + // aapt resource value: 0x7f060080 + public const int text = 2131099776; + + // aapt resource value: 0x7f06007e + public const int text2 = 2131099774; + + // aapt resource value: 0x7f06004d + public const int textSpacerNoButtons = 2131099725; + + // aapt resource value: 0x7f06007c + public const int time = 2131099772; + + // aapt resource value: 0x7f060043 + public const int title = 2131099715; + + // aapt resource value: 0x7f060048 + public const int title_template = 2131099720; + + // aapt resource value: 0x7f06006b + public const int toolbar = 2131099755; + + // aapt resource value: 0x7f060032 + public const int top = 2131099698; + + // aapt resource value: 0x7f060047 + public const int topPanel = 2131099719; + + // aapt resource value: 0x7f06006d + public const int touch_outside = 2131099757; + + // aapt resource value: 0x7f060009 + public const int up = 2131099657; + + // aapt resource value: 0x7f060014 + public const int useLogo = 2131099668; + + // aapt resource value: 0x7f06000a + public const int view_offset_helper = 2131099658; + + // aapt resource value: 0x7f06006c + public const int viewpager = 2131099756; + + // aapt resource value: 0x7f060022 + public const int withText = 2131099682; + + // aapt resource value: 0x7f060015 + public const int wrap_content = 2131099669; + + static Id() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Id() + { + } + } + + public partial class Integer + { + + // aapt resource value: 0x7f0b0001 + public const int abc_config_activityDefaultDur = 2131427329; + + // aapt resource value: 0x7f0b0002 + public const int abc_config_activityShortDur = 2131427330; + + // aapt resource value: 0x7f0b0000 + public const int abc_max_action_buttons = 2131427328; + + // aapt resource value: 0x7f0b0006 + public const int bottom_sheet_slide_duration = 2131427334; + + // aapt resource value: 0x7f0b0003 + public const int cancel_button_image_alpha = 2131427331; + + // aapt resource value: 0x7f0b0005 + public const int design_snackbar_text_max_lines = 2131427333; + + // aapt resource value: 0x7f0b0004 + public const int status_bar_notification_info_maxnum = 2131427332; + + static Integer() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Integer() + { + } + } + + public partial class Layout + { + + // aapt resource value: 0x7f030000 + public const int abc_action_bar_title_item = 2130903040; + + // aapt resource value: 0x7f030001 + public const int abc_action_bar_up_container = 2130903041; + + // aapt resource value: 0x7f030002 + public const int abc_action_bar_view_list_nav_layout = 2130903042; + + // aapt resource value: 0x7f030003 + public const int abc_action_menu_item_layout = 2130903043; + + // aapt resource value: 0x7f030004 + public const int abc_action_menu_layout = 2130903044; + + // aapt resource value: 0x7f030005 + public const int abc_action_mode_bar = 2130903045; + + // aapt resource value: 0x7f030006 + public const int abc_action_mode_close_item_material = 2130903046; + + // aapt resource value: 0x7f030007 + public const int abc_activity_chooser_view = 2130903047; + + // aapt resource value: 0x7f030008 + public const int abc_activity_chooser_view_list_item = 2130903048; + + // aapt resource value: 0x7f030009 + public const int abc_alert_dialog_button_bar_material = 2130903049; + + // aapt resource value: 0x7f03000a + public const int abc_alert_dialog_material = 2130903050; + + // aapt resource value: 0x7f03000b + public const int abc_dialog_title_material = 2130903051; + + // aapt resource value: 0x7f03000c + public const int abc_expanded_menu_layout = 2130903052; + + // aapt resource value: 0x7f03000d + public const int abc_list_menu_item_checkbox = 2130903053; + + // aapt resource value: 0x7f03000e + public const int abc_list_menu_item_icon = 2130903054; + + // aapt resource value: 0x7f03000f + public const int abc_list_menu_item_layout = 2130903055; + + // aapt resource value: 0x7f030010 + public const int abc_list_menu_item_radio = 2130903056; + + // aapt resource value: 0x7f030011 + public const int abc_popup_menu_item_layout = 2130903057; + + // aapt resource value: 0x7f030012 + public const int abc_screen_content_include = 2130903058; + + // aapt resource value: 0x7f030013 + public const int abc_screen_simple = 2130903059; + + // aapt resource value: 0x7f030014 + public const int abc_screen_simple_overlay_action_mode = 2130903060; + + // aapt resource value: 0x7f030015 + public const int abc_screen_toolbar = 2130903061; + + // aapt resource value: 0x7f030016 + public const int abc_search_dropdown_item_icons_2line = 2130903062; + + // aapt resource value: 0x7f030017 + public const int abc_search_view = 2130903063; + + // aapt resource value: 0x7f030018 + public const int abc_select_dialog_material = 2130903064; + + // aapt resource value: 0x7f030019 + public const int activity_main = 2130903065; + + // aapt resource value: 0x7f03001a + public const int design_bottom_sheet_dialog = 2130903066; + + // aapt resource value: 0x7f03001b + public const int design_layout_snackbar = 2130903067; + + // aapt resource value: 0x7f03001c + public const int design_layout_snackbar_include = 2130903068; + + // aapt resource value: 0x7f03001d + public const int design_layout_tab_icon = 2130903069; + + // aapt resource value: 0x7f03001e + public const int design_layout_tab_text = 2130903070; + + // aapt resource value: 0x7f03001f + public const int design_menu_item_action_area = 2130903071; + + // aapt resource value: 0x7f030020 + public const int design_navigation_item = 2130903072; + + // aapt resource value: 0x7f030021 + public const int design_navigation_item_header = 2130903073; + + // aapt resource value: 0x7f030022 + public const int design_navigation_item_separator = 2130903074; + + // aapt resource value: 0x7f030023 + public const int design_navigation_item_subheader = 2130903075; + + // aapt resource value: 0x7f030024 + public const int design_navigation_menu = 2130903076; + + // aapt resource value: 0x7f030025 + public const int design_navigation_menu_item = 2130903077; + + // aapt resource value: 0x7f030026 + public const int notification_media_action = 2130903078; + + // aapt resource value: 0x7f030027 + public const int notification_media_cancel_action = 2130903079; + + // aapt resource value: 0x7f030028 + public const int notification_template_big_media = 2130903080; + + // aapt resource value: 0x7f030029 + public const int notification_template_big_media_narrow = 2130903081; + + // aapt resource value: 0x7f03002a + public const int notification_template_lines = 2130903082; + + // aapt resource value: 0x7f03002b + public const int notification_template_media = 2130903083; + + // aapt resource value: 0x7f03002c + public const int notification_template_part_chronometer = 2130903084; + + // aapt resource value: 0x7f03002d + public const int notification_template_part_time = 2130903085; + + // aapt resource value: 0x7f03002e + public const int select_dialog_item_material = 2130903086; + + // aapt resource value: 0x7f03002f + public const int select_dialog_multichoice_material = 2130903087; + + // aapt resource value: 0x7f030030 + public const int select_dialog_singlechoice_material = 2130903088; + + // aapt resource value: 0x7f030031 + public const int support_simple_spinner_dropdown_item = 2130903089; + + static Layout() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Layout() + { + } + } + + public partial class Menu + { + + // aapt resource value: 0x7f0d0000 + public const int top_menus = 2131558400; + + static Menu() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Menu() + { + } + } + + public partial class String + { + + // aapt resource value: 0x7f090000 + public const int abc_action_bar_home_description = 2131296256; + + // aapt resource value: 0x7f090001 + public const int abc_action_bar_home_description_format = 2131296257; + + // aapt resource value: 0x7f090002 + public const int abc_action_bar_home_subtitle_description_format = 2131296258; + + // aapt resource value: 0x7f090003 + public const int abc_action_bar_up_description = 2131296259; + + // aapt resource value: 0x7f090004 + public const int abc_action_menu_overflow_description = 2131296260; + + // aapt resource value: 0x7f090005 + public const int abc_action_mode_done = 2131296261; + + // aapt resource value: 0x7f090006 + public const int abc_activity_chooser_view_see_all = 2131296262; + + // aapt resource value: 0x7f090007 + public const int abc_activitychooserview_choose_application = 2131296263; + + // aapt resource value: 0x7f090008 + public const int abc_capital_off = 2131296264; + + // aapt resource value: 0x7f090009 + public const int abc_capital_on = 2131296265; + + // aapt resource value: 0x7f09000a + public const int abc_search_hint = 2131296266; + + // aapt resource value: 0x7f09000b + public const int abc_searchview_description_clear = 2131296267; + + // aapt resource value: 0x7f09000c + public const int abc_searchview_description_query = 2131296268; + + // aapt resource value: 0x7f09000d + public const int abc_searchview_description_search = 2131296269; + + // aapt resource value: 0x7f09000e + public const int abc_searchview_description_submit = 2131296270; + + // aapt resource value: 0x7f09000f + public const int abc_searchview_description_voice = 2131296271; + + // aapt resource value: 0x7f090010 + public const int abc_shareactionprovider_share_with = 2131296272; + + // aapt resource value: 0x7f090011 + public const int abc_shareactionprovider_share_with_application = 2131296273; + + // aapt resource value: 0x7f090012 + public const int abc_toolbar_collapse_description = 2131296274; + + // aapt resource value: 0x7f090028 + public const int app_description = 2131296296; + + // aapt resource value: 0x7f090018 + public const int app_name = 2131296280; + + // aapt resource value: 0x7f090014 + public const int appbar_scrolling_view_behavior = 2131296276; + + // aapt resource value: 0x7f090015 + public const int bottom_sheet_behavior = 2131296277; + + // aapt resource value: 0x7f090016 + public const int character_counter_pattern = 2131296278; + + // aapt resource value: 0x7f090021 + public const int description = 2131296289; + + // aapt resource value: 0x7f090017 + public const int hello = 2131296279; + + // aapt resource value: 0x7f090027 + public const int hint_description = 2131296295; + + // aapt resource value: 0x7f090025 + public const int hint_name = 2131296293; + + // aapt resource value: 0x7f090026 + public const int info = 2131296294; + + // aapt resource value: 0x7f090020 + public const int learn_more = 2131296288; + + // aapt resource value: 0x7f09001f + public const int login = 2131296287; + + // aapt resource value: 0x7f09001c + public const int notnow = 2131296284; + + // aapt resource value: 0x7f090024 + public const int quantity = 2131296292; + + // aapt resource value: 0x7f090029 + public const int sign_in_text = 2131296297; + + // aapt resource value: 0x7f09001b + public const int signin = 2131296283; + + // aapt resource value: 0x7f09001d + public const int signing_in = 2131296285; + + // aapt resource value: 0x7f090013 + public const int status_bar_notification_info_overflow = 2131296275; + + // aapt resource value: 0x7f090019 + public const int tab1 = 2131296281; + + // aapt resource value: 0x7f09001a + public const int tab2 = 2131296282; + + // aapt resource value: 0x7f090023 + public const int text = 2131296291; + + // aapt resource value: 0x7f090022 + public const int title = 2131296290; + + // aapt resource value: 0x7f09001e + public const int version_number = 2131296286; + + static String() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private String() + { + } + } + + public partial class Style + { + + // aapt resource value: 0x7f07008a + public const int AlertDialog_AppCompat = 2131165322; + + // aapt resource value: 0x7f07008b + public const int AlertDialog_AppCompat_Light = 2131165323; + + // aapt resource value: 0x7f07008c + public const int Animation_AppCompat_Dialog = 2131165324; + + // aapt resource value: 0x7f07008d + public const int Animation_AppCompat_DropDownUp = 2131165325; + + // aapt resource value: 0x7f070143 + public const int Animation_Design_BottomSheetDialog = 2131165507; + + // aapt resource value: 0x7f07008e + public const int Base_AlertDialog_AppCompat = 2131165326; + + // aapt resource value: 0x7f07008f + public const int Base_AlertDialog_AppCompat_Light = 2131165327; + + // aapt resource value: 0x7f070090 + public const int Base_Animation_AppCompat_Dialog = 2131165328; + + // aapt resource value: 0x7f070091 + public const int Base_Animation_AppCompat_DropDownUp = 2131165329; + + // aapt resource value: 0x7f070001 + public const int Base_CardView = 2131165185; + + // aapt resource value: 0x7f070092 + public const int Base_DialogWindowTitle_AppCompat = 2131165330; + + // aapt resource value: 0x7f070093 + public const int Base_DialogWindowTitleBackground_AppCompat = 2131165331; + + // aapt resource value: 0x7f07003a + public const int Base_TextAppearance_AppCompat = 2131165242; + + // aapt resource value: 0x7f07003b + public const int Base_TextAppearance_AppCompat_Body1 = 2131165243; + + // aapt resource value: 0x7f07003c + public const int Base_TextAppearance_AppCompat_Body2 = 2131165244; + + // aapt resource value: 0x7f070024 + public const int Base_TextAppearance_AppCompat_Button = 2131165220; + + // aapt resource value: 0x7f07003d + public const int Base_TextAppearance_AppCompat_Caption = 2131165245; + + // aapt resource value: 0x7f07003e + public const int Base_TextAppearance_AppCompat_Display1 = 2131165246; + + // aapt resource value: 0x7f07003f + public const int Base_TextAppearance_AppCompat_Display2 = 2131165247; + + // aapt resource value: 0x7f070040 + public const int Base_TextAppearance_AppCompat_Display3 = 2131165248; + + // aapt resource value: 0x7f070041 + public const int Base_TextAppearance_AppCompat_Display4 = 2131165249; + + // aapt resource value: 0x7f070042 + public const int Base_TextAppearance_AppCompat_Headline = 2131165250; + + // aapt resource value: 0x7f07000f + public const int Base_TextAppearance_AppCompat_Inverse = 2131165199; + + // aapt resource value: 0x7f070043 + public const int Base_TextAppearance_AppCompat_Large = 2131165251; + + // aapt resource value: 0x7f070010 + public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131165200; + + // aapt resource value: 0x7f070044 + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131165252; + + // aapt resource value: 0x7f070045 + public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131165253; + + // aapt resource value: 0x7f070046 + public const int Base_TextAppearance_AppCompat_Medium = 2131165254; + + // aapt resource value: 0x7f070011 + public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131165201; + + // aapt resource value: 0x7f070047 + public const int Base_TextAppearance_AppCompat_Menu = 2131165255; + + // aapt resource value: 0x7f070094 + public const int Base_TextAppearance_AppCompat_SearchResult = 2131165332; + + // aapt resource value: 0x7f070048 + public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131165256; + + // aapt resource value: 0x7f070049 + public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131165257; + + // aapt resource value: 0x7f07004a + public const int Base_TextAppearance_AppCompat_Small = 2131165258; + + // aapt resource value: 0x7f070012 + public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131165202; + + // aapt resource value: 0x7f07004b + public const int Base_TextAppearance_AppCompat_Subhead = 2131165259; + + // aapt resource value: 0x7f070013 + public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131165203; + + // aapt resource value: 0x7f07004c + public const int Base_TextAppearance_AppCompat_Title = 2131165260; + + // aapt resource value: 0x7f070014 + public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131165204; + + // aapt resource value: 0x7f070083 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131165315; + + // aapt resource value: 0x7f07004d + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131165261; + + // aapt resource value: 0x7f07004e + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131165262; + + // aapt resource value: 0x7f07004f + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131165263; + + // aapt resource value: 0x7f070050 + public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131165264; + + // aapt resource value: 0x7f070051 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131165265; + + // aapt resource value: 0x7f070052 + public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131165266; + + // aapt resource value: 0x7f070053 + public const int Base_TextAppearance_AppCompat_Widget_Button = 2131165267; + + // aapt resource value: 0x7f070084 + public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131165316; + + // aapt resource value: 0x7f070095 + public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131165333; + + // aapt resource value: 0x7f070054 + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131165268; + + // aapt resource value: 0x7f070055 + public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131165269; + + // aapt resource value: 0x7f070056 + public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131165270; + + // aapt resource value: 0x7f070057 + public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131165271; + + // aapt resource value: 0x7f070096 + public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131165334; + + // aapt resource value: 0x7f070058 + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131165272; + + // aapt resource value: 0x7f070059 + public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131165273; + + // aapt resource value: 0x7f07005a + public const int Base_Theme_AppCompat = 2131165274; + + // aapt resource value: 0x7f070097 + public const int Base_Theme_AppCompat_CompactMenu = 2131165335; + + // aapt resource value: 0x7f070015 + public const int Base_Theme_AppCompat_Dialog = 2131165205; + + // aapt resource value: 0x7f070098 + public const int Base_Theme_AppCompat_Dialog_Alert = 2131165336; + + // aapt resource value: 0x7f070099 + public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131165337; + + // aapt resource value: 0x7f07009a + public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131165338; + + // aapt resource value: 0x7f070005 + public const int Base_Theme_AppCompat_DialogWhenLarge = 2131165189; + + // aapt resource value: 0x7f07005b + public const int Base_Theme_AppCompat_Light = 2131165275; + + // aapt resource value: 0x7f07009b + public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131165339; + + // aapt resource value: 0x7f070016 + public const int Base_Theme_AppCompat_Light_Dialog = 2131165206; + + // aapt resource value: 0x7f07009c + public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131165340; + + // aapt resource value: 0x7f07009d + public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131165341; + + // aapt resource value: 0x7f07009e + public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131165342; + + // aapt resource value: 0x7f070006 + public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131165190; + + // aapt resource value: 0x7f07009f + public const int Base_ThemeOverlay_AppCompat = 2131165343; + + // aapt resource value: 0x7f0700a0 + public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131165344; + + // aapt resource value: 0x7f0700a1 + public const int Base_ThemeOverlay_AppCompat_Dark = 2131165345; + + // aapt resource value: 0x7f0700a2 + public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131165346; + + // aapt resource value: 0x7f0700a3 + public const int Base_ThemeOverlay_AppCompat_Light = 2131165347; + + // aapt resource value: 0x7f070017 + public const int Base_V11_Theme_AppCompat_Dialog = 2131165207; + + // aapt resource value: 0x7f070018 + public const int Base_V11_Theme_AppCompat_Light_Dialog = 2131165208; + + // aapt resource value: 0x7f070020 + public const int Base_V12_Widget_AppCompat_AutoCompleteTextView = 2131165216; + + // aapt resource value: 0x7f070021 + public const int Base_V12_Widget_AppCompat_EditText = 2131165217; + + // aapt resource value: 0x7f07005c + public const int Base_V21_Theme_AppCompat = 2131165276; + + // aapt resource value: 0x7f07005d + public const int Base_V21_Theme_AppCompat_Dialog = 2131165277; + + // aapt resource value: 0x7f07005e + public const int Base_V21_Theme_AppCompat_Light = 2131165278; + + // aapt resource value: 0x7f07005f + public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131165279; + + // aapt resource value: 0x7f070081 + public const int Base_V22_Theme_AppCompat = 2131165313; + + // aapt resource value: 0x7f070082 + public const int Base_V22_Theme_AppCompat_Light = 2131165314; + + // aapt resource value: 0x7f070085 + public const int Base_V23_Theme_AppCompat = 2131165317; + + // aapt resource value: 0x7f070086 + public const int Base_V23_Theme_AppCompat_Light = 2131165318; + + // aapt resource value: 0x7f0700a4 + public const int Base_V7_Theme_AppCompat = 2131165348; + + // aapt resource value: 0x7f0700a5 + public const int Base_V7_Theme_AppCompat_Dialog = 2131165349; + + // aapt resource value: 0x7f0700a6 + public const int Base_V7_Theme_AppCompat_Light = 2131165350; + + // aapt resource value: 0x7f0700a7 + public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131165351; + + // aapt resource value: 0x7f0700a8 + public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131165352; + + // aapt resource value: 0x7f0700a9 + public const int Base_V7_Widget_AppCompat_EditText = 2131165353; + + // aapt resource value: 0x7f0700aa + public const int Base_Widget_AppCompat_ActionBar = 2131165354; + + // aapt resource value: 0x7f0700ab + public const int Base_Widget_AppCompat_ActionBar_Solid = 2131165355; + + // aapt resource value: 0x7f0700ac + public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131165356; + + // aapt resource value: 0x7f070060 + public const int Base_Widget_AppCompat_ActionBar_TabText = 2131165280; + + // aapt resource value: 0x7f070061 + public const int Base_Widget_AppCompat_ActionBar_TabView = 2131165281; + + // aapt resource value: 0x7f070062 + public const int Base_Widget_AppCompat_ActionButton = 2131165282; + + // aapt resource value: 0x7f070063 + public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131165283; + + // aapt resource value: 0x7f070064 + public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131165284; + + // aapt resource value: 0x7f0700ad + public const int Base_Widget_AppCompat_ActionMode = 2131165357; + + // aapt resource value: 0x7f0700ae + public const int Base_Widget_AppCompat_ActivityChooserView = 2131165358; + + // aapt resource value: 0x7f070022 + public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131165218; + + // aapt resource value: 0x7f070065 + public const int Base_Widget_AppCompat_Button = 2131165285; + + // aapt resource value: 0x7f070066 + public const int Base_Widget_AppCompat_Button_Borderless = 2131165286; + + // aapt resource value: 0x7f070067 + public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131165287; + + // aapt resource value: 0x7f0700af + public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131165359; + + // aapt resource value: 0x7f070087 + public const int Base_Widget_AppCompat_Button_Colored = 2131165319; + + // aapt resource value: 0x7f070068 + public const int Base_Widget_AppCompat_Button_Small = 2131165288; + + // aapt resource value: 0x7f070069 + public const int Base_Widget_AppCompat_ButtonBar = 2131165289; + + // aapt resource value: 0x7f0700b0 + public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131165360; + + // aapt resource value: 0x7f07006a + public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131165290; + + // aapt resource value: 0x7f07006b + public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131165291; + + // aapt resource value: 0x7f0700b1 + public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131165361; + + // aapt resource value: 0x7f070004 + public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131165188; + + // aapt resource value: 0x7f0700b2 + public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131165362; + + // aapt resource value: 0x7f07006c + public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131165292; + + // aapt resource value: 0x7f070023 + public const int Base_Widget_AppCompat_EditText = 2131165219; + + // aapt resource value: 0x7f07006d + public const int Base_Widget_AppCompat_ImageButton = 2131165293; + + // aapt resource value: 0x7f0700b3 + public const int Base_Widget_AppCompat_Light_ActionBar = 2131165363; + + // aapt resource value: 0x7f0700b4 + public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131165364; + + // aapt resource value: 0x7f0700b5 + public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131165365; + + // aapt resource value: 0x7f07006e + public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131165294; + + // aapt resource value: 0x7f07006f + public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131165295; + + // aapt resource value: 0x7f070070 + public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131165296; + + // aapt resource value: 0x7f070071 + public const int Base_Widget_AppCompat_Light_PopupMenu = 2131165297; + + // aapt resource value: 0x7f070072 + public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131165298; + + // aapt resource value: 0x7f070073 + public const int Base_Widget_AppCompat_ListPopupWindow = 2131165299; + + // aapt resource value: 0x7f070074 + public const int Base_Widget_AppCompat_ListView = 2131165300; + + // aapt resource value: 0x7f070075 + public const int Base_Widget_AppCompat_ListView_DropDown = 2131165301; + + // aapt resource value: 0x7f070076 + public const int Base_Widget_AppCompat_ListView_Menu = 2131165302; + + // aapt resource value: 0x7f070077 + public const int Base_Widget_AppCompat_PopupMenu = 2131165303; + + // aapt resource value: 0x7f070078 + public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131165304; + + // aapt resource value: 0x7f0700b6 + public const int Base_Widget_AppCompat_PopupWindow = 2131165366; + + // aapt resource value: 0x7f070019 + public const int Base_Widget_AppCompat_ProgressBar = 2131165209; + + // aapt resource value: 0x7f07001a + public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131165210; + + // aapt resource value: 0x7f070079 + public const int Base_Widget_AppCompat_RatingBar = 2131165305; + + // aapt resource value: 0x7f070088 + public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131165320; + + // aapt resource value: 0x7f070089 + public const int Base_Widget_AppCompat_RatingBar_Small = 2131165321; + + // aapt resource value: 0x7f0700b7 + public const int Base_Widget_AppCompat_SearchView = 2131165367; + + // aapt resource value: 0x7f0700b8 + public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131165368; + + // aapt resource value: 0x7f07007a + public const int Base_Widget_AppCompat_SeekBar = 2131165306; + + // aapt resource value: 0x7f07007b + public const int Base_Widget_AppCompat_Spinner = 2131165307; + + // aapt resource value: 0x7f070007 + public const int Base_Widget_AppCompat_Spinner_Underlined = 2131165191; + + // aapt resource value: 0x7f07007c + public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131165308; + + // aapt resource value: 0x7f0700b9 + public const int Base_Widget_AppCompat_Toolbar = 2131165369; + + // aapt resource value: 0x7f07007d + public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131165309; + + // aapt resource value: 0x7f070144 + public const int Base_Widget_Design_TabLayout = 2131165508; + + // aapt resource value: 0x7f070000 + public const int CardView = 2131165184; + + // aapt resource value: 0x7f070002 + public const int CardView_Dark = 2131165186; + + // aapt resource value: 0x7f070003 + public const int CardView_Light = 2131165187; + + // aapt resource value: 0x7f07015b + public const int MasterDetailTheme = 2131165531; + + // aapt resource value: 0x7f07015c + public const int MasterDetailTheme_Base = 2131165532; + + // aapt resource value: 0x7f07001b + public const int Platform_AppCompat = 2131165211; + + // aapt resource value: 0x7f07001c + public const int Platform_AppCompat_Light = 2131165212; + + // aapt resource value: 0x7f07007e + public const int Platform_ThemeOverlay_AppCompat = 2131165310; + + // aapt resource value: 0x7f07007f + public const int Platform_ThemeOverlay_AppCompat_Dark = 2131165311; + + // aapt resource value: 0x7f070080 + public const int Platform_ThemeOverlay_AppCompat_Light = 2131165312; + + // aapt resource value: 0x7f07001d + public const int Platform_V11_AppCompat = 2131165213; + + // aapt resource value: 0x7f07001e + public const int Platform_V11_AppCompat_Light = 2131165214; + + // aapt resource value: 0x7f070025 + public const int Platform_V14_AppCompat = 2131165221; + + // aapt resource value: 0x7f070026 + public const int Platform_V14_AppCompat_Light = 2131165222; + + // aapt resource value: 0x7f07001f + public const int Platform_Widget_AppCompat_Spinner = 2131165215; + + // aapt resource value: 0x7f07002c + public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131165228; + + // aapt resource value: 0x7f07002d + public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131165229; + + // aapt resource value: 0x7f07002e + public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131165230; + + // aapt resource value: 0x7f07002f + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131165231; + + // aapt resource value: 0x7f070030 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131165232; + + // aapt resource value: 0x7f070031 + public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131165233; + + // aapt resource value: 0x7f070032 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131165234; + + // aapt resource value: 0x7f070033 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131165235; + + // aapt resource value: 0x7f070034 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131165236; + + // aapt resource value: 0x7f070035 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131165237; + + // aapt resource value: 0x7f070036 + public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131165238; + + // aapt resource value: 0x7f070037 + public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131165239; + + // aapt resource value: 0x7f070038 + public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131165240; + + // aapt resource value: 0x7f070039 + public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131165241; + + // aapt resource value: 0x7f07015d + public const int SplashTheme = 2131165533; + + // aapt resource value: 0x7f07015e + public const int SplashTheme_Base = 2131165534; + + // aapt resource value: 0x7f0700ba + public const int TextAppearance_AppCompat = 2131165370; + + // aapt resource value: 0x7f0700bb + public const int TextAppearance_AppCompat_Body1 = 2131165371; + + // aapt resource value: 0x7f0700bc + public const int TextAppearance_AppCompat_Body2 = 2131165372; + + // aapt resource value: 0x7f0700bd + public const int TextAppearance_AppCompat_Button = 2131165373; + + // aapt resource value: 0x7f0700be + public const int TextAppearance_AppCompat_Caption = 2131165374; + + // aapt resource value: 0x7f0700bf + public const int TextAppearance_AppCompat_Display1 = 2131165375; + + // aapt resource value: 0x7f0700c0 + public const int TextAppearance_AppCompat_Display2 = 2131165376; + + // aapt resource value: 0x7f0700c1 + public const int TextAppearance_AppCompat_Display3 = 2131165377; + + // aapt resource value: 0x7f0700c2 + public const int TextAppearance_AppCompat_Display4 = 2131165378; + + // aapt resource value: 0x7f0700c3 + public const int TextAppearance_AppCompat_Headline = 2131165379; + + // aapt resource value: 0x7f0700c4 + public const int TextAppearance_AppCompat_Inverse = 2131165380; + + // aapt resource value: 0x7f0700c5 + public const int TextAppearance_AppCompat_Large = 2131165381; + + // aapt resource value: 0x7f0700c6 + public const int TextAppearance_AppCompat_Large_Inverse = 2131165382; + + // aapt resource value: 0x7f0700c7 + public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131165383; + + // aapt resource value: 0x7f0700c8 + public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131165384; + + // aapt resource value: 0x7f0700c9 + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131165385; + + // aapt resource value: 0x7f0700ca + public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131165386; + + // aapt resource value: 0x7f0700cb + public const int TextAppearance_AppCompat_Medium = 2131165387; + + // aapt resource value: 0x7f0700cc + public const int TextAppearance_AppCompat_Medium_Inverse = 2131165388; + + // aapt resource value: 0x7f0700cd + public const int TextAppearance_AppCompat_Menu = 2131165389; + + // aapt resource value: 0x7f0700ce + public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131165390; + + // aapt resource value: 0x7f0700cf + public const int TextAppearance_AppCompat_SearchResult_Title = 2131165391; + + // aapt resource value: 0x7f0700d0 + public const int TextAppearance_AppCompat_Small = 2131165392; + + // aapt resource value: 0x7f0700d1 + public const int TextAppearance_AppCompat_Small_Inverse = 2131165393; + + // aapt resource value: 0x7f0700d2 + public const int TextAppearance_AppCompat_Subhead = 2131165394; + + // aapt resource value: 0x7f0700d3 + public const int TextAppearance_AppCompat_Subhead_Inverse = 2131165395; + + // aapt resource value: 0x7f0700d4 + public const int TextAppearance_AppCompat_Title = 2131165396; + + // aapt resource value: 0x7f0700d5 + public const int TextAppearance_AppCompat_Title_Inverse = 2131165397; + + // aapt resource value: 0x7f0700d6 + public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131165398; + + // aapt resource value: 0x7f0700d7 + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131165399; + + // aapt resource value: 0x7f0700d8 + public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131165400; + + // aapt resource value: 0x7f0700d9 + public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131165401; + + // aapt resource value: 0x7f0700da + public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131165402; + + // aapt resource value: 0x7f0700db + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131165403; + + // aapt resource value: 0x7f0700dc + public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131165404; + + // aapt resource value: 0x7f0700dd + public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131165405; + + // aapt resource value: 0x7f0700de + public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131165406; + + // aapt resource value: 0x7f0700df + public const int TextAppearance_AppCompat_Widget_Button = 2131165407; + + // aapt resource value: 0x7f0700e0 + public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131165408; + + // aapt resource value: 0x7f0700e1 + public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131165409; + + // aapt resource value: 0x7f0700e2 + public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131165410; + + // aapt resource value: 0x7f0700e3 + public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131165411; + + // aapt resource value: 0x7f0700e4 + public const int TextAppearance_AppCompat_Widget_Switch = 2131165412; + + // aapt resource value: 0x7f0700e5 + public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131165413; + + // aapt resource value: 0x7f070145 + public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131165509; + + // aapt resource value: 0x7f070146 + public const int TextAppearance_Design_Counter = 2131165510; + + // aapt resource value: 0x7f070147 + public const int TextAppearance_Design_Counter_Overflow = 2131165511; + + // aapt resource value: 0x7f070148 + public const int TextAppearance_Design_Error = 2131165512; + + // aapt resource value: 0x7f070149 + public const int TextAppearance_Design_Hint = 2131165513; + + // aapt resource value: 0x7f07014a + public const int TextAppearance_Design_Snackbar_Message = 2131165514; + + // aapt resource value: 0x7f07014b + public const int TextAppearance_Design_Tab = 2131165515; + + // aapt resource value: 0x7f070027 + public const int TextAppearance_StatusBar_EventContent = 2131165223; + + // aapt resource value: 0x7f070028 + public const int TextAppearance_StatusBar_EventContent_Info = 2131165224; + + // aapt resource value: 0x7f070029 + public const int TextAppearance_StatusBar_EventContent_Line2 = 2131165225; + + // aapt resource value: 0x7f07002a + public const int TextAppearance_StatusBar_EventContent_Time = 2131165226; + + // aapt resource value: 0x7f07002b + public const int TextAppearance_StatusBar_EventContent_Title = 2131165227; + + // aapt resource value: 0x7f0700e6 + public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131165414; + + // aapt resource value: 0x7f0700e7 + public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131165415; + + // aapt resource value: 0x7f0700e8 + public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131165416; + + // aapt resource value: 0x7f0700e9 + public const int Theme_AppCompat = 2131165417; + + // aapt resource value: 0x7f0700ea + public const int Theme_AppCompat_CompactMenu = 2131165418; + + // aapt resource value: 0x7f070008 + public const int Theme_AppCompat_DayNight = 2131165192; + + // aapt resource value: 0x7f070009 + public const int Theme_AppCompat_DayNight_DarkActionBar = 2131165193; + + // aapt resource value: 0x7f07000a + public const int Theme_AppCompat_DayNight_Dialog = 2131165194; + + // aapt resource value: 0x7f07000b + public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131165195; + + // aapt resource value: 0x7f07000c + public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131165196; + + // aapt resource value: 0x7f07000d + public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131165197; + + // aapt resource value: 0x7f07000e + public const int Theme_AppCompat_DayNight_NoActionBar = 2131165198; + + // aapt resource value: 0x7f0700eb + public const int Theme_AppCompat_Dialog = 2131165419; + + // aapt resource value: 0x7f0700ec + public const int Theme_AppCompat_Dialog_Alert = 2131165420; + + // aapt resource value: 0x7f0700ed + public const int Theme_AppCompat_Dialog_MinWidth = 2131165421; + + // aapt resource value: 0x7f0700ee + public const int Theme_AppCompat_DialogWhenLarge = 2131165422; + + // aapt resource value: 0x7f0700ef + public const int Theme_AppCompat_Light = 2131165423; + + // aapt resource value: 0x7f0700f0 + public const int Theme_AppCompat_Light_DarkActionBar = 2131165424; + + // aapt resource value: 0x7f0700f1 + public const int Theme_AppCompat_Light_Dialog = 2131165425; + + // aapt resource value: 0x7f0700f2 + public const int Theme_AppCompat_Light_Dialog_Alert = 2131165426; + + // aapt resource value: 0x7f0700f3 + public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131165427; + + // aapt resource value: 0x7f0700f4 + public const int Theme_AppCompat_Light_DialogWhenLarge = 2131165428; + + // aapt resource value: 0x7f0700f5 + public const int Theme_AppCompat_Light_NoActionBar = 2131165429; + + // aapt resource value: 0x7f0700f6 + public const int Theme_AppCompat_NoActionBar = 2131165430; + + // aapt resource value: 0x7f07014c + public const int Theme_Design = 2131165516; + + // aapt resource value: 0x7f07014d + public const int Theme_Design_BottomSheetDialog = 2131165517; + + // aapt resource value: 0x7f07014e + public const int Theme_Design_Light = 2131165518; + + // aapt resource value: 0x7f07014f + public const int Theme_Design_Light_BottomSheetDialog = 2131165519; + + // aapt resource value: 0x7f070150 + public const int Theme_Design_Light_NoActionBar = 2131165520; + + // aapt resource value: 0x7f070151 + public const int Theme_Design_NoActionBar = 2131165521; + + // aapt resource value: 0x7f0700f7 + public const int ThemeOverlay_AppCompat = 2131165431; + + // aapt resource value: 0x7f0700f8 + public const int ThemeOverlay_AppCompat_ActionBar = 2131165432; + + // aapt resource value: 0x7f0700f9 + public const int ThemeOverlay_AppCompat_Dark = 2131165433; + + // aapt resource value: 0x7f0700fa + public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131165434; + + // aapt resource value: 0x7f0700fb + public const int ThemeOverlay_AppCompat_Light = 2131165435; + + // aapt resource value: 0x7f0700fc + public const int Widget_AppCompat_ActionBar = 2131165436; + + // aapt resource value: 0x7f0700fd + public const int Widget_AppCompat_ActionBar_Solid = 2131165437; + + // aapt resource value: 0x7f0700fe + public const int Widget_AppCompat_ActionBar_TabBar = 2131165438; + + // aapt resource value: 0x7f0700ff + public const int Widget_AppCompat_ActionBar_TabText = 2131165439; + + // aapt resource value: 0x7f070100 + public const int Widget_AppCompat_ActionBar_TabView = 2131165440; + + // aapt resource value: 0x7f070101 + public const int Widget_AppCompat_ActionButton = 2131165441; + + // aapt resource value: 0x7f070102 + public const int Widget_AppCompat_ActionButton_CloseMode = 2131165442; + + // aapt resource value: 0x7f070103 + public const int Widget_AppCompat_ActionButton_Overflow = 2131165443; + + // aapt resource value: 0x7f070104 + public const int Widget_AppCompat_ActionMode = 2131165444; + + // aapt resource value: 0x7f070105 + public const int Widget_AppCompat_ActivityChooserView = 2131165445; + + // aapt resource value: 0x7f070106 + public const int Widget_AppCompat_AutoCompleteTextView = 2131165446; + + // aapt resource value: 0x7f070107 + public const int Widget_AppCompat_Button = 2131165447; + + // aapt resource value: 0x7f070108 + public const int Widget_AppCompat_Button_Borderless = 2131165448; + + // aapt resource value: 0x7f070109 + public const int Widget_AppCompat_Button_Borderless_Colored = 2131165449; + + // aapt resource value: 0x7f07010a + public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131165450; + + // aapt resource value: 0x7f07010b + public const int Widget_AppCompat_Button_Colored = 2131165451; + + // aapt resource value: 0x7f07010c + public const int Widget_AppCompat_Button_Small = 2131165452; + + // aapt resource value: 0x7f07010d + public const int Widget_AppCompat_ButtonBar = 2131165453; + + // aapt resource value: 0x7f07010e + public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131165454; + + // aapt resource value: 0x7f07010f + public const int Widget_AppCompat_CompoundButton_CheckBox = 2131165455; + + // aapt resource value: 0x7f070110 + public const int Widget_AppCompat_CompoundButton_RadioButton = 2131165456; + + // aapt resource value: 0x7f070111 + public const int Widget_AppCompat_CompoundButton_Switch = 2131165457; + + // aapt resource value: 0x7f070112 + public const int Widget_AppCompat_DrawerArrowToggle = 2131165458; + + // aapt resource value: 0x7f070113 + public const int Widget_AppCompat_DropDownItem_Spinner = 2131165459; + + // aapt resource value: 0x7f070114 + public const int Widget_AppCompat_EditText = 2131165460; + + // aapt resource value: 0x7f070115 + public const int Widget_AppCompat_ImageButton = 2131165461; + + // aapt resource value: 0x7f070116 + public const int Widget_AppCompat_Light_ActionBar = 2131165462; + + // aapt resource value: 0x7f070117 + public const int Widget_AppCompat_Light_ActionBar_Solid = 2131165463; + + // aapt resource value: 0x7f070118 + public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131165464; + + // aapt resource value: 0x7f070119 + public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131165465; + + // aapt resource value: 0x7f07011a + public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131165466; + + // aapt resource value: 0x7f07011b + public const int Widget_AppCompat_Light_ActionBar_TabText = 2131165467; + + // aapt resource value: 0x7f07011c + public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131165468; + + // aapt resource value: 0x7f07011d + public const int Widget_AppCompat_Light_ActionBar_TabView = 2131165469; + + // aapt resource value: 0x7f07011e + public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131165470; + + // aapt resource value: 0x7f07011f + public const int Widget_AppCompat_Light_ActionButton = 2131165471; + + // aapt resource value: 0x7f070120 + public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131165472; + + // aapt resource value: 0x7f070121 + public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131165473; + + // aapt resource value: 0x7f070122 + public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131165474; + + // aapt resource value: 0x7f070123 + public const int Widget_AppCompat_Light_ActivityChooserView = 2131165475; + + // aapt resource value: 0x7f070124 + public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131165476; + + // aapt resource value: 0x7f070125 + public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131165477; + + // aapt resource value: 0x7f070126 + public const int Widget_AppCompat_Light_ListPopupWindow = 2131165478; + + // aapt resource value: 0x7f070127 + public const int Widget_AppCompat_Light_ListView_DropDown = 2131165479; + + // aapt resource value: 0x7f070128 + public const int Widget_AppCompat_Light_PopupMenu = 2131165480; + + // aapt resource value: 0x7f070129 + public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131165481; + + // aapt resource value: 0x7f07012a + public const int Widget_AppCompat_Light_SearchView = 2131165482; + + // aapt resource value: 0x7f07012b + public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131165483; + + // aapt resource value: 0x7f07012c + public const int Widget_AppCompat_ListPopupWindow = 2131165484; + + // aapt resource value: 0x7f07012d + public const int Widget_AppCompat_ListView = 2131165485; + + // aapt resource value: 0x7f07012e + public const int Widget_AppCompat_ListView_DropDown = 2131165486; + + // aapt resource value: 0x7f07012f + public const int Widget_AppCompat_ListView_Menu = 2131165487; + + // aapt resource value: 0x7f070130 + public const int Widget_AppCompat_PopupMenu = 2131165488; + + // aapt resource value: 0x7f070131 + public const int Widget_AppCompat_PopupMenu_Overflow = 2131165489; + + // aapt resource value: 0x7f070132 + public const int Widget_AppCompat_PopupWindow = 2131165490; + + // aapt resource value: 0x7f070133 + public const int Widget_AppCompat_ProgressBar = 2131165491; + + // aapt resource value: 0x7f070134 + public const int Widget_AppCompat_ProgressBar_Horizontal = 2131165492; + + // aapt resource value: 0x7f070135 + public const int Widget_AppCompat_RatingBar = 2131165493; + + // aapt resource value: 0x7f070136 + public const int Widget_AppCompat_RatingBar_Indicator = 2131165494; + + // aapt resource value: 0x7f070137 + public const int Widget_AppCompat_RatingBar_Small = 2131165495; + + // aapt resource value: 0x7f070138 + public const int Widget_AppCompat_SearchView = 2131165496; + + // aapt resource value: 0x7f070139 + public const int Widget_AppCompat_SearchView_ActionBar = 2131165497; + + // aapt resource value: 0x7f07013a + public const int Widget_AppCompat_SeekBar = 2131165498; + + // aapt resource value: 0x7f07013b + public const int Widget_AppCompat_Spinner = 2131165499; + + // aapt resource value: 0x7f07013c + public const int Widget_AppCompat_Spinner_DropDown = 2131165500; + + // aapt resource value: 0x7f07013d + public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131165501; + + // aapt resource value: 0x7f07013e + public const int Widget_AppCompat_Spinner_Underlined = 2131165502; + + // aapt resource value: 0x7f07013f + public const int Widget_AppCompat_TextView_SpinnerItem = 2131165503; + + // aapt resource value: 0x7f070140 + public const int Widget_AppCompat_Toolbar = 2131165504; + + // aapt resource value: 0x7f070141 + public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131165505; + + // aapt resource value: 0x7f070160 + public const int Widget_CardContent = 2131165536; + + // aapt resource value: 0x7f070152 + public const int Widget_Design_AppBarLayout = 2131165522; + + // aapt resource value: 0x7f070153 + public const int Widget_Design_BottomSheet_Modal = 2131165523; + + // aapt resource value: 0x7f070154 + public const int Widget_Design_CollapsingToolbar = 2131165524; + + // aapt resource value: 0x7f070155 + public const int Widget_Design_CoordinatorLayout = 2131165525; + + // aapt resource value: 0x7f070156 + public const int Widget_Design_FloatingActionButton = 2131165526; + + // aapt resource value: 0x7f070157 + public const int Widget_Design_NavigationView = 2131165527; + + // aapt resource value: 0x7f070158 + public const int Widget_Design_ScrimInsetsFrameLayout = 2131165528; + + // aapt resource value: 0x7f070159 + public const int Widget_Design_Snackbar = 2131165529; + + // aapt resource value: 0x7f070142 + public const int Widget_Design_TabLayout = 2131165506; + + // aapt resource value: 0x7f07015a + public const int Widget_Design_TextInputLayout = 2131165530; + + // aapt resource value: 0x7f07015f + public const int button_primary = 2131165535; + + static Style() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Style() + { + } + } + + public partial class Styleable + { + + public static int[] ActionBar = new int[] { + 2130771984, + 2130771986, + 2130771987, + 2130771988, + 2130771989, + 2130771990, + 2130771991, + 2130771992, + 2130771993, + 2130771994, + 2130771995, + 2130771996, + 2130771997, + 2130771998, + 2130771999, + 2130772000, + 2130772001, + 2130772002, + 2130772003, + 2130772004, + 2130772005, + 2130772006, + 2130772007, + 2130772008, + 2130772009, + 2130772010, + 2130772067}; + + // aapt resource value: 10 + public const int ActionBar_background = 10; + + // aapt resource value: 12 + public const int ActionBar_backgroundSplit = 12; + + // aapt resource value: 11 + public const int ActionBar_backgroundStacked = 11; + + // aapt resource value: 21 + public const int ActionBar_contentInsetEnd = 21; + + // aapt resource value: 22 + public const int ActionBar_contentInsetLeft = 22; + + // aapt resource value: 23 + public const int ActionBar_contentInsetRight = 23; + + // aapt resource value: 20 + public const int ActionBar_contentInsetStart = 20; + + // aapt resource value: 13 + public const int ActionBar_customNavigationLayout = 13; + + // aapt resource value: 3 + public const int ActionBar_displayOptions = 3; + + // aapt resource value: 9 + public const int ActionBar_divider = 9; + + // aapt resource value: 24 + public const int ActionBar_elevation = 24; + + // aapt resource value: 0 + public const int ActionBar_height = 0; + + // aapt resource value: 19 + public const int ActionBar_hideOnContentScroll = 19; + + // aapt resource value: 26 + public const int ActionBar_homeAsUpIndicator = 26; + + // aapt resource value: 14 + public const int ActionBar_homeLayout = 14; + + // aapt resource value: 7 + public const int ActionBar_icon = 7; + + // aapt resource value: 16 + public const int ActionBar_indeterminateProgressStyle = 16; + + // aapt resource value: 18 + public const int ActionBar_itemPadding = 18; + + // aapt resource value: 8 + public const int ActionBar_logo = 8; + + // aapt resource value: 2 + public const int ActionBar_navigationMode = 2; + + // aapt resource value: 25 + public const int ActionBar_popupTheme = 25; + + // aapt resource value: 17 + public const int ActionBar_progressBarPadding = 17; + + // aapt resource value: 15 + public const int ActionBar_progressBarStyle = 15; + + // aapt resource value: 4 + public const int ActionBar_subtitle = 4; + + // aapt resource value: 6 + public const int ActionBar_subtitleTextStyle = 6; + + // aapt resource value: 1 + public const int ActionBar_title = 1; + + // aapt resource value: 5 + public const int ActionBar_titleTextStyle = 5; + + public static int[] ActionBarLayout = new int[] { + 16842931}; + + // aapt resource value: 0 + public const int ActionBarLayout_android_layout_gravity = 0; + + public static int[] ActionMenuItemView = new int[] { + 16843071}; + + // aapt resource value: 0 + public const int ActionMenuItemView_android_minWidth = 0; + + public static int[] ActionMenuView; + + public static int[] ActionMode = new int[] { + 2130771984, + 2130771990, + 2130771991, + 2130771995, + 2130771997, + 2130772011}; + + // aapt resource value: 3 + public const int ActionMode_background = 3; + + // aapt resource value: 4 + public const int ActionMode_backgroundSplit = 4; + + // aapt resource value: 5 + public const int ActionMode_closeItemLayout = 5; + + // aapt resource value: 0 + public const int ActionMode_height = 0; + + // aapt resource value: 2 + public const int ActionMode_subtitleTextStyle = 2; + + // aapt resource value: 1 + public const int ActionMode_titleTextStyle = 1; + + public static int[] ActivityChooserView = new int[] { + 2130772012, + 2130772013}; + + // aapt resource value: 1 + public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + + // aapt resource value: 0 + public const int ActivityChooserView_initialActivityCount = 0; + + public static int[] AlertDialog = new int[] { + 16842994, + 2130772014, + 2130772015, + 2130772016, + 2130772017, + 2130772018}; + + // aapt resource value: 0 + public const int AlertDialog_android_layout = 0; + + // aapt resource value: 1 + public const int AlertDialog_buttonPanelSideLayout = 1; + + // aapt resource value: 5 + public const int AlertDialog_listItemLayout = 5; + + // aapt resource value: 2 + public const int AlertDialog_listLayout = 2; + + // aapt resource value: 3 + public const int AlertDialog_multiChoiceItemLayout = 3; + + // aapt resource value: 4 + public const int AlertDialog_singleChoiceItemLayout = 4; + + public static int[] AppBarLayout = new int[] { + 16842964, + 2130772009, + 2130772192}; + + // aapt resource value: 0 + public const int AppBarLayout_android_background = 0; + + // aapt resource value: 1 + public const int AppBarLayout_elevation = 1; + + // aapt resource value: 2 + public const int AppBarLayout_expanded = 2; + + public static int[] AppBarLayout_LayoutParams = new int[] { + 2130772193, + 2130772194}; + + // aapt resource value: 0 + public const int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + + // aapt resource value: 1 + public const int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + + public static int[] AppCompatImageView = new int[] { + 16843033, + 2130772019}; + + // aapt resource value: 0 + public const int AppCompatImageView_android_src = 0; + + // aapt resource value: 1 + public const int AppCompatImageView_srcCompat = 1; + + public static int[] AppCompatTextView = new int[] { + 16842804, + 2130772020}; + + // aapt resource value: 0 + public const int AppCompatTextView_android_textAppearance = 0; + + // aapt resource value: 1 + public const int AppCompatTextView_textAllCaps = 1; + + public static int[] AppCompatTheme = new int[] { + 16842839, + 16842926, + 2130772021, + 2130772022, + 2130772023, + 2130772024, + 2130772025, + 2130772026, + 2130772027, + 2130772028, + 2130772029, + 2130772030, + 2130772031, + 2130772032, + 2130772033, + 2130772034, + 2130772035, + 2130772036, + 2130772037, + 2130772038, + 2130772039, + 2130772040, + 2130772041, + 2130772042, + 2130772043, + 2130772044, + 2130772045, + 2130772046, + 2130772047, + 2130772048, + 2130772049, + 2130772050, + 2130772051, + 2130772052, + 2130772053, + 2130772054, + 2130772055, + 2130772056, + 2130772057, + 2130772058, + 2130772059, + 2130772060, + 2130772061, + 2130772062, + 2130772063, + 2130772064, + 2130772065, + 2130772066, + 2130772067, + 2130772068, + 2130772069, + 2130772070, + 2130772071, + 2130772072, + 2130772073, + 2130772074, + 2130772075, + 2130772076, + 2130772077, + 2130772078, + 2130772079, + 2130772080, + 2130772081, + 2130772082, + 2130772083, + 2130772084, + 2130772085, + 2130772086, + 2130772087, + 2130772088, + 2130772089, + 2130772090, + 2130772091, + 2130772092, + 2130772093, + 2130772094, + 2130772095, + 2130772096, + 2130772097, + 2130772098, + 2130772099, + 2130772100, + 2130772101, + 2130772102, + 2130772103, + 2130772104, + 2130772105, + 2130772106, + 2130772107, + 2130772108, + 2130772109, + 2130772110, + 2130772111, + 2130772112, + 2130772113, + 2130772114, + 2130772115, + 2130772116, + 2130772117, + 2130772118, + 2130772119, + 2130772120, + 2130772121, + 2130772122, + 2130772123, + 2130772124, + 2130772125, + 2130772126, + 2130772127, + 2130772128, + 2130772129, + 2130772130}; + + // aapt resource value: 23 + public const int AppCompatTheme_actionBarDivider = 23; + + // aapt resource value: 24 + public const int AppCompatTheme_actionBarItemBackground = 24; + + // aapt resource value: 17 + public const int AppCompatTheme_actionBarPopupTheme = 17; + + // aapt resource value: 22 + public const int AppCompatTheme_actionBarSize = 22; + + // aapt resource value: 19 + public const int AppCompatTheme_actionBarSplitStyle = 19; + + // aapt resource value: 18 + public const int AppCompatTheme_actionBarStyle = 18; + + // aapt resource value: 13 + public const int AppCompatTheme_actionBarTabBarStyle = 13; + + // aapt resource value: 12 + public const int AppCompatTheme_actionBarTabStyle = 12; + + // aapt resource value: 14 + public const int AppCompatTheme_actionBarTabTextStyle = 14; + + // aapt resource value: 20 + public const int AppCompatTheme_actionBarTheme = 20; + + // aapt resource value: 21 + public const int AppCompatTheme_actionBarWidgetTheme = 21; + + // aapt resource value: 49 + public const int AppCompatTheme_actionButtonStyle = 49; + + // aapt resource value: 45 + public const int AppCompatTheme_actionDropDownStyle = 45; + + // aapt resource value: 25 + public const int AppCompatTheme_actionMenuTextAppearance = 25; + + // aapt resource value: 26 + public const int AppCompatTheme_actionMenuTextColor = 26; + + // aapt resource value: 29 + public const int AppCompatTheme_actionModeBackground = 29; + + // aapt resource value: 28 + public const int AppCompatTheme_actionModeCloseButtonStyle = 28; + + // aapt resource value: 31 + public const int AppCompatTheme_actionModeCloseDrawable = 31; + + // aapt resource value: 33 + public const int AppCompatTheme_actionModeCopyDrawable = 33; + + // aapt resource value: 32 + public const int AppCompatTheme_actionModeCutDrawable = 32; + + // aapt resource value: 37 + public const int AppCompatTheme_actionModeFindDrawable = 37; + + // aapt resource value: 34 + public const int AppCompatTheme_actionModePasteDrawable = 34; + + // aapt resource value: 39 + public const int AppCompatTheme_actionModePopupWindowStyle = 39; + + // aapt resource value: 35 + public const int AppCompatTheme_actionModeSelectAllDrawable = 35; + + // aapt resource value: 36 + public const int AppCompatTheme_actionModeShareDrawable = 36; + + // aapt resource value: 30 + public const int AppCompatTheme_actionModeSplitBackground = 30; + + // aapt resource value: 27 + public const int AppCompatTheme_actionModeStyle = 27; + + // aapt resource value: 38 + public const int AppCompatTheme_actionModeWebSearchDrawable = 38; + + // aapt resource value: 15 + public const int AppCompatTheme_actionOverflowButtonStyle = 15; + + // aapt resource value: 16 + public const int AppCompatTheme_actionOverflowMenuStyle = 16; + + // aapt resource value: 57 + public const int AppCompatTheme_activityChooserViewStyle = 57; + + // aapt resource value: 92 + public const int AppCompatTheme_alertDialogButtonGroupStyle = 92; + + // aapt resource value: 93 + public const int AppCompatTheme_alertDialogCenterButtons = 93; + + // aapt resource value: 91 + public const int AppCompatTheme_alertDialogStyle = 91; + + // aapt resource value: 94 + public const int AppCompatTheme_alertDialogTheme = 94; + + // aapt resource value: 1 + public const int AppCompatTheme_android_windowAnimationStyle = 1; + + // aapt resource value: 0 + public const int AppCompatTheme_android_windowIsFloating = 0; + + // aapt resource value: 99 + public const int AppCompatTheme_autoCompleteTextViewStyle = 99; + + // aapt resource value: 54 + public const int AppCompatTheme_borderlessButtonStyle = 54; + + // aapt resource value: 51 + public const int AppCompatTheme_buttonBarButtonStyle = 51; + + // aapt resource value: 97 + public const int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + + // aapt resource value: 98 + public const int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + + // aapt resource value: 96 + public const int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + + // aapt resource value: 50 + public const int AppCompatTheme_buttonBarStyle = 50; + + // aapt resource value: 100 + public const int AppCompatTheme_buttonStyle = 100; + + // aapt resource value: 101 + public const int AppCompatTheme_buttonStyleSmall = 101; + + // aapt resource value: 102 + public const int AppCompatTheme_checkboxStyle = 102; + + // aapt resource value: 103 + public const int AppCompatTheme_checkedTextViewStyle = 103; + + // aapt resource value: 84 + public const int AppCompatTheme_colorAccent = 84; + + // aapt resource value: 88 + public const int AppCompatTheme_colorButtonNormal = 88; + + // aapt resource value: 86 + public const int AppCompatTheme_colorControlActivated = 86; + + // aapt resource value: 87 + public const int AppCompatTheme_colorControlHighlight = 87; + + // aapt resource value: 85 + public const int AppCompatTheme_colorControlNormal = 85; + + // aapt resource value: 82 + public const int AppCompatTheme_colorPrimary = 82; + + // aapt resource value: 83 + public const int AppCompatTheme_colorPrimaryDark = 83; + + // aapt resource value: 89 + public const int AppCompatTheme_colorSwitchThumbNormal = 89; + + // aapt resource value: 90 + public const int AppCompatTheme_controlBackground = 90; + + // aapt resource value: 43 + public const int AppCompatTheme_dialogPreferredPadding = 43; + + // aapt resource value: 42 + public const int AppCompatTheme_dialogTheme = 42; + + // aapt resource value: 56 + public const int AppCompatTheme_dividerHorizontal = 56; + + // aapt resource value: 55 + public const int AppCompatTheme_dividerVertical = 55; + + // aapt resource value: 74 + public const int AppCompatTheme_dropDownListViewStyle = 74; + + // aapt resource value: 46 + public const int AppCompatTheme_dropdownListPreferredItemHeight = 46; + + // aapt resource value: 63 + public const int AppCompatTheme_editTextBackground = 63; + + // aapt resource value: 62 + public const int AppCompatTheme_editTextColor = 62; + + // aapt resource value: 104 + public const int AppCompatTheme_editTextStyle = 104; + + // aapt resource value: 48 + public const int AppCompatTheme_homeAsUpIndicator = 48; + + // aapt resource value: 64 + public const int AppCompatTheme_imageButtonStyle = 64; + + // aapt resource value: 81 + public const int AppCompatTheme_listChoiceBackgroundIndicator = 81; + + // aapt resource value: 44 + public const int AppCompatTheme_listDividerAlertDialog = 44; + + // aapt resource value: 75 + public const int AppCompatTheme_listPopupWindowStyle = 75; + + // aapt resource value: 69 + public const int AppCompatTheme_listPreferredItemHeight = 69; + + // aapt resource value: 71 + public const int AppCompatTheme_listPreferredItemHeightLarge = 71; + + // aapt resource value: 70 + public const int AppCompatTheme_listPreferredItemHeightSmall = 70; + + // aapt resource value: 72 + public const int AppCompatTheme_listPreferredItemPaddingLeft = 72; + + // aapt resource value: 73 + public const int AppCompatTheme_listPreferredItemPaddingRight = 73; + + // aapt resource value: 78 + public const int AppCompatTheme_panelBackground = 78; + + // aapt resource value: 80 + public const int AppCompatTheme_panelMenuListTheme = 80; + + // aapt resource value: 79 + public const int AppCompatTheme_panelMenuListWidth = 79; + + // aapt resource value: 60 + public const int AppCompatTheme_popupMenuStyle = 60; + + // aapt resource value: 61 + public const int AppCompatTheme_popupWindowStyle = 61; + + // aapt resource value: 105 + public const int AppCompatTheme_radioButtonStyle = 105; + + // aapt resource value: 106 + public const int AppCompatTheme_ratingBarStyle = 106; + + // aapt resource value: 107 + public const int AppCompatTheme_ratingBarStyleIndicator = 107; + + // aapt resource value: 108 + public const int AppCompatTheme_ratingBarStyleSmall = 108; + + // aapt resource value: 68 + public const int AppCompatTheme_searchViewStyle = 68; + + // aapt resource value: 109 + public const int AppCompatTheme_seekBarStyle = 109; + + // aapt resource value: 52 + public const int AppCompatTheme_selectableItemBackground = 52; + + // aapt resource value: 53 + public const int AppCompatTheme_selectableItemBackgroundBorderless = 53; + + // aapt resource value: 47 + public const int AppCompatTheme_spinnerDropDownItemStyle = 47; + + // aapt resource value: 110 + public const int AppCompatTheme_spinnerStyle = 110; + + // aapt resource value: 111 + public const int AppCompatTheme_switchStyle = 111; + + // aapt resource value: 40 + public const int AppCompatTheme_textAppearanceLargePopupMenu = 40; + + // aapt resource value: 76 + public const int AppCompatTheme_textAppearanceListItem = 76; + + // aapt resource value: 77 + public const int AppCompatTheme_textAppearanceListItemSmall = 77; + + // aapt resource value: 66 + public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + + // aapt resource value: 65 + public const int AppCompatTheme_textAppearanceSearchResultTitle = 65; + + // aapt resource value: 41 + public const int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + + // aapt resource value: 95 + public const int AppCompatTheme_textColorAlertDialogListItem = 95; + + // aapt resource value: 67 + public const int AppCompatTheme_textColorSearchUrl = 67; + + // aapt resource value: 59 + public const int AppCompatTheme_toolbarNavigationButtonStyle = 59; + + // aapt resource value: 58 + public const int AppCompatTheme_toolbarStyle = 58; + + // aapt resource value: 2 + public const int AppCompatTheme_windowActionBar = 2; + + // aapt resource value: 4 + public const int AppCompatTheme_windowActionBarOverlay = 4; + + // aapt resource value: 5 + public const int AppCompatTheme_windowActionModeOverlay = 5; + + // aapt resource value: 9 + public const int AppCompatTheme_windowFixedHeightMajor = 9; + + // aapt resource value: 7 + public const int AppCompatTheme_windowFixedHeightMinor = 7; + + // aapt resource value: 6 + public const int AppCompatTheme_windowFixedWidthMajor = 6; + + // aapt resource value: 8 + public const int AppCompatTheme_windowFixedWidthMinor = 8; + + // aapt resource value: 10 + public const int AppCompatTheme_windowMinWidthMajor = 10; + + // aapt resource value: 11 + public const int AppCompatTheme_windowMinWidthMinor = 11; + + // aapt resource value: 3 + public const int AppCompatTheme_windowNoTitle = 3; + + public static int[] BottomSheetBehavior_Params = new int[] { + 2130772195, + 2130772196}; + + // aapt resource value: 1 + public const int BottomSheetBehavior_Params_behavior_hideable = 1; + + // aapt resource value: 0 + public const int BottomSheetBehavior_Params_behavior_peekHeight = 0; + + public static int[] ButtonBarLayout = new int[] { + 2130772131}; + + // aapt resource value: 0 + public const int ButtonBarLayout_allowStacking = 0; + + public static int[] CardView = new int[] { + 16843071, + 16843072, + 2130771972, + 2130771973, + 2130771974, + 2130771975, + 2130771976, + 2130771977, + 2130771978, + 2130771979, + 2130771980, + 2130771981, + 2130771982}; + + // aapt resource value: 1 + public const int CardView_android_minHeight = 1; + + // aapt resource value: 0 + public const int CardView_android_minWidth = 0; + + // aapt resource value: 2 + public const int CardView_cardBackgroundColor = 2; + + // aapt resource value: 3 + public const int CardView_cardCornerRadius = 3; + + // aapt resource value: 4 + public const int CardView_cardElevation = 4; + + // aapt resource value: 5 + public const int CardView_cardMaxElevation = 5; + + // aapt resource value: 7 + public const int CardView_cardPreventCornerOverlap = 7; + + // aapt resource value: 6 + public const int CardView_cardUseCompatPadding = 6; + + // aapt resource value: 8 + public const int CardView_contentPadding = 8; + + // aapt resource value: 12 + public const int CardView_contentPaddingBottom = 12; + + // aapt resource value: 9 + public const int CardView_contentPaddingLeft = 9; + + // aapt resource value: 10 + public const int CardView_contentPaddingRight = 10; + + // aapt resource value: 11 + public const int CardView_contentPaddingTop = 11; + + public static int[] CollapsingAppBarLayout_LayoutParams = new int[] { + 2130772197, + 2130772198}; + + // aapt resource value: 0 + public const int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + + // aapt resource value: 1 + public const int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + + public static int[] CollapsingToolbarLayout = new int[] { + 2130771986, + 2130772199, + 2130772200, + 2130772201, + 2130772202, + 2130772203, + 2130772204, + 2130772205, + 2130772206, + 2130772207, + 2130772208, + 2130772209, + 2130772210, + 2130772211}; + + // aapt resource value: 11 + public const int CollapsingToolbarLayout_collapsedTitleGravity = 11; + + // aapt resource value: 7 + public const int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + + // aapt resource value: 8 + public const int CollapsingToolbarLayout_contentScrim = 8; + + // aapt resource value: 12 + public const int CollapsingToolbarLayout_expandedTitleGravity = 12; + + // aapt resource value: 1 + public const int CollapsingToolbarLayout_expandedTitleMargin = 1; + + // aapt resource value: 5 + public const int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + + // aapt resource value: 4 + public const int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + + // aapt resource value: 2 + public const int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + + // aapt resource value: 3 + public const int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + + // aapt resource value: 6 + public const int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + + // aapt resource value: 9 + public const int CollapsingToolbarLayout_statusBarScrim = 9; + + // aapt resource value: 0 + public const int CollapsingToolbarLayout_title = 0; + + // aapt resource value: 13 + public const int CollapsingToolbarLayout_titleEnabled = 13; + + // aapt resource value: 10 + public const int CollapsingToolbarLayout_toolbarId = 10; + + public static int[] CompoundButton = new int[] { + 16843015, + 2130772132, + 2130772133}; + + // aapt resource value: 0 + public const int CompoundButton_android_button = 0; + + // aapt resource value: 1 + public const int CompoundButton_buttonTint = 1; + + // aapt resource value: 2 + public const int CompoundButton_buttonTintMode = 2; + + public static int[] CoordinatorLayout = new int[] { + 2130772212, + 2130772213}; + + // aapt resource value: 0 + public const int CoordinatorLayout_keylines = 0; + + // aapt resource value: 1 + public const int CoordinatorLayout_statusBarBackground = 1; + + public static int[] CoordinatorLayout_LayoutParams = new int[] { + 16842931, + 2130772214, + 2130772215, + 2130772216, + 2130772217}; + + // aapt resource value: 0 + public const int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + + // aapt resource value: 2 + public const int CoordinatorLayout_LayoutParams_layout_anchor = 2; + + // aapt resource value: 4 + public const int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + + // aapt resource value: 1 + public const int CoordinatorLayout_LayoutParams_layout_behavior = 1; + + // aapt resource value: 3 + public const int CoordinatorLayout_LayoutParams_layout_keyline = 3; + + public static int[] DesignTheme = new int[] { + 2130772218, + 2130772219, + 2130772220}; + + // aapt resource value: 0 + public const int DesignTheme_bottomSheetDialogTheme = 0; + + // aapt resource value: 1 + public const int DesignTheme_bottomSheetStyle = 1; + + // aapt resource value: 2 + public const int DesignTheme_textColorError = 2; + + public static int[] DrawerArrowToggle = new int[] { + 2130772134, + 2130772135, + 2130772136, + 2130772137, + 2130772138, + 2130772139, + 2130772140, + 2130772141}; + + // aapt resource value: 4 + public const int DrawerArrowToggle_arrowHeadLength = 4; + + // aapt resource value: 5 + public const int DrawerArrowToggle_arrowShaftLength = 5; + + // aapt resource value: 6 + public const int DrawerArrowToggle_barLength = 6; + + // aapt resource value: 0 + public const int DrawerArrowToggle_color = 0; + + // aapt resource value: 2 + public const int DrawerArrowToggle_drawableSize = 2; + + // aapt resource value: 3 + public const int DrawerArrowToggle_gapBetweenBars = 3; + + // aapt resource value: 1 + public const int DrawerArrowToggle_spinBars = 1; + + // aapt resource value: 7 + public const int DrawerArrowToggle_thickness = 7; + + public static int[] FloatingActionButton = new int[] { + 2130772009, + 2130772190, + 2130772191, + 2130772221, + 2130772222, + 2130772223, + 2130772224, + 2130772225}; + + // aapt resource value: 1 + public const int FloatingActionButton_backgroundTint = 1; + + // aapt resource value: 2 + public const int FloatingActionButton_backgroundTintMode = 2; + + // aapt resource value: 6 + public const int FloatingActionButton_borderWidth = 6; + + // aapt resource value: 0 + public const int FloatingActionButton_elevation = 0; + + // aapt resource value: 4 + public const int FloatingActionButton_fabSize = 4; + + // aapt resource value: 5 + public const int FloatingActionButton_pressedTranslationZ = 5; + + // aapt resource value: 3 + public const int FloatingActionButton_rippleColor = 3; + + // aapt resource value: 7 + public const int FloatingActionButton_useCompatPadding = 7; + + public static int[] ForegroundLinearLayout = new int[] { + 16843017, + 16843264, + 2130772226}; + + // aapt resource value: 0 + public const int ForegroundLinearLayout_android_foreground = 0; + + // aapt resource value: 1 + public const int ForegroundLinearLayout_android_foregroundGravity = 1; + + // aapt resource value: 2 + public const int ForegroundLinearLayout_foregroundInsidePadding = 2; + + public static int[] LinearLayoutCompat = new int[] { + 16842927, + 16842948, + 16843046, + 16843047, + 16843048, + 2130771994, + 2130772142, + 2130772143, + 2130772144}; + + // aapt resource value: 2 + public const int LinearLayoutCompat_android_baselineAligned = 2; + + // aapt resource value: 3 + public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + + // aapt resource value: 0 + public const int LinearLayoutCompat_android_gravity = 0; + + // aapt resource value: 1 + public const int LinearLayoutCompat_android_orientation = 1; + + // aapt resource value: 4 + public const int LinearLayoutCompat_android_weightSum = 4; + + // aapt resource value: 5 + public const int LinearLayoutCompat_divider = 5; + + // aapt resource value: 8 + public const int LinearLayoutCompat_dividerPadding = 8; + + // aapt resource value: 6 + public const int LinearLayoutCompat_measureWithLargestChild = 6; + + // aapt resource value: 7 + public const int LinearLayoutCompat_showDividers = 7; + + public static int[] LinearLayoutCompat_Layout = new int[] { + 16842931, + 16842996, + 16842997, + 16843137}; + + // aapt resource value: 0 + public const int LinearLayoutCompat_Layout_android_layout_gravity = 0; + + // aapt resource value: 2 + public const int LinearLayoutCompat_Layout_android_layout_height = 2; + + // aapt resource value: 3 + public const int LinearLayoutCompat_Layout_android_layout_weight = 3; + + // aapt resource value: 1 + public const int LinearLayoutCompat_Layout_android_layout_width = 1; + + public static int[] ListPopupWindow = new int[] { + 16843436, + 16843437}; + + // aapt resource value: 0 + public const int ListPopupWindow_android_dropDownHorizontalOffset = 0; + + // aapt resource value: 1 + public const int ListPopupWindow_android_dropDownVerticalOffset = 1; + + public static int[] MenuGroup = new int[] { + 16842766, + 16842960, + 16843156, + 16843230, + 16843231, + 16843232}; + + // aapt resource value: 5 + public const int MenuGroup_android_checkableBehavior = 5; + + // aapt resource value: 0 + public const int MenuGroup_android_enabled = 0; + + // aapt resource value: 1 + public const int MenuGroup_android_id = 1; + + // aapt resource value: 3 + public const int MenuGroup_android_menuCategory = 3; + + // aapt resource value: 4 + public const int MenuGroup_android_orderInCategory = 4; + + // aapt resource value: 2 + public const int MenuGroup_android_visible = 2; + + public static int[] MenuItem = new int[] { + 16842754, + 16842766, + 16842960, + 16843014, + 16843156, + 16843230, + 16843231, + 16843233, + 16843234, + 16843235, + 16843236, + 16843237, + 16843375, + 2130772145, + 2130772146, + 2130772147, + 2130772148}; + + // aapt resource value: 14 + public const int MenuItem_actionLayout = 14; + + // aapt resource value: 16 + public const int MenuItem_actionProviderClass = 16; + + // aapt resource value: 15 + public const int MenuItem_actionViewClass = 15; + + // aapt resource value: 9 + public const int MenuItem_android_alphabeticShortcut = 9; + + // aapt resource value: 11 + public const int MenuItem_android_checkable = 11; + + // aapt resource value: 3 + public const int MenuItem_android_checked = 3; + + // aapt resource value: 1 + public const int MenuItem_android_enabled = 1; + + // aapt resource value: 0 + public const int MenuItem_android_icon = 0; + + // aapt resource value: 2 + public const int MenuItem_android_id = 2; + + // aapt resource value: 5 + public const int MenuItem_android_menuCategory = 5; + + // aapt resource value: 10 + public const int MenuItem_android_numericShortcut = 10; + + // aapt resource value: 12 + public const int MenuItem_android_onClick = 12; + + // aapt resource value: 6 + public const int MenuItem_android_orderInCategory = 6; + + // aapt resource value: 7 + public const int MenuItem_android_title = 7; + + // aapt resource value: 8 + public const int MenuItem_android_titleCondensed = 8; + + // aapt resource value: 4 + public const int MenuItem_android_visible = 4; + + // aapt resource value: 13 + public const int MenuItem_showAsAction = 13; + + public static int[] MenuView = new int[] { + 16842926, + 16843052, + 16843053, + 16843054, + 16843055, + 16843056, + 16843057, + 2130772149}; + + // aapt resource value: 4 + public const int MenuView_android_headerBackground = 4; + + // aapt resource value: 2 + public const int MenuView_android_horizontalDivider = 2; + + // aapt resource value: 5 + public const int MenuView_android_itemBackground = 5; + + // aapt resource value: 6 + public const int MenuView_android_itemIconDisabledAlpha = 6; + + // aapt resource value: 1 + public const int MenuView_android_itemTextAppearance = 1; + + // aapt resource value: 3 + public const int MenuView_android_verticalDivider = 3; + + // aapt resource value: 0 + public const int MenuView_android_windowAnimationStyle = 0; + + // aapt resource value: 7 + public const int MenuView_preserveIconSpacing = 7; + + public static int[] NavigationView = new int[] { + 16842964, + 16842973, + 16843039, + 2130772009, + 2130772227, + 2130772228, + 2130772229, + 2130772230, + 2130772231, + 2130772232}; + + // aapt resource value: 0 + public const int NavigationView_android_background = 0; + + // aapt resource value: 1 + public const int NavigationView_android_fitsSystemWindows = 1; + + // aapt resource value: 2 + public const int NavigationView_android_maxWidth = 2; + + // aapt resource value: 3 + public const int NavigationView_elevation = 3; + + // aapt resource value: 9 + public const int NavigationView_headerLayout = 9; + + // aapt resource value: 7 + public const int NavigationView_itemBackground = 7; + + // aapt resource value: 5 + public const int NavigationView_itemIconTint = 5; + + // aapt resource value: 8 + public const int NavigationView_itemTextAppearance = 8; + + // aapt resource value: 6 + public const int NavigationView_itemTextColor = 6; + + // aapt resource value: 4 + public const int NavigationView_menu = 4; + + public static int[] PopupWindow = new int[] { + 16843126, + 2130772150}; + + // aapt resource value: 0 + public const int PopupWindow_android_popupBackground = 0; + + // aapt resource value: 1 + public const int PopupWindow_overlapAnchor = 1; + + public static int[] PopupWindowBackgroundState = new int[] { + 2130772151}; + + // aapt resource value: 0 + public const int PopupWindowBackgroundState_state_above_anchor = 0; + + public static int[] RecyclerView = new int[] { + 16842948, + 2130771968, + 2130771969, + 2130771970, + 2130771971}; + + // aapt resource value: 0 + public const int RecyclerView_android_orientation = 0; + + // aapt resource value: 1 + public const int RecyclerView_layoutManager = 1; + + // aapt resource value: 3 + public const int RecyclerView_reverseLayout = 3; + + // aapt resource value: 2 + public const int RecyclerView_spanCount = 2; + + // aapt resource value: 4 + public const int RecyclerView_stackFromEnd = 4; + + public static int[] ScrimInsetsFrameLayout = new int[] { + 2130772233}; + + // aapt resource value: 0 + public const int ScrimInsetsFrameLayout_insetForeground = 0; + + public static int[] ScrollingViewBehavior_Params = new int[] { + 2130772234}; + + // aapt resource value: 0 + public const int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + + public static int[] SearchView = new int[] { + 16842970, + 16843039, + 16843296, + 16843364, + 2130772152, + 2130772153, + 2130772154, + 2130772155, + 2130772156, + 2130772157, + 2130772158, + 2130772159, + 2130772160, + 2130772161, + 2130772162, + 2130772163, + 2130772164}; + + // aapt resource value: 0 + public const int SearchView_android_focusable = 0; + + // aapt resource value: 3 + public const int SearchView_android_imeOptions = 3; + + // aapt resource value: 2 + public const int SearchView_android_inputType = 2; + + // aapt resource value: 1 + public const int SearchView_android_maxWidth = 1; + + // aapt resource value: 8 + public const int SearchView_closeIcon = 8; + + // aapt resource value: 13 + public const int SearchView_commitIcon = 13; + + // aapt resource value: 7 + public const int SearchView_defaultQueryHint = 7; + + // aapt resource value: 9 + public const int SearchView_goIcon = 9; + + // aapt resource value: 5 + public const int SearchView_iconifiedByDefault = 5; + + // aapt resource value: 4 + public const int SearchView_layout = 4; + + // aapt resource value: 15 + public const int SearchView_queryBackground = 15; + + // aapt resource value: 6 + public const int SearchView_queryHint = 6; + + // aapt resource value: 11 + public const int SearchView_searchHintIcon = 11; + + // aapt resource value: 10 + public const int SearchView_searchIcon = 10; + + // aapt resource value: 16 + public const int SearchView_submitBackground = 16; + + // aapt resource value: 14 + public const int SearchView_suggestionRowLayout = 14; + + // aapt resource value: 12 + public const int SearchView_voiceIcon = 12; + + public static int[] SnackbarLayout = new int[] { + 16843039, + 2130772009, + 2130772235}; + + // aapt resource value: 0 + public const int SnackbarLayout_android_maxWidth = 0; + + // aapt resource value: 1 + public const int SnackbarLayout_elevation = 1; + + // aapt resource value: 2 + public const int SnackbarLayout_maxActionInlineWidth = 2; + + public static int[] Spinner = new int[] { + 16842930, + 16843126, + 16843131, + 16843362, + 2130772010}; + + // aapt resource value: 3 + public const int Spinner_android_dropDownWidth = 3; + + // aapt resource value: 0 + public const int Spinner_android_entries = 0; + + // aapt resource value: 1 + public const int Spinner_android_popupBackground = 1; + + // aapt resource value: 2 + public const int Spinner_android_prompt = 2; + + // aapt resource value: 4 + public const int Spinner_popupTheme = 4; + + public static int[] SwitchCompat = new int[] { + 16843044, + 16843045, + 16843074, + 2130772165, + 2130772166, + 2130772167, + 2130772168, + 2130772169, + 2130772170, + 2130772171}; + + // aapt resource value: 1 + public const int SwitchCompat_android_textOff = 1; + + // aapt resource value: 0 + public const int SwitchCompat_android_textOn = 0; + + // aapt resource value: 2 + public const int SwitchCompat_android_thumb = 2; + + // aapt resource value: 9 + public const int SwitchCompat_showText = 9; + + // aapt resource value: 8 + public const int SwitchCompat_splitTrack = 8; + + // aapt resource value: 6 + public const int SwitchCompat_switchMinWidth = 6; + + // aapt resource value: 7 + public const int SwitchCompat_switchPadding = 7; + + // aapt resource value: 5 + public const int SwitchCompat_switchTextAppearance = 5; + + // aapt resource value: 4 + public const int SwitchCompat_thumbTextPadding = 4; + + // aapt resource value: 3 + public const int SwitchCompat_track = 3; + + public static int[] TabItem = new int[] { + 16842754, + 16842994, + 16843087}; + + // aapt resource value: 0 + public const int TabItem_android_icon = 0; + + // aapt resource value: 1 + public const int TabItem_android_layout = 1; + + // aapt resource value: 2 + public const int TabItem_android_text = 2; + + public static int[] TabLayout = new int[] { + 2130772236, + 2130772237, + 2130772238, + 2130772239, + 2130772240, + 2130772241, + 2130772242, + 2130772243, + 2130772244, + 2130772245, + 2130772246, + 2130772247, + 2130772248, + 2130772249, + 2130772250, + 2130772251}; + + // aapt resource value: 3 + public const int TabLayout_tabBackground = 3; + + // aapt resource value: 2 + public const int TabLayout_tabContentStart = 2; + + // aapt resource value: 5 + public const int TabLayout_tabGravity = 5; + + // aapt resource value: 0 + public const int TabLayout_tabIndicatorColor = 0; + + // aapt resource value: 1 + public const int TabLayout_tabIndicatorHeight = 1; + + // aapt resource value: 7 + public const int TabLayout_tabMaxWidth = 7; + + // aapt resource value: 6 + public const int TabLayout_tabMinWidth = 6; + + // aapt resource value: 4 + public const int TabLayout_tabMode = 4; + + // aapt resource value: 15 + public const int TabLayout_tabPadding = 15; + + // aapt resource value: 14 + public const int TabLayout_tabPaddingBottom = 14; + + // aapt resource value: 13 + public const int TabLayout_tabPaddingEnd = 13; + + // aapt resource value: 11 + public const int TabLayout_tabPaddingStart = 11; + + // aapt resource value: 12 + public const int TabLayout_tabPaddingTop = 12; + + // aapt resource value: 10 + public const int TabLayout_tabSelectedTextColor = 10; + + // aapt resource value: 8 + public const int TabLayout_tabTextAppearance = 8; + + // aapt resource value: 9 + public const int TabLayout_tabTextColor = 9; + + public static int[] TextAppearance = new int[] { + 16842901, + 16842902, + 16842903, + 16842904, + 16843105, + 16843106, + 16843107, + 16843108, + 2130772020}; + + // aapt resource value: 4 + public const int TextAppearance_android_shadowColor = 4; + + // aapt resource value: 5 + public const int TextAppearance_android_shadowDx = 5; + + // aapt resource value: 6 + public const int TextAppearance_android_shadowDy = 6; + + // aapt resource value: 7 + public const int TextAppearance_android_shadowRadius = 7; + + // aapt resource value: 3 + public const int TextAppearance_android_textColor = 3; + + // aapt resource value: 0 + public const int TextAppearance_android_textSize = 0; + + // aapt resource value: 2 + public const int TextAppearance_android_textStyle = 2; + + // aapt resource value: 1 + public const int TextAppearance_android_typeface = 1; + + // aapt resource value: 8 + public const int TextAppearance_textAllCaps = 8; + + public static int[] TextInputLayout = new int[] { + 16842906, + 16843088, + 2130772252, + 2130772253, + 2130772254, + 2130772255, + 2130772256, + 2130772257, + 2130772258, + 2130772259, + 2130772260}; + + // aapt resource value: 1 + public const int TextInputLayout_android_hint = 1; + + // aapt resource value: 0 + public const int TextInputLayout_android_textColorHint = 0; + + // aapt resource value: 6 + public const int TextInputLayout_counterEnabled = 6; + + // aapt resource value: 7 + public const int TextInputLayout_counterMaxLength = 7; + + // aapt resource value: 9 + public const int TextInputLayout_counterOverflowTextAppearance = 9; + + // aapt resource value: 8 + public const int TextInputLayout_counterTextAppearance = 8; + + // aapt resource value: 4 + public const int TextInputLayout_errorEnabled = 4; + + // aapt resource value: 5 + public const int TextInputLayout_errorTextAppearance = 5; + + // aapt resource value: 10 + public const int TextInputLayout_hintAnimationEnabled = 10; + + // aapt resource value: 3 + public const int TextInputLayout_hintEnabled = 3; + + // aapt resource value: 2 + public const int TextInputLayout_hintTextAppearance = 2; + + public static int[] Toolbar = new int[] { + 16842927, + 16843072, + 2130771986, + 2130771989, + 2130771993, + 2130772005, + 2130772006, + 2130772007, + 2130772008, + 2130772010, + 2130772172, + 2130772173, + 2130772174, + 2130772175, + 2130772176, + 2130772177, + 2130772178, + 2130772179, + 2130772180, + 2130772181, + 2130772182, + 2130772183, + 2130772184, + 2130772185, + 2130772186}; + + // aapt resource value: 0 + public const int Toolbar_android_gravity = 0; + + // aapt resource value: 1 + public const int Toolbar_android_minHeight = 1; + + // aapt resource value: 19 + public const int Toolbar_collapseContentDescription = 19; + + // aapt resource value: 18 + public const int Toolbar_collapseIcon = 18; + + // aapt resource value: 6 + public const int Toolbar_contentInsetEnd = 6; + + // aapt resource value: 7 + public const int Toolbar_contentInsetLeft = 7; + + // aapt resource value: 8 + public const int Toolbar_contentInsetRight = 8; + + // aapt resource value: 5 + public const int Toolbar_contentInsetStart = 5; + + // aapt resource value: 4 + public const int Toolbar_logo = 4; + + // aapt resource value: 22 + public const int Toolbar_logoDescription = 22; + + // aapt resource value: 17 + public const int Toolbar_maxButtonHeight = 17; + + // aapt resource value: 21 + public const int Toolbar_navigationContentDescription = 21; + + // aapt resource value: 20 + public const int Toolbar_navigationIcon = 20; + + // aapt resource value: 9 + public const int Toolbar_popupTheme = 9; + + // aapt resource value: 3 + public const int Toolbar_subtitle = 3; + + // aapt resource value: 11 + public const int Toolbar_subtitleTextAppearance = 11; + + // aapt resource value: 24 + public const int Toolbar_subtitleTextColor = 24; + + // aapt resource value: 2 + public const int Toolbar_title = 2; + + // aapt resource value: 16 + public const int Toolbar_titleMarginBottom = 16; + + // aapt resource value: 14 + public const int Toolbar_titleMarginEnd = 14; + + // aapt resource value: 13 + public const int Toolbar_titleMarginStart = 13; + + // aapt resource value: 15 + public const int Toolbar_titleMarginTop = 15; + + // aapt resource value: 12 + public const int Toolbar_titleMargins = 12; + + // aapt resource value: 10 + public const int Toolbar_titleTextAppearance = 10; + + // aapt resource value: 23 + public const int Toolbar_titleTextColor = 23; + + public static int[] View = new int[] { + 16842752, + 16842970, + 2130772187, + 2130772188, + 2130772189}; + + // aapt resource value: 1 + public const int View_android_focusable = 1; + + // aapt resource value: 0 + public const int View_android_theme = 0; + + // aapt resource value: 3 + public const int View_paddingEnd = 3; + + // aapt resource value: 2 + public const int View_paddingStart = 2; + + // aapt resource value: 4 + public const int View_theme = 4; + + public static int[] ViewBackgroundHelper = new int[] { + 16842964, + 2130772190, + 2130772191}; + + // aapt resource value: 0 + public const int ViewBackgroundHelper_android_background = 0; + + // aapt resource value: 1 + public const int ViewBackgroundHelper_backgroundTint = 1; + + // aapt resource value: 2 + public const int ViewBackgroundHelper_backgroundTintMode = 2; + + public static int[] ViewStubCompat = new int[] { + 16842960, + 16842994, + 16842995}; + + // aapt resource value: 0 + public const int ViewStubCompat_android_id = 0; + + // aapt resource value: 2 + public const int ViewStubCompat_android_inflatedId = 2; + + // aapt resource value: 1 + public const int ViewStubCompat_android_layout = 1; + + static Styleable() + { + global::Android.Runtime.ResourceIdManager.UpdateIdValues(); + } + + private Styleable() + { + } + } + } +} +#pragma warning restore 1591 diff --git a/Support/Support.Android/Resources/drawable-hdpi/ic_save.png b/Support/Support.Android/Resources/drawable-hdpi/ic_save.png new file mode 100644 index 0000000..324ae5e Binary files /dev/null and b/Support/Support.Android/Resources/drawable-hdpi/ic_save.png differ diff --git a/Support/Support.Android/Resources/drawable-hdpi/profile_generic.png b/Support/Support.Android/Resources/drawable-hdpi/profile_generic.png new file mode 100644 index 0000000..05e8a93 Binary files /dev/null and b/Support/Support.Android/Resources/drawable-hdpi/profile_generic.png differ diff --git a/Support/Support.Android/Resources/drawable-mdpi/ic_save.png b/Support/Support.Android/Resources/drawable-mdpi/ic_save.png new file mode 100644 index 0000000..478b020 Binary files /dev/null and b/Support/Support.Android/Resources/drawable-mdpi/ic_save.png differ diff --git a/Support/Support.Android/Resources/drawable-mdpi/profile_generic.png b/Support/Support.Android/Resources/drawable-mdpi/profile_generic.png new file mode 100644 index 0000000..878354c Binary files /dev/null and b/Support/Support.Android/Resources/drawable-mdpi/profile_generic.png differ diff --git a/Support/Support.Android/Resources/drawable-xhdpi/ic_save.png b/Support/Support.Android/Resources/drawable-xhdpi/ic_save.png new file mode 100644 index 0000000..1b8bdbf Binary files /dev/null and b/Support/Support.Android/Resources/drawable-xhdpi/ic_save.png differ diff --git a/Support/Support.Android/Resources/drawable-xhdpi/profile_generic.png b/Support/Support.Android/Resources/drawable-xhdpi/profile_generic.png new file mode 100644 index 0000000..9527b6f Binary files /dev/null and b/Support/Support.Android/Resources/drawable-xhdpi/profile_generic.png differ diff --git a/Support/Support.Android/Resources/drawable-xxhdpi/ic_save.png b/Support/Support.Android/Resources/drawable-xxhdpi/ic_save.png new file mode 100644 index 0000000..9c4930c Binary files /dev/null and b/Support/Support.Android/Resources/drawable-xxhdpi/ic_save.png differ diff --git a/Support/Support.Android/Resources/drawable-xxhdpi/profile_generic.png b/Support/Support.Android/Resources/drawable-xxhdpi/profile_generic.png new file mode 100644 index 0000000..770c94f Binary files /dev/null and b/Support/Support.Android/Resources/drawable-xxhdpi/profile_generic.png differ diff --git a/Support/Support.Android/Resources/drawable-xxxhdpi/ic_save.png b/Support/Support.Android/Resources/drawable-xxxhdpi/ic_save.png new file mode 100644 index 0000000..db41d31 Binary files /dev/null and b/Support/Support.Android/Resources/drawable-xxxhdpi/ic_save.png differ diff --git a/Support/Support.Android/Resources/drawable-xxxhdpi/profile_generic.png b/Support/Support.Android/Resources/drawable-xxxhdpi/profile_generic.png new file mode 100644 index 0000000..0acad46 Binary files /dev/null and b/Support/Support.Android/Resources/drawable-xxxhdpi/profile_generic.png differ diff --git a/Support/Support.Android/Resources/drawable/background_splash.xml b/Support/Support.Android/Resources/drawable/background_splash.xml new file mode 100644 index 0000000..10ce4b2 --- /dev/null +++ b/Support/Support.Android/Resources/drawable/background_splash.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/Support/Support.Android/Resources/drawable/circle_background.xml b/Support/Support.Android/Resources/drawable/circle_background.xml new file mode 100644 index 0000000..007ec2e --- /dev/null +++ b/Support/Support.Android/Resources/drawable/circle_background.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/Support/Support.Android/Resources/drawable/heroplaceholder.png b/Support/Support.Android/Resources/drawable/heroplaceholder.png new file mode 100644 index 0000000..a014aae Binary files /dev/null and b/Support/Support.Android/Resources/drawable/heroplaceholder.png differ diff --git a/Support/Support.Android/Resources/drawable/xamarin_logo.png b/Support/Support.Android/Resources/drawable/xamarin_logo.png new file mode 100644 index 0000000..b36d00e Binary files /dev/null and b/Support/Support.Android/Resources/drawable/xamarin_logo.png differ diff --git a/Support/Support.Android/Resources/layout/activity_main.axml b/Support/Support.Android/Resources/layout/activity_main.axml new file mode 100644 index 0000000..2a932cf --- /dev/null +++ b/Support/Support.Android/Resources/layout/activity_main.axml @@ -0,0 +1,29 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/Resources/menu/top_menus.xml b/Support/Support.Android/Resources/menu/top_menus.xml new file mode 100644 index 0000000..81a5984 --- /dev/null +++ b/Support/Support.Android/Resources/menu/top_menus.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/Support/Support.Android/Resources/values-v19/styles.xml b/Support/Support.Android/Resources/values-v19/styles.xml new file mode 100644 index 0000000..2e63727 --- /dev/null +++ b/Support/Support.Android/Resources/values-v19/styles.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/Support/Support.Android/Resources/values-v21/styles.xml b/Support/Support.Android/Resources/values-v21/styles.xml new file mode 100644 index 0000000..06d18d2 --- /dev/null +++ b/Support/Support.Android/Resources/values-v21/styles.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/Resources/values/Strings.xml b/Support/Support.Android/Resources/values/Strings.xml new file mode 100644 index 0000000..57d85b5 --- /dev/null +++ b/Support/Support.Android/Resources/values/Strings.xml @@ -0,0 +1,22 @@ + + + Hello World, Click Me! + Support + Browse + About + Sign In + Not Now + Signing in... + Version 1.0 + Login + Learn More + Description: + Title: + Text: + Quantity: + Name + Information + Description + This app is written in C# and native APIs using the Xamarin Platform. It shares code with its iOS, Android, & Windows versions. + Sign in with your account to save and sync items + diff --git a/Support/Support.Android/Resources/values/arrays.xml b/Support/Support.Android/Resources/values/arrays.xml new file mode 100644 index 0000000..1aadefa --- /dev/null +++ b/Support/Support.Android/Resources/values/arrays.xml @@ -0,0 +1,7 @@ + + + + @string/tab1 + @string/tab2 + + \ No newline at end of file diff --git a/Support/Support.Android/Resources/values/colors.xml b/Support/Support.Android/Resources/values/colors.xml new file mode 100644 index 0000000..2609ad0 --- /dev/null +++ b/Support/Support.Android/Resources/values/colors.xml @@ -0,0 +1,7 @@ + + + #2196F3 + #1976D2 + #96d1ff + #F5F5F5 + diff --git a/Support/Support.Android/Resources/values/dimens.axml b/Support/Support.Android/Resources/values/dimens.axml new file mode 100644 index 0000000..92b9e4c --- /dev/null +++ b/Support/Support.Android/Resources/values/dimens.axml @@ -0,0 +1,12 @@ + + + + + 16dp + 8dp + 4dp + 120dp + 16dp + 16dp + + diff --git a/Support/Support.Android/Resources/values/styles.xml b/Support/Support.Android/Resources/values/styles.xml new file mode 100644 index 0000000..ce403d5 --- /dev/null +++ b/Support/Support.Android/Resources/values/styles.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/Support.Android.csproj b/Support/Support.Android/Support.Android.csproj new file mode 100644 index 0000000..04a4041 --- /dev/null +++ b/Support/Support.Android/Support.Android.csproj @@ -0,0 +1,165 @@ + + + + Debug + AnyCPU + {8EADCA87-5094-4532-91F6-93AC25667CE5} + {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Library + Support.Droid + Support.Android + v6.0 + True + Resources\Resource.designer.cs + Resource + Properties\AndroidManifest.xml + Resources + Assets + true + + + + + + + true + full + false + bin\Debug + DEBUG; + prompt + 4 + false + None + arm64-v8a;armeabi;armeabi-v7a;x86 + + + true + bin\Release + prompt + 4 + false + false + + + + + ..\..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll + + + ..\..\packages\Plugin.CurrentActivity.1.0.1\lib\MonoAndroid10\Plugin.CurrentActivity.dll + + + ..\..\packages\Plugin.Share.5.0.0\lib\MonoAndroid10\Plugin.Share.dll + + + ..\..\packages\Plugin.Share.5.0.0\lib\MonoAndroid10\Plugin.Share.Abstractions.dll + + + + + + + ..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll + + + ..\..\packages\Xamarin.Android.Support.CustomTabs.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.CustomTabs.dll + + + ..\..\packages\Xamarin.Android.Support.Design.23.3.0\lib\MonoAndroid43\Xamarin.Android.Support.Design.dll + + + ..\..\packages\Xamarin.Android.Support.v4.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll + + + ..\..\packages\Xamarin.Android.Support.v7.AppCompat.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll + + + ..\..\packages\Xamarin.Android.Support.v7.CardView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll + + + ..\..\packages\Xamarin.Android.Support.v7.RecyclerView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.RecyclerView.dll + + + ..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/Support.Android.csproj.user b/Support/Support.Android/Support.Android.csproj.user new file mode 100644 index 0000000..db12391 --- /dev/null +++ b/Support/Support.Android/Support.Android.csproj.user @@ -0,0 +1,6 @@ + + + + Meizu PRO 6 + + \ No newline at end of file diff --git a/Support/Support.Android/app.config b/Support/Support.Android/app.config new file mode 100644 index 0000000..374bc7c --- /dev/null +++ b/Support/Support.Android/app.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/bin/Debug/Java.Interop.dll.mdb b/Support/Support.Android/bin/Debug/Java.Interop.dll.mdb new file mode 100644 index 0000000..8b5baf4 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Java.Interop.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Microsoft.CSharp.dll.mdb b/Support/Support.Android/bin/Debug/Microsoft.CSharp.dll.mdb new file mode 100644 index 0000000..231ecd9 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Microsoft.CSharp.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Mono.Android.dll.mdb b/Support/Support.Android/bin/Debug/Mono.Android.dll.mdb new file mode 100644 index 0000000..81cae99 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Mono.Android.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Mono.CSharp.dll.mdb b/Support/Support.Android/bin/Debug/Mono.CSharp.dll.mdb new file mode 100644 index 0000000..f676bf0 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Mono.CSharp.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Newtonsoft.Json.dll b/Support/Support.Android/bin/Debug/Newtonsoft.Json.dll new file mode 100644 index 0000000..8289274 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Newtonsoft.Json.dll differ diff --git a/Support/Support.Android/bin/Debug/Newtonsoft.Json.xml b/Support/Support.Android/bin/Debug/Newtonsoft.Json.xml new file mode 100644 index 0000000..336b9ef --- /dev/null +++ b/Support/Support.Android/bin/Debug/Newtonsoft.Json.xml @@ -0,0 +1,8756 @@ + + + + Newtonsoft.Json + + + + + Represents a BSON Oid (object id). + + + + + Gets or sets the value of the Oid. + + The value of the Oid. + + + + Initializes a new instance of the class. + + The Oid value. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary. + + + true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false. + + + + + Gets or sets a value indicating whether the root object will be read as a JSON array. + + + true if the root object will be read as a JSON array; otherwise, false. + + + + + Gets or sets the used when reading values from BSON. + + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The reader. + + + + Initializes a new instance of the class. + + The stream. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Initializes a new instance of the class. + + The reader. + if set to true the root object will be read as a JSON array. + The used when reading values from BSON. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Changes the to Closed. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the used when writing values to BSON. + When set to no conversion will occur. + + The used when writing values to BSON. + + + + Initializes a new instance of the class. + + The stream. + + + + Initializes a new instance of the class. + + The writer. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Writes the end. + + The token. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes the beginning of a JSON array. + + + + + Writes the beginning of a JSON object. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Closes this stream and the underlying stream. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value that represents a BSON object id. + + The Object ID value to write. + + + + Writes a BSON regex. + + The regex pattern. + The regex options. + + + + Specifies how constructors are used when initializing objects during deserialization by the . + + + + + First attempt to use the public default constructor, then fall back to single parameterized constructor, then the non-public default constructor. + + + + + Json.NET will use a non-public default constructor before falling back to a parameterized constructor. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Create a custom object + + The object type to convert. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Creates an object which will then be populated by the serializer. + + Type of the object. + The created object. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Provides a base class for converting a to and from JSON. + + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a F# discriminated union type to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an ExpandoObject to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Gets a value indicating whether this can write JSON. + + + true if this can write JSON; otherwise, false. + + + + + Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z). + + + + + Gets or sets the date time styles used when converting a date to and from JSON. + + The date time styles used when converting a date to and from JSON. + + + + Gets or sets the date time format used when converting a date to and from JSON. + + The date time format used when converting a date to and from JSON. + + + + Gets or sets the culture used when converting a date to and from JSON. + + The culture used when converting a date to and from JSON. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Converts a to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from JSON and BSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts an to and from its name string value. + + + + + Gets or sets a value indicating whether the written enum text should be camel case. + + true if the written enum text will be camel case; otherwise, false. + + + + Gets or sets a value indicating whether integer values are allowed. + + true if integers are allowed; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + true if the written enum text will be camel case; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts a to and from a string (e.g. "1.2.3.4"). + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing property value of the JSON that is being converted. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + Converts XML to and from JSON. + + + + + Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements. + + The name of the deserialize root element. + + + + Gets or sets a flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + true if the array attibute is written to the XML; otherwise, false. + + + + Gets or sets a value indicating whether to write the root JSON object. + + true if the JSON root object is omitted; otherwise, false. + + + + Writes the JSON representation of the object. + + The to write to. + The calling serializer. + The value. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Checks if the attributeName is a namespace attribute. + + Attribute name to test. + The attribute name prefix if it has one, otherwise an empty string. + true if attribute name is for a namespace attribute, otherwise false. + + + + Determines whether this instance can convert the specified value type. + + Type of the value. + + true if this instance can convert the specified value type; otherwise, false. + + + + + Specifies how dates are formatted when writing JSON text. + + + + + Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z". + + + + + Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/". + + + + + Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text. + + + + + Date formatted strings are not parsed to a date type and are read as strings. + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to . + + + + + Specifies how to treat the time value when converting between string and . + + + + + Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time. + + + + + Treat as a UTC. If the object represents a local time, it is converted to a UTC. + + + + + Treat as a local time if a is being converted to a string. + If a string is being converted to , convert to a local time if a time zone is specified. + + + + + Time zone information should be preserved when converting. + + + + + Specifies default value handling options for the . + + + + + + + + + Include members where the member value is the same as the member's default value when serializing objects. + Included members are written to JSON. Has no effect when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + so that is is not written to JSON. + This option will ignore all default values (e.g. null for objects and nullable types; 0 for integers, + decimals and floating point numbers; and false for booleans). The default value ignored can be changed by + placing the on the property. + + + + + Members with a default value but no JSON will be set to their default value when deserializing. + + + + + Ignore members where the member value is the same as the member's default value when serializing objects + and sets members to their default value when deserializing. + + + + + Specifies float format handling options when writing special floating point numbers, e.g. , + and with . + + + + + Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity". + + + + + Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity. + Note that this will produce non-valid JSON. + + + + + Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property. + + + + + Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Floating point numbers are parsed to . + + + + + Floating point numbers are parsed to . + + + + + Specifies formatting options for the . + + + + + No special formatting is applied. This is the default. + + + + + Causes child objects to be indented according to the and settings. + + + + + Provides an interface for using pooled arrays. + + The array type content. + + + + Rent a array from the pool. This array must be returned when it is no longer needed. + + The minimum required length of the array. The returned array may be longer. + The rented array from the pool. This array must be returned when it is no longer needed. + + + + Return an array to the pool. + + The array that is being returned. + + + + Provides an interface to enable a class to return line and position information. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Gets the current line position. + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + Instructs the how to serialize the collection. + + + + + Gets or sets a value indicating whether null items are allowed in the collection. + + true if null items are allowed in the collection; otherwise, false. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with a flag indicating whether the array can contain null items + + A flag indicating whether the array can contain null items. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to use the specified constructor when deserializing that object. + + + + + Instructs the how to serialize the object. + + + + + Gets or sets the id. + + The id. + + + + Gets or sets the title. + + The title. + + + + Gets or sets the description. + + The description. + + + + Gets or sets the collection's items converter. + + The collection's items converter. + + + + The parameter list to use when constructing the described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonContainer(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by NamingStrategyType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonContainer(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + Gets or sets a value that indicates whether to preserve object references. + + + true to keep object reference; otherwise, false. The default is false. + + + + + Gets or sets a value that indicates whether to preserve collection's items references. + + + true to keep collection's items object references; otherwise, false. The default is false. + + + + + Gets or sets the reference loop handling used when serializing the collection's items. + + The reference loop handling. + + + + Gets or sets the type name handling used when serializing the collection's items. + + The type name handling. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Provides methods for converting between common language runtime types and JSON types. + + + + + + + + Gets or sets a function that creates default . + Default settings are automatically used by serialization methods on , + and and on . + To serialize without using any default settings create a with + . + + + + + Represents JavaScript's boolean value true as a string. This field is read-only. + + + + + Represents JavaScript's boolean value false as a string. This field is read-only. + + + + + Represents JavaScript's null as a string. This field is read-only. + + + + + Represents JavaScript's undefined as a string. This field is read-only. + + + + + Represents JavaScript's positive infinity as a string. This field is read-only. + + + + + Represents JavaScript's negative infinity as a string. This field is read-only. + + + + + Represents JavaScript's NaN as a string. This field is read-only. + + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + The time zone handling when the date is converted to a string. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation using the specified. + + The value to convert. + The format the date will be converted to. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + The string delimiter character. + The string escape handling. + A JSON string representation of the . + + + + Converts the to its JSON string representation. + + The value to convert. + A JSON string representation of the . + + + + Serializes the specified object to a JSON string. + + The object to serialize. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting. + + The object to serialize. + Indicates how the output is formatted. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a collection of . + + The object to serialize. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using formatting and a collection of . + + The object to serialize. + Indicates how the output is formatted. + A collection converters used while serializing. + A JSON string representation of the object. + + + + Serializes the specified object to a JSON string using . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A JSON string representation of the object. + + + + + Serializes the specified object to a JSON string using a type, formatting and . + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + A JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string. + Serialization will happen on a new thread. + + The object to serialize. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting. + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Asynchronously serializes the specified object to a JSON string using formatting and a collection of . + Serialization will happen on a new thread. + + The object to serialize. + Indicates how the output is formatted. + The used to serialize the object. + If this is null, default serialization settings will be used. + + A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object. + + + + + Deserializes the JSON to a .NET object. + + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to a .NET object using . + + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The JSON to deserialize. + The of object being deserialized. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type. + + The type of the object to deserialize to. + The JSON to deserialize. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the given anonymous type. + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the given anonymous type using . + + + The anonymous type to deserialize to. This can't be specified + traditionally and must be infered from the anonymous type passed + as a parameter. + + The JSON to deserialize. + The anonymous type object. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized anonymous type from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The type of the object to deserialize to. + The JSON to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The type of the object to deserialize to. + The object to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using a collection of . + + The JSON to deserialize. + The type of the object to deserialize. + Converters to use while deserializing. + The deserialized object from the JSON string. + + + + Deserializes the JSON to the specified .NET type using . + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + The deserialized object from the JSON string. + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The type of the object to deserialize to. + The JSON to deserialize. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type. + Deserialization will happen on a new thread. + + The JSON to deserialize. + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Asynchronously deserializes the JSON to the specified .NET type using . + Deserialization will happen on a new thread. + + The JSON to deserialize. + The type of the object to deserialize to. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string. + + + + + Populates the object with values from the JSON string. + + The JSON to populate values from. + The target object to populate values onto. + + + + Populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + + + Asynchronously populates the object with values from the JSON string using . + + The JSON to populate values from. + The target object to populate values onto. + + The used to deserialize the object. + If this is null, default serialization settings will be used. + + + A task that represents the asynchronous populate operation. + + + + + Serializes the to a JSON string. + + The node to convert to JSON. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting. + + The node to convert to JSON. + Indicates how the output is formatted. + A JSON string of the XNode. + + + + Serializes the to a JSON string using formatting and omits the root object if is true. + + The node to serialize. + Indicates how the output is formatted. + Omits writing the root object. + A JSON string of the XNode. + + + + Deserializes the from a JSON string. + + The JSON string. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by . + + The JSON string. + The name of the root element to append when deserializing. + The deserialized XNode + + + + Deserializes the from a JSON string nested in a root elment specified by + and writes a .NET array attribute for collections. + + The JSON string. + The name of the root element to append when deserializing. + + A flag to indicate whether to write the Json.NET array attribute. + This attribute helps preserve arrays when converting the written XML back to JSON. + + The deserialized XNode + + + + Converts an object to and from JSON. + + + + + Writes the JSON representation of the object. + + The to write to. + The value. + The calling serializer. + + + + Reads the JSON representation of the object. + + The to read from. + Type of the object. + The existing value of object being read. + The calling serializer. + The object value. + + + + Determines whether this instance can convert the specified object type. + + Type of the object. + + true if this instance can convert the specified object type; otherwise, false. + + + + + + Gets the of the JSON produced by the JsonConverter. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The of the JSON produced by the JsonConverter. + + + + Gets a value indicating whether this can read JSON. + + true if this can read JSON; otherwise, false. + + + + Gets a value indicating whether this can write JSON. + + true if this can write JSON; otherwise, false. + + + + Instructs the to use the specified when serializing the member or class. + + + + + Gets the of the . + + The of the . + + + + The parameter list to use when constructing the described by ConverterType. + If null, the default constructor is used. + + + + + Initializes a new instance of the class. + + Type of the . + + + + Initializes a new instance of the class. + + Type of the . + Parameter list to use when constructing the . Can be null. + + + + Represents a collection of . + + + + + Instructs the how to serialize the collection. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Instructs the to deserialize properties with no matching class member into the specified collection + and write values during serialization. + + + + + Gets or sets a value that indicates whether to write extension data when serializing the object. + + + true to write extension data when serializing the object; otherwise, false. The default is true. + + + + + Gets or sets a value that indicates whether to read extension data when deserializing the object. + + + true to read extension data when deserializing the object; otherwise, false. The default is true. + + + + + Initializes a new instance of the class. + + + + + Instructs the not to serialize the public field or public read/write property value. + + + + + Instructs the how to serialize the object. + + + + + Gets or sets the member serialization. + + The member serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified member serialization. + + The member serialization. + + + + Initializes a new instance of the class with the specified container Id. + + The container Id. + + + + Instructs the to always serialize the member with the specified name. + + + + + Gets or sets the used when serializing the property's collection items. + + The collection's items . + + + + The parameter list to use when constructing the described by ItemConverterType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonProperty(ItemConverterType = typeof(MyContainerConverter), ItemConverterParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the of the . + + The of the . + + + + The parameter list to use when constructing the described by NamingStrategyType. + If null, the default constructor is used. + When non-null, there must be a constructor defined in the that exactly matches the number, + order, and type of these parameters. + + + [JsonProperty(NamingStrategyType = typeof(MyNamingStrategy), NamingStrategyParameters = new object[] { 123, "Four" })] + + + + + Gets or sets the null value handling used when serializing this property. + + The null value handling. + + + + Gets or sets the default value handling used when serializing this property. + + The default value handling. + + + + Gets or sets the reference loop handling used when serializing this property. + + The reference loop handling. + + + + Gets or sets the object creation handling used when deserializing this property. + + The object creation handling. + + + + Gets or sets the type name handling used when serializing this property. + + The type name handling. + + + + Gets or sets whether this property's value is serialized as a reference. + + Whether this property's value is serialized as a reference. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets a value indicating whether this property is required. + + + A value indicating whether this property is required. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class with the specified name. + + Name of the property. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Specifies the state of the reader. + + + + + The Read method has not been called. + + + + + The end of the file has been reached successfully. + + + + + Reader is at a property. + + + + + Reader is at the start of an object. + + + + + Reader is in an object. + + + + + Reader is at the start of an array. + + + + + Reader is in an array. + + + + + The Close method has been called. + + + + + Reader has just read a value. + + + + + Reader is at the start of a constructor. + + + + + Reader in a constructor. + + + + + An error occurred that prevents the read operation from continuing. + + + + + The end of the file has been reached successfully. + + + + + Gets the current reader state. + + The current reader state. + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the reader is closed. + + + true to close the underlying stream or when + the reader is closed; otherwise false. The default is true. + + + + + Gets or sets a value indicating whether multiple pieces of JSON content can + be read from a continuous stream without erroring. + + + true to support reading multiple pieces of JSON content; otherwise false. The default is false. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + Get or set how time zones are handling when reading JSON. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how custom date formatted strings are parsed when reading JSON. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets the type of the current JSON token. + + + + + Gets the text value of the current JSON token. + + + + + Gets The Common Language Runtime (CLR) type for the current JSON token. + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Initializes a new instance of the class with the specified . + + + + + Reads the next JSON token from the stream. + + true if the next token was read successfully; false if there are no more tokens to read. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Skips the children of the current token. + + + + + Sets the current token. + + The new token. + + + + Sets the current token and value. + + The new token. + The value. + + + + Sets the state based on current token type. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Changes the to Closed. + + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Instructs the to always serialize the member, and require the member has a value. + + + + + The exception thrown when an error occurs during JSON serialization or deserialization. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Serializes and deserializes objects into and from the JSON format. + The enables you to control how objects are encoded into JSON. + + + + + Occurs when the errors during serialization and deserialization. + + + + + Gets or sets the used by the serializer when resolving references. + + + + + Gets or sets the used by the serializer when resolving type names. + + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how object references are preserved by the serializer. + + + + + Get or set how reference loops (e.g. a class referencing itself) is handled. + + + + + Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + + + + Get or set how null values are handled during serialization and deserialization. + + + + + Get or set how null default are handled during serialization and deserialization. + + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets a collection that will be used during serialization. + + Collection that will be used during serialization. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Gets a value indicating whether there will be a check for additional JSON content after deserializing an object. + + + true if there will be a check for additional JSON content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Creates a new instance. + The will not use default settings + from . + + + A new instance. + The will not use default settings + from . + + + + + Creates a new instance using the specified . + The will not use default settings + from . + + The settings to be applied to the . + + A new instance using the specified . + The will not use default settings + from . + + + + + Creates a new instance. + The will use default settings + from . + + + A new instance. + The will use default settings + from . + + + + + Creates a new instance using the specified . + The will use default settings + from as well as the specified . + + The settings to be applied to the . + + A new instance using the specified . + The will use default settings + from as well as the specified . + + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Populates the JSON values onto the target object. + + The that contains the JSON structure to reader values from. + The target object to populate values onto. + + + + Deserializes the JSON structure contained by the specified . + + The that contains the JSON structure to deserialize. + The being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The type of the object to deserialize. + The instance of being deserialized. + + + + Deserializes the JSON structure contained by the specified + into an instance of the specified type. + + The containing the object. + The of object being deserialized. + The instance of being deserialized. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + The type of the value being serialized. + This parameter is used when is Auto to write out the type name if the type of the value does not match. + Specifing the type is optional. + + + + + Serializes the specified and writes the JSON structure + to a Stream using the specified . + + The used to write the JSON structure. + The to serialize. + + + + Specifies the settings on a object. + + + + + Gets or sets how reference loops (e.g. a class referencing itself) is handled. + + Reference loop handling. + + + + Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization. + + Missing member handling. + + + + Gets or sets how objects are created during deserialization. + + The object creation handling. + + + + Gets or sets how null values are handled during serialization and deserialization. + + Null value handling. + + + + Gets or sets how null default are handled during serialization and deserialization. + + The default value handling. + + + + Gets or sets a collection that will be used during serialization. + + The converters. + + + + Gets or sets how object references are preserved by the serializer. + + The preserve references handling. + + + + Gets or sets how type name writing and reading is handled by the serializer. + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + The type name handling. + + + + Gets or sets how metadata properties are used during deserialization. + + The metadata properties handling. + + + + Gets or sets how a type name assembly is written and resolved by the serializer. + + The type name assembly format. + + + + Gets or sets how constructors are used during deserialization. + + The constructor handling. + + + + Gets or sets the contract resolver used by the serializer when + serializing .NET objects to JSON and vice versa. + + The contract resolver. + + + + Gets or sets the equality comparer used by the serializer when comparing references. + + The equality comparer. + + + + Gets or sets the used by the serializer when resolving references. + + The reference resolver. + + + + Gets or sets a function that creates the used by the serializer when resolving references. + + A function that creates the used by the serializer when resolving references. + + + + Gets or sets the used by the serializer when writing trace messages. + + The trace writer. + + + + Gets or sets the used by the serializer when resolving type names. + + The binder. + + + + Gets or sets the error handler called during serialization and deserialization. + + The error handler called during serialization and deserialization. + + + + Gets or sets the used by the serializer when invoking serialization callback methods. + + The context. + + + + Get or set how and values are formatted when writing JSON text, and the expected date format when reading JSON text. + + + + + Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a . + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling during serialization and deserialization. + + + + + Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written as JSON. + + + + + Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Gets or sets the culture used when reading JSON. Defaults to . + + + + + Gets a value indicating whether there will be a check for additional content after deserializing an object. + + + true if there will be a check for additional content after deserializing an object; otherwise, false. + + + + + Initializes a new instance of the class. + + + + + Represents a reader that provides fast, non-cached, forward-only access to JSON text data. + + + + + Initializes a new instance of the class with the specified . + + The TextReader containing the XML data to read. + + + + Gets or sets the reader's character buffer pool. + + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a []. + + A [] or a null reference if the next JSON token is null. This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Changes the state to closed. + + + + + Gets a value indicating whether the class can return line information. + + + true if LineNumber and LinePosition can be provided; otherwise, false. + + + + + Gets the current line number. + + + The current line number or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Gets the current line position. + + + The current line position or 0 if no line information is available (for example, HasLineInfo returns false). + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets the writer's character array pool. + + + + + Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented. + + + + + Gets or sets which character to use to quote attribute values. + + + + + Gets or sets which character to use for indenting when is set to Formatting.Indented. + + + + + Gets or sets a value indicating whether object names will be surrounded with quotes. + + + + + Creates an instance of the JsonWriter class using the specified . + + The TextWriter to write to. + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the specified end token. + + The end token to write. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Specifies the type of JSON token. + + + + + This is returned by the if a method has not been called. + + + + + An object start token. + + + + + An array start token. + + + + + A constructor start token. + + + + + An object property name. + + + + + A comment. + + + + + Raw JSON. + + + + + An integer. + + + + + A float. + + + + + A string. + + + + + A boolean. + + + + + A null token. + + + + + An undefined token. + + + + + An object end token. + + + + + An array end token. + + + + + A constructor end token. + + + + + A Date. + + + + + Byte data. + + + + + + Represents a reader that provides validation. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Sets an event handler for receiving schema validation errors. + + + + + Gets the text value of the current JSON token. + + + + + + Gets the depth of the current token in the JSON document. + + The depth of the current token in the JSON document. + + + + Gets the path of the current JSON token. + + + + + Gets the quotation mark character used to enclose the value of a string. + + + + + + Gets the type of the current JSON token. + + + + + + Gets the Common Language Runtime (CLR) type for the current JSON token. + + + + + + Initializes a new instance of the class that + validates the content returned from the given . + + The to read from while validating. + + + + Gets or sets the schema. + + The schema. + + + + Gets the used to construct this . + + The specified in the constructor. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a []. + + + A [] or a null reference if the next JSON token is null. + + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . This method will return null at the end of an array. + + + + Reads the next JSON token from the stream as a . + + A . + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets or sets a value indicating whether the underlying stream or + should be closed when the writer is closed. + + + true to close the underlying stream or when + the writer is closed; otherwise false. The default is true. + + + + + Gets the top. + + The top. + + + + Gets the state of the writer. + + + + + Gets the path of the writer. + + + + + Indicates how JSON text output is formatted. + + + + + Get or set how dates are written to JSON text. + + + + + Get or set how time zones are handling when writing JSON text. + + + + + Get or set how strings are escaped when writing JSON text. + + + + + Get or set how special floating point numbers, e.g. , + and , + are written to JSON text. + + + + + Get or set how and values are formatting when writing JSON text. + + + + + Gets or sets the culture used when writing JSON. Defaults to . + + + + + Creates an instance of the JsonWriter class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the end of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the end of an array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end constructor. + + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + A flag to indicate whether the text should be escaped when it is written as a JSON property name. + + + + Writes the end of the current JSON object or array. + + + + + Writes the current token and its children. + + The to read the token from. + + + + Writes the current token. + + The to read the token from. + A flag indicating whether the current token's children should be written. + + + + Writes the token and its value. + + The to write. + + The value to write. + A value is only required for tokens that have an associated value, e.g. the property name for . + A null value can be passed to the method for token's that don't have a value, e.g. . + + + + Writes the token. + + The to write. + + + + Writes the specified end token. + + The end token to write. + + + + Writes indent characters. + + + + + Writes the JSON value delimiter. + + + + + Writes an indent space. + + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON without changing the writer's state. + + The raw JSON to write. + + + + Writes raw JSON where a value is expected and updates the writer's state. + + The raw JSON to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes out the given white space. + + The string of white space characters. + + + + Releases unmanaged and - optionally - managed resources + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Sets the state of the JsonWriter, + + The JsonToken being written. + The value being written. + + + + The exception thrown when an error occurs while reading JSON text. + + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + Specifies how JSON comments are handled when loading JSON. + + + + + Ignore comments. + + + + + Load comments as a with type . + + + + + Specifies how line information is handled when loading JSON. + + + + + Ignore line information. + + + + + Load line information. + + + + + Contains the LINQ to JSON extension methods. + + + + + Returns a collection of tokens that contains the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the ancestors of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, the ancestors of every token in the source collection. + + + + Returns a collection of tokens that contains the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains the descendants of every token in the source collection. + + + + Returns a collection of tokens that contains every token in the source collection, and the descendants of every token in the source collection. + + The type of the objects in source, constrained to . + An of that contains the source collection. + An of that contains every token in the source collection, and the descendants of every token in the source collection. + + + + Returns a collection of child properties of every object in the source collection. + + An of that contains the source collection. + An of that contains the properties of every object in the source collection. + + + + Returns a collection of child values of every object in the source collection with the given key. + + An of that contains the source collection. + The token key. + An of that contains the values of every token in the source collection with the given key. + + + + Returns a collection of child values of every object in the source collection. + + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child values of every object in the source collection with the given key. + + The type to convert the values to. + An of that contains the source collection. + The token key. + An that contains the converted values of every token in the source collection with the given key. + + + + Returns a collection of converted child values of every object in the source collection. + + The type to convert the values to. + An of that contains the source collection. + An that contains the converted values of every token in the source collection. + + + + Converts the value. + + The type to convert the value to. + A cast as a of . + A converted value. + + + + Converts the value. + + The source collection type. + The type to convert the value to. + A cast as a of . + A converted value. + + + + Returns a collection of child tokens of every array in the source collection. + + The source collection type. + An of that contains the source collection. + An of that contains the values of every token in the source collection. + + + + Returns a collection of converted child tokens of every array in the source collection. + + An of that contains the source collection. + The type to convert the values to. + The source collection type. + An that contains the converted values of every token in the source collection. + + + + Returns the input typed as . + + An of that contains the source collection. + The input typed as . + + + + Returns the input typed as . + + The source collection type. + An of that contains the source collection. + The input typed as . + + + + Represents a collection of objects. + + The type of token + + + + Gets the with the specified key. + + + + + + Represents a JSON array. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Initializes a new instance of the class with the specified content. + + The contents of the array. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the at the specified index. + + + + + + Determines the index of a specific item in the . + + The object to locate in the . + + The index of if found in the list; otherwise, -1. + + + + + Inserts an item to the at the specified index. + + The zero-based index at which should be inserted. + The object to insert into the . + + is not a valid index in the . + The is read-only. + + + + Removes the item at the specified index. + + The zero-based index of the item to remove. + + is not a valid index in the . + The is read-only. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Adds an item to the . + + The object to add to the . + The is read-only. + + + + Removes all items from the . + + The is read-only. + + + + Determines whether the contains a specific value. + + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + + Copies to. + + The array. + Index of the array. + + + + Gets a value indicating whether the is read-only. + + true if the is read-only; otherwise, false. + + + + Removes the first occurrence of a specific object from the . + + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + + Represents a JSON constructor. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets or sets the name of this constructor. + + The constructor name. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name and content. + + The constructor name. + The contents of the constructor. + + + + Initializes a new instance of the class with the specified name. + + The constructor name. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified key. + + The with the specified key. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a token that can contain other tokens. + + + + + Occurs when the items list of the collection has changed, or the collection is reset. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Raises the event. + + The instance containing the event data. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Get the first child token of this token. + + + A containing the first child token of the . + + + + + Get the last child token of this token. + + + A containing the last child token of the . + + + + + Returns a collection of the child tokens of this token, in document order. + + + An of containing the child tokens of this , in document order. + + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + + A containing the child values of this , in document order. + + + + + Returns a collection of the descendant tokens for this token in document order. + + An containing the descendant tokens of the . + + + + Returns a collection of the tokens that contain this token, and all descendant tokens of this token, in document order. + + An containing this token, and all the descendant tokens of the . + + + + Adds the specified content as children of this . + + The content to be added. + + + + Adds the specified content as the first children of this . + + The content to be added. + + + + Creates an that can be used to add tokens to the . + + An that is ready to have content written to it. + + + + Replaces the children nodes of this token with the specified content. + + The content. + + + + Removes the child nodes from this token. + + + + + Merge the specified content into this . + + The content to be merged. + + + + Merge the specified content into this using . + + The content to be merged. + The used to merge the content. + + + + Gets the count of child JSON tokens. + + The count of child JSON tokens + + + + Represents a collection of objects. + + The type of token + + + + An empty collection of objects. + + + + + Initializes a new instance of the struct. + + The enumerable. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Gets the with the specified key. + + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Determines whether the specified is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Represents a JSON object. + + + + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Occurs when a property value changes. + + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Initializes a new instance of the class with the specified content. + + The contents of the object. + + + + Gets the node type for this . + + The type. + + + + Gets an of this object's properties. + + An of this object's properties. + + + + Gets a the specified name. + + The property name. + A with the specified name or null. + + + + Gets an of this object's property values. + + An of this object's property values. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets or sets the with the specified property name. + + + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + + + + Creates a from an object. + + The object that will be used to create . + A with the values of the specified object + + + + Creates a from an object. + + The object that will be used to create . + The that will be used to read the object. + A with the values of the specified object + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Gets the with the specified property name. + + Name of the property. + The with the specified property name. + + + + Gets the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + One of the enumeration values that specifies how the strings will be compared. + The with the specified property name. + + + + Tries to get the with the specified property name. + The exact property name will be searched for first and if no matching property is found then + the will be used to match a property. + + Name of the property. + The value. + One of the enumeration values that specifies how the strings will be compared. + true if a value was successfully retrieved; otherwise, false. + + + + Adds the specified property name. + + Name of the property. + The value. + + + + Removes the property with the specified name. + + Name of the property. + true if item was successfully removed; otherwise, false. + + + + Tries the get value. + + Name of the property. + The value. + true if a value was successfully retrieved; otherwise, false. + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Raises the event with the provided arguments. + + Name of the property. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Represents a JSON property. + + + + + Gets the container's children tokens. + + The container's children tokens. + + + + Gets the property name. + + The property name. + + + + Gets or sets the property value. + + The property value. + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Gets the node type for this . + + The type. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Initializes a new instance of the class. + + The property name. + The property content. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Loads an from a . + + A that will be read for the content of the . + A that contains the JSON that was read from the specified . + + + + Loads an from a . + + A that will be read for the content of the . + The used to load the JSON. + If this is null, default load settings will be used. + A that contains the JSON that was read from the specified . + + + + Represents a raw JSON string. + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class. + + The raw json. + + + + Creates an instance of with the content of the reader's current token. + + The reader. + An instance of with the content of the reader's current token. + + + + Specifies the settings used when loading JSON. + + + + + Gets or sets how JSON comments are handled when loading JSON. + + The JSON comment handling. + + + + Gets or sets how JSON line info is handled when loading JSON. + + The JSON line info handling. + + + + Specifies the settings used when merging JSON. + + + + + Gets or sets the method used when merging JSON arrays. + + The method used when merging JSON arrays. + + + + Gets or sets how how null value properties are merged. + + How null value properties are merged. + + + + Represents an abstract JSON token. + + + + + Gets a comparer that can compare two tokens for value equality. + + A that can compare two nodes for value equality. + + + + Gets or sets the parent. + + The parent. + + + + Gets the root of this . + + The root of this . + + + + Gets the node type for this . + + The type. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Compares the values of two tokens, including the values of all descendant tokens. + + The first to compare. + The second to compare. + true if the tokens are equal; otherwise false. + + + + Gets the next sibling token of this node. + + The that contains the next sibling token. + + + + Gets the previous sibling token of this node. + + The that contains the previous sibling token. + + + + Gets the path of the JSON token. + + + + + Adds the specified content immediately after this token. + + A content object that contains simple content or a collection of content objects to be added after this token. + + + + Adds the specified content immediately before this token. + + A content object that contains simple content or a collection of content objects to be added before this token. + + + + Returns a collection of the ancestor tokens of this token. + + A collection of the ancestor tokens of this token. + + + + Returns a collection of tokens that contain this token, and the ancestors of this token. + + A collection of tokens that contain this token, and the ancestors of this token. + + + + Returns a collection of the sibling tokens after this token, in document order. + + A collection of the sibling tokens after this tokens, in document order. + + + + Returns a collection of the sibling tokens before this token, in document order. + + A collection of the sibling tokens before this token, in document order. + + + + Gets the with the specified key. + + The with the specified key. + + + + Gets the with the specified key converted to the specified type. + + The type to convert the token to. + The token key. + The converted token value. + + + + Get the first child token of this token. + + A containing the first child token of the . + + + + Get the last child token of this token. + + A containing the last child token of the . + + + + Returns a collection of the child tokens of this token, in document order. + + An of containing the child tokens of this , in document order. + + + + Returns a collection of the child tokens of this token, in document order, filtered by the specified type. + + The type to filter the child tokens on. + A containing the child tokens of this , in document order. + + + + Returns a collection of the child values of this token, in document order. + + The type to convert the values to. + A containing the child values of this , in document order. + + + + Removes this token from its parent. + + + + + Replaces this token with the specified token. + + The value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Returns the indented JSON for this token. + + + The indented JSON for this token. + + + + + Returns the JSON for this token using the given formatting and converters. + + Indicates how the output is formatted. + A collection of which will be used when writing the token. + The JSON for this token using the given formatting and converters. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to []. + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an explicit conversion from to . + + The value. + The result of the conversion. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from [] to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Performs an implicit conversion from to . + + The value to create a from. + The initialized with the specified value. + + + + Creates an for this token. + + An that can be used to read this token and its descendants. + + + + Creates a from an object. + + The object that will be used to create . + A with the value of the specified object + + + + Creates a from an object using the specified . + + The object that will be used to create . + The that will be used when reading the object. + A with the value of the specified object + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the . + + The object type that the token will be deserialized to. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates the specified .NET type from the using the specified . + + The object type that the token will be deserialized to. + The that will be used when creating the object. + The new object created from the JSON value. + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Load a from a string that contains JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Load a from a string that contains JSON. + + A that contains JSON. + The used to load the JSON. + If this is null, default load settings will be used. + A populated from the string that contains JSON. + + + + Creates a from a . + + An positioned at the token to read into this . + The used to load the JSON. + If this is null, default load settings will be used. + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Creates a from a . + + An positioned at the token to read into this . + + An that contains the token and its descendant tokens + that were read from the reader. The runtime type of the token is determined + by the token type of the first token encountered in the reader. + + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A , or null. + + + + Selects a using a JPath expression. Selects the token that matches the object path. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + A . + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + An that contains the selected elements. + + + + Selects a collection of elements using a JPath expression. + + + A that contains a JPath expression. + + A flag to indicate whether an error should be thrown if no tokens are found when evaluating part of the expression. + An that contains the selected elements. + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Creates a new instance of the . All child tokens are recursively cloned. + + A new instance of the . + + + + Adds an object to the annotation list of this . + + The annotation to add. + + + + Get the first annotation object of the specified type from this . + + The type of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets the first annotation object of the specified type from this . + + The of the annotation to retrieve. + The first annotation object that matches the specified type, or null if no annotation is of the specified type. + + + + Gets a collection of annotations of the specified type for this . + + The type of the annotations to retrieve. + An that contains the annotations for this . + + + + Gets a collection of annotations of the specified type for this . + + The of the annotations to retrieve. + An of that contains the annotations that match the specified type for this . + + + + Removes the annotations of the specified type from this . + + The type of annotations to remove. + + + + Removes the annotations of the specified type from this . + + The of annotations to remove. + + + + Compares tokens to determine whether they are equal. + + + + + Determines whether the specified objects are equal. + + The first object of type to compare. + The second object of type to compare. + + true if the specified objects are equal; otherwise, false. + + + + + Returns a hash code for the specified object. + + The for which a hash code is to be returned. + A hash code for the specified object. + The type of is a reference type and is null. + + + + Represents a reader that provides fast, non-cached, forward-only access to serialized JSON data. + + + + + Gets the at the reader's current position. + + + + + Initializes a new instance of the class. + + The token to read from. + + + + Reads the next JSON token from the stream. + + + true if the next token was read successfully; false if there are no more tokens to read. + + + + + Gets the path of the current JSON token. + + + + + Specifies the type of token. + + + + + No token type has been set. + + + + + A JSON object. + + + + + A JSON array. + + + + + A JSON constructor. + + + + + A JSON object property. + + + + + A comment. + + + + + An integer value. + + + + + A float value. + + + + + A string value. + + + + + A boolean value. + + + + + A null value. + + + + + An undefined value. + + + + + A date value. + + + + + A raw JSON value. + + + + + A collection of bytes value. + + + + + A Guid value. + + + + + A Uri value. + + + + + A TimeSpan value. + + + + + Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data. + + + + + Gets the at the writer's current position. + + + + + Gets the token being writen. + + The token being writen. + + + + Initializes a new instance of the class writing to the given . + + The container being written to. + + + + Initializes a new instance of the class. + + + + + Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream. + + + + + Closes this stream and the underlying stream. + + + + + Writes the beginning of a JSON object. + + + + + Writes the beginning of a JSON array. + + + + + Writes the start of a constructor with the given name. + + The name of the constructor. + + + + Writes the end. + + The token. + + + + Writes the property name of a name/value pair on a JSON object. + + The name of the property. + + + + Writes a value. + An error will raised if the value cannot be written as a single JSON token. + + The value to write. + + + + Writes a null value. + + + + + Writes an undefined value. + + + + + Writes raw JSON. + + The raw JSON to write. + + + + Writes out a comment /*...*/ containing the specified text. + + Text to place inside the comment. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a [] value. + + The [] value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Writes a value. + + The value to write. + + + + Represents a value in JSON (string, integer, date, etc). + + + + + Initializes a new instance of the class from another object. + + A object to copy from. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Initializes a new instance of the class with the given value. + + The value. + + + + Gets a value indicating whether this token has child tokens. + + + true if this token has child values; otherwise, false. + + + + + Creates a comment with the given value. + + The value. + A comment with the given value. + + + + Creates a string with the given value. + + The value. + A string with the given value. + + + + Creates a null value. + + A null value. + + + + Creates a undefined value. + + A undefined value. + + + + Gets the node type for this . + + The type. + + + + Gets or sets the underlying token value. + + The underlying token value. + + + + Writes this token to a . + + A into which this method will write. + A collection of which will be used when writing the token. + + + + Indicates whether the current object is equal to another object of the same type. + + + true if the current object is equal to the parameter; otherwise, false. + + An object to compare with this object. + + + + Determines whether the specified is equal to the current . + + The to compare with the current . + + true if the specified is equal to the current ; otherwise, false. + + + The parameter is null. + + + + + Serves as a hash function for a particular type. + + + A hash code for the current . + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format provider. + + A that represents this instance. + + + + + Returns a that represents this instance. + + The format. + The format provider. + + A that represents this instance. + + + + + Returns the responsible for binding operations performed on this object. + + The expression tree representation of the runtime value. + + The to bind this object. + + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings: + Value + Meaning + Less than zero + This instance is less than . + Zero + This instance is equal to . + Greater than zero + This instance is greater than . + + + is not the same type as this instance. + + + + + Specifies how JSON arrays are merged together. + + + + Concatenate arrays. + + + Union arrays, skipping items that already exist. + + + Replace all array items. + + + Merge array items together, matched by index. + + + + Specifies how null value properties are merged. + + + + + The content's null value properties will be ignored during merging. + + + + + The content's null value properties will be merged. + + + + + Specifies the member serialization options for the . + + + + + All public members are serialized by default. Members can be excluded using or . + This is the default member serialization mode. + + + + + Only members marked with or are serialized. + This member serialization mode can also be set by marking the class with . + + + + + All public and private fields are serialized. Members can be excluded using or . + This member serialization mode can also be set by marking the class with + and setting IgnoreSerializableAttribute on to false. + + + + + Specifies metadata property handling options for the . + + + + + Read metadata properties located at the start of a JSON object. + + + + + Read metadata properties located anywhere in a JSON object. Note that this setting will impact performance. + + + + + Do not try to read metadata properties. + + + + + Specifies missing member handling options for the . + + + + + Ignore a missing member and do not attempt to deserialize it. + + + + + Throw a when a missing member is encountered during deserialization. + + + + + Specifies null value handling options for the . + + + + + + + + + Include null values when serializing and deserializing objects. + + + + + Ignore null values when serializing and deserializing objects. + + + + + Specifies how object creation is handled by the . + + + + + Reuse existing objects, create new objects when needed. + + + + + Only reuse existing objects. + + + + + Always create new objects. + + + + + Specifies reference handling options for the . + Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable. + + + + + + + + Do not preserve references when serializing types. + + + + + Preserve references when serializing into a JSON object structure. + + + + + Preserve references when serializing into a JSON array structure. + + + + + Preserve references when serializing. + + + + + Specifies reference loop handling options for the . + + + + + Throw a when a loop is encountered. + + + + + Ignore loop references and do not serialize. + + + + + Serialize loop references. + + + + + Indicating whether a property is required. + + + + + The property is not required. The default state. + + + + + The property must be defined in JSON but can be a null value. + + + + + The property must be defined in JSON and cannot be a null value. + + + + + The property is not required but it cannot be a null value. + + + + + + Contains the JSON schema extension methods. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + true if the specified is valid; otherwise, false. + + + + + + Determines whether the is valid. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + When this method returns, contains any error messages generated while validating. + + true if the specified is valid; otherwise, false. + + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + + + + + Validates the specified . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + The source to test. + The schema to test with. + The validation event handler. + + + + + An in-memory representation of a JSON Schema. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the id. + + + + + Gets or sets the title. + + + + + Gets or sets whether the object is required. + + + + + Gets or sets whether the object is read only. + + + + + Gets or sets whether the object is visible to users. + + + + + Gets or sets whether the object is transient. + + + + + Gets or sets the description of the object. + + + + + Gets or sets the types of values allowed by the object. + + The type. + + + + Gets or sets the pattern. + + The pattern. + + + + Gets or sets the minimum length. + + The minimum length. + + + + Gets or sets the maximum length. + + The maximum length. + + + + Gets or sets a number that the value should be divisble by. + + A number that the value should be divisble by. + + + + Gets or sets the minimum. + + The minimum. + + + + Gets or sets the maximum. + + The maximum. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + A flag indicating whether the value can not equal the number defined by the "minimum" attribute. + + + + Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + A flag indicating whether the value can not equal the number defined by the "maximum" attribute. + + + + Gets or sets the minimum number of items. + + The minimum number of items. + + + + Gets or sets the maximum number of items. + + The maximum number of items. + + + + Gets or sets the of items. + + The of items. + + + + Gets or sets a value indicating whether items in an array are validated using the instance at their array position from . + + + true if items are validated using their array position; otherwise, false. + + + + + Gets or sets the of additional items. + + The of additional items. + + + + Gets or sets a value indicating whether additional items are allowed. + + + true if additional items are allowed; otherwise, false. + + + + + Gets or sets whether the array items must be unique. + + + + + Gets or sets the of properties. + + The of properties. + + + + Gets or sets the of additional properties. + + The of additional properties. + + + + Gets or sets the pattern properties. + + The pattern properties. + + + + Gets or sets a value indicating whether additional properties are allowed. + + + true if additional properties are allowed; otherwise, false. + + + + + Gets or sets the required property if this property is present. + + The required property if this property is present. + + + + Gets or sets the a collection of valid enum values allowed. + + A collection of valid enum values allowed. + + + + Gets or sets disallowed types. + + The disallow types. + + + + Gets or sets the default value. + + The default value. + + + + Gets or sets the collection of that this schema extends. + + The collection of that this schema extends. + + + + Gets or sets the format. + + The format. + + + + Initializes a new instance of the class. + + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The object representing the JSON Schema. + + + + Reads a from the specified . + + The containing the JSON Schema to read. + The to use when resolving schema references. + The object representing the JSON Schema. + + + + Load a from a string that contains schema JSON. + + A that contains JSON. + A populated from the string that contains JSON. + + + + Parses the specified json. + + The json. + The resolver. + A populated from the string that contains JSON. + + + + Writes this schema to a . + + A into which this method will write. + + + + Writes this schema to a using the specified . + + A into which this method will write. + The resolver used. + + + + Returns a that represents the current . + + + A that represents the current . + + + + + + Returns detailed information about the schema exception. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the line number indicating where the error occurred. + + The line number indicating where the error occurred. + + + + Gets the line position indicating where the error occurred. + + The line position indicating where the error occurred. + + + + Gets the path to the JSON where the error occurred. + + The path to the JSON where the error occurred. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class + with a specified error message. + + The error message that explains the reason for the exception. + + + + Initializes a new instance of the class + with a specified error message and a reference to the inner exception that is the cause of this exception. + + The error message that explains the reason for the exception. + The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. + + + + + Generates a from a specified . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets how undefined schemas are handled by the serializer. + + + + + Gets or sets the contract resolver. + + The contract resolver. + + + + Generate a from the specified type. + + The type to generate a from. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + Generate a from the specified type. + + The type to generate a from. + The used to resolve schema references. + Specify whether the generated root will be nullable. + A generated from the specified type. + + + + + Resolves from an id. + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets or sets the loaded schemas. + + The loaded schemas. + + + + Initializes a new instance of the class. + + + + + Gets a for the specified reference. + + The id. + A for the specified reference. + + + + + The value types allowed by the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + No type specified. + + + + + String type. + + + + + Float type. + + + + + Integer type. + + + + + Boolean type. + + + + + Object type. + + + + + Array type. + + + + + Null type. + + + + + Any type. + + + + + + Specifies undefined schema Id handling options for the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Do not infer a schema Id. + + + + + Use the .NET type name as the schema Id. + + + + + Use the assembly qualified .NET type name as the schema Id. + + + + + + Returns detailed information related to the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Gets the associated with the validation error. + + The JsonSchemaException associated with the validation error. + + + + Gets the path of the JSON location where the validation error occurred. + + The path of the JSON location where the validation error occurred. + + + + Gets the text description corresponding to the validation error. + + The text description. + + + + + Represents the callback method that will handle JSON schema validation events and the . + + + JSON Schema validation has been moved to its own package. See http://www.newtonsoft.com/jsonschema for more details. + + + + + + Allows users to control class loading and mandate what class to load. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object + The type of the object the formatter creates a new instance of. + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + A camel case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Resolves member mappings for a type, camel casing property names. + + + + + Initializes a new instance of the class. + + + + + The default naming strategy. Property names and dictionary keys are unchanged. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Get and set values for a using dynamic methods. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Used by to resolves a for a given . + + + + + Gets a value indicating whether members are being get and set using dynamic code generation. + This value is determined by the runtime permissions available. + + + true if using dynamic code generation; otherwise, false. + + + + + Gets or sets a value indicating whether compiler generated members should be serialized. + + + true if serialized compiler generated members; otherwise, false. + + + + + Gets or sets the naming strategy used to resolve how property names and dictionary keys are serialized. + + The naming strategy used to resolve how property names and dictionary keys are serialized. + + + + Initializes a new instance of the class. + + + + + Initializes a new instance of the class. + + + If set to true the will use a cached shared with other resolvers of the same type. + Sharing the cache will significantly improve performance with multiple resolver instances because expensive reflection will only + happen once. This setting can cause unexpected behavior if different instances of the resolver are suppose to produce different + results. When set to false it is highly recommended to reuse instances with the . + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Gets the serializable members for the type. + + The type to get serializable members for. + The serializable members for the type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates the constructor parameters. + + The constructor to create properties for. + The type's member properties. + Properties for the given . + + + + Creates a for the given . + + The matching member property. + The constructor parameter. + A created for the given . + + + + Resolves the default for the contract. + + Type of the object. + The contract's default . + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Creates a for the given type. + + Type of the object. + A for the given type. + + + + Determines which contract type is created for the given type. + + Type of the object. + A for the given type. + + + + Creates properties for the given . + + The type to create properties for. + /// The member serialization mode for the type. + Properties for the given . + + + + Creates the used by the serializer to get and set values from a member. + + The member. + The used by the serializer to get and set values from a member. + + + + Creates a for the given . + + The member's parent . + The member to create a for. + A created for the given . + + + + Resolves the name of the property. + + Name of the property. + Resolved name of the property. + + + + Resolves the key of the dictionary. By default is used to resolve dictionary keys. + + Key of the dictionary. + Resolved key of the dictionary. + + + + Gets the resolved name of the property. + + Name of the property. + Name of the property. + + + + The default serialization binder used when resolving and loading classes from type names. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + The type of the object the formatter creates a new instance of. + + + + + When overridden in a derived class, controls the binding of a serialized object to a type. + + The type of the object the formatter creates a new instance of. + Specifies the name of the serialized object. + Specifies the name of the serialized object. + + + + Provides information surrounding an error. + + + + + Gets the error. + + The error. + + + + Gets the original object that caused the error. + + The original object that caused the error. + + + + Gets the member that caused the error. + + The member that caused the error. + + + + Gets the path of the JSON location where the error occurred. + + The path of the JSON location where the error occurred. + + + + Gets or sets a value indicating whether this is handled. + + true if handled; otherwise, false. + + + + Provides data for the Error event. + + + + + Gets the current object the error event is being raised against. + + The current object the error event is being raised against. + + + + Gets the error context. + + The error context. + + + + Initializes a new instance of the class. + + The current object. + The error context. + + + + Provides methods to get attributes. + + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Used by to resolves a for a given . + + + + + + + + + Resolves the contract for a given type. + + The type to resolve a contract for. + The contract for a given type. + + + + Used to resolve references when serializing and deserializing JSON by the . + + + + + Resolves a reference to its object. + + The serialization context. + The reference to resolve. + The object that + + + + Gets the reference for the sepecified object. + + The serialization context. + The object to get a reference for. + The reference to the object. + + + + Determines whether the specified object is referenced. + + The serialization context. + The object to test for a reference. + + true if the specified object is referenced; otherwise, false. + + + + + Adds a reference to the specified object. + + The serialization context. + The reference. + The object to reference. + + + + Represents a trace writer. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + The that will be used to filter the trace messages passed to the writer. + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Provides methods to get and set values. + + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + Contract details for a used by the . + + + + + Gets the of the collection items. + + The of the collection items. + + + + Gets a value indicating whether the collection type is a multidimensional array. + + true if the collection type is a multidimensional array; otherwise, false. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the collection values. + + true if the creator has a parameter with the collection values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the default collection items . + + The converter. + + + + Gets or sets a value indicating whether the collection items preserve object references. + + true if collection items preserve object references; otherwise, false. + + + + Gets or sets the collection item reference loop handling. + + The reference loop handling. + + + + Gets or sets the collection item type name handling. + + The type name handling. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Handles serialization callback events. + + The object that raised the callback event. + The streaming context. + + + + Handles serialization error callback events. + + The object that raised the callback event. + The streaming context. + The error context. + + + + Sets extension data for an object during deserialization. + + The object to set extension data on. + The extension data key. + The extension data value. + + + + Gets extension data for an object during serialization. + + The object to set extension data on. + + + + Contract details for a used by the . + + + + + Gets the underlying type for the contract. + + The underlying type for the contract. + + + + Gets or sets the type created during deserialization. + + The type created during deserialization. + + + + Gets or sets whether this type contract is serialized as a reference. + + Whether this type contract is serialized as a reference. + + + + Gets or sets the default for this contract. + + The converter. + + + + Gets or sets all methods called immediately after deserialization of the object. + + The methods called immediately after deserialization of the object. + + + + Gets or sets all methods called during deserialization of the object. + + The methods called during deserialization of the object. + + + + Gets or sets all methods called after serialization of the object graph. + + The methods called after serialization of the object graph. + + + + Gets or sets all methods called before serialization of the object. + + The methods called before serialization of the object. + + + + Gets or sets all method called when an error is thrown during the serialization of the object. + + The methods called when an error is thrown during the serialization of the object. + + + + Gets or sets the method called immediately after deserialization of the object. + + The method called immediately after deserialization of the object. + + + + Gets or sets the method called during deserialization of the object. + + The method called during deserialization of the object. + + + + Gets or sets the method called after serialization of the object graph. + + The method called after serialization of the object graph. + + + + Gets or sets the method called before serialization of the object. + + The method called before serialization of the object. + + + + Gets or sets the method called when an error is thrown during the serialization of the object. + + The method called when an error is thrown during the serialization of the object. + + + + Gets or sets the default creator method used to create the object. + + The default creator method used to create the object. + + + + Gets or sets a value indicating whether the default creator is non public. + + true if the default object creator is non-public; otherwise, false. + + + + Contract details for a used by the . + + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Gets or sets the dictionary key resolver. + + The dictionary key resolver. + + + + Gets the of the dictionary keys. + + The of the dictionary keys. + + + + Gets the of the dictionary values. + + The of the dictionary values. + + + + Gets or sets the function used to create the object. When set this function will override . + + The function used to create the object. + + + + Gets a value indicating whether the creator has a parameter with the dictionary values. + + true if the creator has a parameter with the dictionary values; otherwise, false. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets the object's properties. + + The object's properties. + + + + Gets or sets the property name resolver. + + The property name resolver. + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Gets or sets the object member serialization. + + The member object serialization. + + + + Gets or sets a value that indicates whether the object's properties are required. + + + A value indicating whether the object's properties are required. + + + + + Gets the object's properties. + + The object's properties. + + + + Gets the constructor parameters required for any non-default constructor + + + + + Gets a collection of instances that define the parameters used with . + + + + + Gets or sets the override constructor used to create the object. + This is set when a constructor is marked up using the + JsonConstructor attribute. + + The override constructor. + + + + Gets or sets the parametrized constructor used to create the object. + + The parametrized constructor. + + + + Gets or sets the function used to create the object. When set this function will override . + This function is called with a collection of arguments which are defined by the collection. + + The function used to create the object. + + + + Gets or sets the extension data setter. + + + + + Gets or sets the extension data getter. + + + + + Gets or sets the extension data value type. + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Maps a JSON property to a .NET member or constructor parameter. + + + + + Gets or sets the name of the property. + + The name of the property. + + + + Gets or sets the type that declared this property. + + The type that declared this property. + + + + Gets or sets the order of serialization of a member. + + The numeric order of serialization. + + + + Gets or sets the name of the underlying member or parameter. + + The name of the underlying member or parameter. + + + + Gets the that will get and set the during serialization. + + The that will get and set the during serialization. + + + + Gets or sets the for this property. + + The for this property. + + + + Gets or sets the type of the property. + + The type of the property. + + + + Gets or sets the for the property. + If set this converter takes presidence over the contract converter for the property type. + + The converter. + + + + Gets or sets the member converter. + + The member converter. + + + + Gets or sets a value indicating whether this is ignored. + + true if ignored; otherwise, false. + + + + Gets or sets a value indicating whether this is readable. + + true if readable; otherwise, false. + + + + Gets or sets a value indicating whether this is writable. + + true if writable; otherwise, false. + + + + Gets or sets a value indicating whether this has a member attribute. + + true if has a member attribute; otherwise, false. + + + + Gets the default value. + + The default value. + + + + Gets or sets a value indicating whether this is required. + + A value indicating whether this is required. + + + + Gets or sets a value indicating whether this property preserves object references. + + + true if this instance is reference; otherwise, false. + + + + + Gets or sets the property null value handling. + + The null value handling. + + + + Gets or sets the property default value handling. + + The default value handling. + + + + Gets or sets the property reference loop handling. + + The reference loop handling. + + + + Gets or sets the property object creation handling. + + The object creation handling. + + + + Gets or sets or sets the type name handling. + + The type name handling. + + + + Gets or sets a predicate used to determine whether the property should be serialize. + + A predicate used to determine whether the property should be serialize. + + + + Gets or sets a predicate used to determine whether the property should be deserialized. + + A predicate used to determine whether the property should be deserialized. + + + + Gets or sets a predicate used to determine whether the property should be serialized. + + A predicate used to determine whether the property should be serialized. + + + + Gets or sets an action used to set whether the property has been deserialized. + + An action used to set whether the property has been deserialized. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Gets or sets the converter used when serializing the property's collection items. + + The collection's items converter. + + + + Gets or sets whether this property's collection items are serialized as a reference. + + Whether this property's collection items are serialized as a reference. + + + + Gets or sets the the type name handling used when serializing the property's collection items. + + The collection's items type name handling. + + + + Gets or sets the the reference loop handling used when serializing the property's collection items. + + The collection's items reference loop handling. + + + + A collection of objects. + + + + + Initializes a new instance of the class. + + The type. + + + + When implemented in a derived class, extracts the key from the specified element. + + The element from which to extract the key. + The key for the specified element. + + + + Adds a object. + + The property to add to the collection. + + + + Gets the closest matching object. + First attempts to get an exact case match of propertyName and then + a case insensitive match. + + Name of the property. + A matching property if found. + + + + Gets a property by property name. + + The name of the property to get. + Type property name string comparison. + A matching property if found. + + + + Contract details for a used by the . + + + + + Initializes a new instance of the class. + + The underlying type for the contract. + + + + Lookup and create an instance of the JsonConverter type described by the argument. + + The JsonConverter type to create. + Optional arguments to pass to an initializing constructor of the JsonConverter. + If null, the default constructor is used. + + + + Represents a trace writer that writes to memory. When the trace message limit is + reached then old trace messages will be removed as new messages are added. + + + + + Gets the that will be used to filter the trace messages passed to the writer. + For example a filter level of Info will exclude Verbose messages and include Info, + Warning and Error messages. + + + The that will be used to filter the trace messages passed to the writer. + + + + + Initializes a new instance of the class. + + + + + Writes the specified trace level, message and optional exception. + + The at which to write this trace. + The trace message. + The trace exception. This parameter is optional. + + + + Returns an enumeration of the most recent trace messages. + + An enumeration of the most recent trace messages. + + + + Returns a of the most recent trace messages. + + + A of the most recent trace messages. + + + + + A base class for resolving how property names and dictionary keys are serialized. + + + + + A flag indicating whether dictionary keys should be processed. + Defaults to false. + + + + + A flag indicating whether explicitly specified property names, + e.g. a property name customized with a , should be processed. + Defaults to false. + + + + + Gets the serialized name for a given property name. + + The initial property name. + A flag indicating whether the property has had a name explicitly specfied. + The serialized property name. + + + + Gets the serialized key for a given dictionary key. + + The initial dictionary key. + The serialized dictionary key. + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Represents a method that constructs an object. + + The object type to create. + + + + When applied to a method, specifies that the method is called when an error occurs serializing an object. + + + + + Provides methods to get attributes from a , , or . + + + + + Initializes a new instance of the class. + + The instance to get attributes for. This parameter should be a , , or . + + + + Returns a collection of all of the attributes, or an empty collection if there are no attributes. + + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Returns a collection of attributes, identified by type, or an empty collection if there are no attributes. + + The type of the attributes. + When true, look up the hierarchy chain for the inherited custom attribute. + A collection of s, or an empty collection. + + + + Get and set values for a using reflection. + + + + + Initializes a new instance of the class. + + The member info. + + + + Sets the value. + + The target to set the value on. + The value to set on the target. + + + + Gets the value. + + The target to get the value from. + The value. + + + + A snake case naming strategy. + + + + + Initializes a new instance of the class. + + + A flag indicating whether dictionary keys should be processed. + + + A flag indicating whether explicitly specified property names should be processed, + e.g. a property name customized with a . + + + + + Initializes a new instance of the class. + + + + + Resolves the specified property name. + + The property name to resolve. + The resolved property name. + + + + Specifies how strings are escaped when writing JSON text. + + + + + Only control characters (e.g. newline) are escaped. + + + + + All non-ASCII and control characters (e.g. newline) are escaped. + + + + + HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped. + + + + + Specifies what messages to output for the class. + + + + + Output no tracing and debugging messages. + + + + + Output error-handling messages. + + + + + Output warnings and error-handling messages. + + + + + Output informational messages, warnings, and error-handling messages. + + + + + Output all debugging and tracing messages. + + + + + Specifies type name handling options for the . + + + should be used with caution when your application deserializes JSON from an external source. + Incoming types should be validated with a custom + when deserializing with a value other than TypeNameHandling.None. + + + + + Do not include the .NET type name when serializing types. + + + + + Include the .NET type name when serializing into a JSON object structure. + + + + + Include the .NET type name when serializing into a JSON array structure. + + + + + Always include the .NET type name when serializing. + + + + + Include the .NET type name when the type of the object being serialized is not the same as its declared type. + + + + + Determines whether the collection is null or empty. + + The collection. + + true if the collection is null or empty; otherwise, false. + + + + + Adds the elements of the specified collection to the specified generic IList. + + The list to add to. + The collection of elements to add. + + + + Converts the value to the specified type. If the value is unable to be converted, the + value is checked whether it assignable to the specified type. + + The value to convert. + The culture to use when converting. + The type to convert or cast the value to. + + The converted type. If conversion was unsuccessful, the initial value + is returned if assignable to the target type. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic that returns a result + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Helper method for generating a MetaObject which calls a + specific method on Dynamic, but uses one of the arguments for + the result. + + + + + Returns a Restrictions object which includes our current restrictions merged + with a restriction limiting our type + + + + + Gets a dictionary of the names and values of an Enum type. + + + + + + Gets a dictionary of the names and values of an Enum type. + + The enum type to get names and values for. + + + + + Gets the type of the typed collection's items. + + The type. + The type of the typed collection's items. + + + + Gets the member's underlying type. + + The member. + The underlying type of the member. + + + + Determines whether the member is an indexed property. + + The member. + + true if the member is an indexed property; otherwise, false. + + + + + Determines whether the property is an indexed property. + + The property. + + true if the property is an indexed property; otherwise, false. + + + + + Gets the member's value on the object. + + The member. + The target object. + The member's value on the object. + + + + Sets the member's value on the target object. + + The member. + The target. + The value. + + + + Determines whether the specified MemberInfo can be read. + + The MemberInfo to determine whether can be read. + /// if set to true then allow the member to be gotten non-publicly. + + true if the specified MemberInfo can be read; otherwise, false. + + + + + Determines whether the specified MemberInfo can be set. + + The MemberInfo to determine whether can be set. + if set to true then allow the member to be set non-publicly. + if set to true then allow the member to be set if read-only. + + true if the specified MemberInfo can be set; otherwise, false. + + + + + Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer. + + + + + Determines whether the string is all white space. Empty string will return false. + + The string to test whether it is all white space. + + true if the string is all white space; otherwise, false. + + + + + Specifies the state of the . + + + + + An exception has been thrown, which has left the in an invalid state. + You may call the method to put the in the Closed state. + Any other method calls results in an being thrown. + + + + + The method has been called. + + + + + An object is being written. + + + + + A array is being written. + + + + + A constructor is being written. + + + + + A property is being written. + + + + + A write method has not been called. + + + + + Indicates the method that will be used during deserialization for locating and loading assemblies. + + + + + In simple mode, the assembly used during deserialization need not match exactly the assembly used during serialization. Specifically, the version numbers need not match as the LoadWithPartialName method is used to load the assembly. + + + + + In full mode, the assembly used during deserialization must match exactly the assembly used during serialization. The Load method of the Assembly class is used to load the assembly. + + + + diff --git a/Support/Support.Android/bin/Debug/Plugin.CurrentActivity.dll b/Support/Support.Android/bin/Debug/Plugin.CurrentActivity.dll new file mode 100644 index 0000000..9c155d9 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Plugin.CurrentActivity.dll differ diff --git a/Support/Support.Android/bin/Debug/Plugin.CurrentActivity.xml b/Support/Support.Android/bin/Debug/Plugin.CurrentActivity.xml new file mode 100644 index 0000000..182fbe7 --- /dev/null +++ b/Support/Support.Android/bin/Debug/Plugin.CurrentActivity.xml @@ -0,0 +1,40 @@ + + + + Plugin.CurrentActivity + + + + + Cross platform CurrentActivity implemenations + + + + + Current settings to use + + + + + Implementation for Feature + + + + + Gets or sets the activity. + + The activity. + + + + Current Activity Interface + + + + + Gets or sets the activity. + + The activity. + + + diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.dll b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.dll new file mode 100644 index 0000000..0f69ba8 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.dll differ diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.dll.mdb b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.dll.mdb new file mode 100644 index 0000000..9db5b85 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.pdb b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.pdb new file mode 100644 index 0000000..0e6dd9d Binary files /dev/null and b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.pdb differ diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.xml b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.xml new file mode 100644 index 0000000..470c0ac --- /dev/null +++ b/Support/Support.Android/bin/Debug/Plugin.Share.Abstractions.xml @@ -0,0 +1,247 @@ + + + + Plugin.Share.Abstractions + + + + + Platform specific Browser Options + + + + + iOS: Gets or sets to use the SFSafariWebViewController on iOS 9+ (recommended). + Default is true. + + + + + iOS: Gets or sets to use reader mode (good for markdown files). + Default is false. + + + + + iOS: Gets or sets the color to tint the background of the navigation bar and the toolbar (iOS 10+ only). + If null (default) the default color will be used. + + + + + iOS: Gets or sets the color to tint the control buttons on the navigation bar and the toolbar (iOS 10+ only). + If null (default) the default color will be used. + + + + + Android: Gets or sets to display title as well as url in chrome custom tabs. + Default is true + + + + + Android: Gets or sets the toolbar color of the chrome custom tabs. + If null (default) the default color will be used. + + + + + Interface for Share + + + + + Open a browser to a specific url + + Url to open + Platform specific options + True if the operation was successful, false otherwise + + + + Share a message with compatible services + + Message to share + Platform specific options + True if the operation was successful, false otherwise + + + + Sets text of the clipboard + + Text to set + Label to display (not required, Android only) + True if the operation was successful, false otherwise + + + + Gets if clipboard is supported + + + + + RGB values of 0-255 for shared + + + + + Alpha 0-255 + + + + + Red 0-255 + + + + + Green 0-255 + + + + + Blue 0-255 + + + + + Initializes a new instance of the class with default values. + + + + + Initializes a new instance of the class with the specified values. Alpha is set to 255 (fully opaque). + + Red 0-255 + Green 0-255 + Blue 0-255 + + + + Initializes a new instance of the class with the specified values. + + Red 0-255 + Green 0-255 + Blue 0-255 + Alpha 0-255 + + + + Message object to share with compatible services + + + + + Gets or sets the title of the message. Used as email subject if sharing with mail apps. + + + + + Gets or sets the text of the message. + + + + + Gets or sets the link to include with the message. + + + + + Platform specific Share Options + + + + + Android: Gets or sets the title of the app chooser popup. + If null (default) the system default title is used. + + + + + iOS: Gets or sets the UIActivityTypes that should not be displayed. + If null (default) the value of is used. + + + + + The object assigns the image to a contact. + + + + + The object posts the provided content to the pasteboard. + + + + + The object posts the provided content to a new email message. + + + + + The object posts the provided content to the Messages app. + + + + + The object posts the provided content to the user’s wall on Facebook. + + + + + The object posts the provided content to the user’s Twitter feed. + + + + + The object posts the provided content to the user’s Weibo feed. + + + + + The object prints the provided content. + + + + + The object assigns the image or video to the user’s camera roll. + + + + + The object adds the URL to Safari’s reading list. + Supported on iOS 7+ only. + + + + + The object makes the provided content available via AirDrop. + Supported on iOS 7+ only. + + + + + The object posts the provided image to the user’s Flickr account. + Supported on iOS 7+ only. + + + + + The object posts the provided content to the user’s Tencent Weibo feed. + Supported on iOS 7+ only. + + + + + The object posts the provided video to the user’s Vimeo account. + Supported on iOS 7+ only. + + + + + Supported on iOS 9+ only. + + + + diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.dll b/Support/Support.Android/bin/Debug/Plugin.Share.dll new file mode 100644 index 0000000..59435fd Binary files /dev/null and b/Support/Support.Android/bin/Debug/Plugin.Share.dll differ diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.dll.mdb b/Support/Support.Android/bin/Debug/Plugin.Share.dll.mdb new file mode 100644 index 0000000..e338b68 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Plugin.Share.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.pdb b/Support/Support.Android/bin/Debug/Plugin.Share.pdb new file mode 100644 index 0000000..a6f8ede Binary files /dev/null and b/Support/Support.Android/bin/Debug/Plugin.Share.pdb differ diff --git a/Support/Support.Android/bin/Debug/Plugin.Share.xml b/Support/Support.Android/bin/Debug/Plugin.Share.xml new file mode 100644 index 0000000..c37d892 --- /dev/null +++ b/Support/Support.Android/bin/Debug/Plugin.Share.xml @@ -0,0 +1,64 @@ + + + + Plugin.Share + + + + + Cross platform Share implemenations + + + + + Current settings to use + + + + + Extension class used for color conversion + + + + + Convert object to native color + + The color to convert + The converted color + + + + Implementation for Feature + + + + + Open a browser to a specific url + + Url to open + Platform specific options + True if the operation was successful, false otherwise + + + + Share a message with compatible services + + Message to share + Platform specific options + True if the operation was successful, false otherwise + + + + Sets text of the clipboard + + Text to set + Label to display (not required, Android only) + True if the operation was successful, false otherwise + + + + Gets if cliboard is supported + + + + diff --git a/Support/Support.Android/bin/Debug/Support.Android.dll b/Support/Support.Android/bin/Debug/Support.Android.dll new file mode 100644 index 0000000..910a9dc Binary files /dev/null and b/Support/Support.Android/bin/Debug/Support.Android.dll differ diff --git a/Support/Support.Android/bin/Debug/Support.Android.dll.config b/Support/Support.Android/bin/Debug/Support.Android.dll.config new file mode 100644 index 0000000..374bc7c --- /dev/null +++ b/Support/Support.Android/bin/Debug/Support.Android.dll.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/bin/Debug/Support.Android.dll.mdb b/Support/Support.Android/bin/Debug/Support.Android.dll.mdb new file mode 100644 index 0000000..f6c1f59 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Support.Android.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Support.Android.pdb b/Support/Support.Android/bin/Debug/Support.Android.pdb new file mode 100644 index 0000000..b150f81 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Support.Android.pdb differ diff --git a/Support/Support.Android/bin/Debug/Support.dll.mdb b/Support/Support.Android/bin/Debug/Support.dll.mdb new file mode 100644 index 0000000..24e3fd0 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Support.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.ComponentModel.Composition.dll.mdb b/Support/Support.Android/bin/Debug/System.ComponentModel.Composition.dll.mdb new file mode 100644 index 0000000..6289810 Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.ComponentModel.Composition.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.Core.dll.mdb b/Support/Support.Android/bin/Debug/System.Core.dll.mdb new file mode 100644 index 0000000..fb5a5c0 Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.Core.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.Net.Http.dll.mdb b/Support/Support.Android/bin/Debug/System.Net.Http.dll.mdb new file mode 100644 index 0000000..675b784 Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.Net.Http.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.Runtime.Serialization.Primitives.dll.mdb b/Support/Support.Android/bin/Debug/System.Runtime.Serialization.Primitives.dll.mdb new file mode 100644 index 0000000..bf70bb8 Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.Runtime.Serialization.Primitives.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.Runtime.Serialization.dll.mdb b/Support/Support.Android/bin/Debug/System.Runtime.Serialization.dll.mdb new file mode 100644 index 0000000..c0c8eca Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.Runtime.Serialization.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.ServiceModel.Internals.dll.mdb b/Support/Support.Android/bin/Debug/System.ServiceModel.Internals.dll.mdb new file mode 100644 index 0000000..5970bcf Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.ServiceModel.Internals.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.Xml.Linq.dll.mdb b/Support/Support.Android/bin/Debug/System.Xml.Linq.dll.mdb new file mode 100644 index 0000000..09e1862 Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.Xml.Linq.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.Xml.dll.mdb b/Support/Support.Android/bin/Debug/System.Xml.dll.mdb new file mode 100644 index 0000000..4b4499f Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.Xml.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/System.dll.mdb b/Support/Support.Android/bin/Debug/System.dll.mdb new file mode 100644 index 0000000..89e35f2 Binary files /dev/null and b/Support/Support.Android/bin/Debug/System.dll.mdb differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Animated.Vector.Drawable.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Animated.Vector.Drawable.dll new file mode 100644 index 0000000..7e8f124 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Animated.Vector.Drawable.dll differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.CustomTabs.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.CustomTabs.dll new file mode 100644 index 0000000..69349d4 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.CustomTabs.dll differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Design.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Design.dll new file mode 100644 index 0000000..39815e9 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Design.dll differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Vector.Drawable.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Vector.Drawable.dll new file mode 100644 index 0000000..125d2da Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.Vector.Drawable.dll differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v4.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v4.dll new file mode 100644 index 0000000..fa14c84 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v4.dll differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.AppCompat.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.AppCompat.dll new file mode 100644 index 0000000..39fa7d1 Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.AppCompat.dll differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.CardView.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.CardView.dll new file mode 100644 index 0000000..116d42c Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.CardView.dll differ diff --git a/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.RecyclerView.dll b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.RecyclerView.dll new file mode 100644 index 0000000..5874bdd Binary files /dev/null and b/Support/Support.Android/bin/Debug/Xamarin.Android.Support.v7.RecyclerView.dll differ diff --git a/Support/Support.Android/bin/Debug/com.companyname.Support-Signed.apk b/Support/Support.Android/bin/Debug/com.companyname.Support-Signed.apk new file mode 100644 index 0000000..d0dba7e Binary files /dev/null and b/Support/Support.Android/bin/Debug/com.companyname.Support-Signed.apk differ diff --git a/Support/Support.Android/bin/Debug/com.companyname.Support.apk b/Support/Support.Android/bin/Debug/com.companyname.Support.apk new file mode 100644 index 0000000..4cc6d6b Binary files /dev/null and b/Support/Support.Android/bin/Debug/com.companyname.Support.apk differ diff --git a/Support/Support.Android/bin/Debug/mscorlib.dll.mdb b/Support/Support.Android/bin/Debug/mscorlib.dll.mdb new file mode 100644 index 0000000..09b990e Binary files /dev/null and b/Support/Support.Android/bin/Debug/mscorlib.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/80HBCPP225BA.deployment b/Support/Support.Android/obj/Debug/80HBCPP225BA.deployment new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/Component.R.cs.flag b/Support/Support.Android/obj/Debug/Component.R.cs.flag new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/CoreCompileInputs.cache b/Support/Support.Android/obj/Debug/CoreCompileInputs.cache new file mode 100644 index 0000000..880d86a --- /dev/null +++ b/Support/Support.Android/obj/Debug/CoreCompileInputs.cache @@ -0,0 +1 @@ +a6403baa56012f498a9c6b8e7e72bd464d90b125 diff --git a/Support/Support.Android/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Support/Support.Android/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..55b818f Binary files /dev/null and b/Support/Support.Android/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Support/Support.Android/obj/Debug/R.cs.flag b/Support/Support.Android/obj/Debug/R.cs.flag new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/Support.Android.csproj.FileListAbsolute.txt b/Support/Support.Android/obj/Debug/Support.Android.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1d980a4 --- /dev/null +++ b/Support/Support.Android/obj/Debug/Support.Android.csproj.FileListAbsolute.txt @@ -0,0 +1,90 @@ +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Support.Android.dll.config +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Support.Android.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Support.Android.pdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\com.companyname.Support.apk +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\com.companyname.Support-Signed.apk +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Newtonsoft.Json.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.CurrentActivity.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.Abstractions.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.Animated.Vector.Drawable.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.CustomTabs.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.Design.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.v4.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.v7.AppCompat.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.v7.CardView.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.v7.RecyclerView.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Xamarin.Android.Support.Vector.Drawable.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Newtonsoft.Json.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.CurrentActivity.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.pdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.Abstractions.pdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.Abstractions.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\Support.Android.csprojResolveAssemblyReference.cache +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\Support.Android.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\Support.Android.pdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\bin\com.companyname.Support.apk +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\layout\activity_main.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\values\strings.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable\xamarin_logo.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\values\colors.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\values\styles.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\values-v21\styles.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\values\dimens.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable\circle_background.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\values\arrays.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-hdpi\profile_generic.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-mdpi\profile_generic.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-xhdpi\profile_generic.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-xxhdpi\profile_generic.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-xxxhdpi\profile_generic.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable\background_splash.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\values-v19\styles.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable\heroplaceholder.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-hdpi\ic_save.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-mdpi\ic_save.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-xhdpi\ic_save.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-xxhdpi\ic_save.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\drawable-xxxhdpi\ic_save.png +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\res\menu\top_menus.xml +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\R.cs.flag +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\uploadflags.txt +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Support.Android.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Support.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Plugin.Share.Abstractions.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Java.Interop.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Microsoft.CSharp.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Mono.Android.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Mono.CSharp.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\mscorlib.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.ComponentModel.Composition.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.Core.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.Net.Http.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.Runtime.Serialization.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.Runtime.Serialization.Primitives.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.ServiceModel.Internals.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.Xml.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\System.Xml.Linq.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Java.Interop.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Microsoft.CSharp.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Mono.Android.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Mono.CSharp.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\mscorlib.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Plugin.Share.Abstractions.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Plugin.Share.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Support.Android.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Support.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.ComponentModel.Composition.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Core.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Net.Http.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Runtime.Serialization.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Runtime.Serialization.Primitives.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.ServiceModel.Internals.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Xml.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Xml.Linq.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\Support.Android.dll.mdb +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\bin\Debug\Support.Android.dll.mdb diff --git a/Support/Support.Android/obj/Debug/Support.Android.csprojResolveAssemblyReference.cache b/Support/Support.Android/obj/Debug/Support.Android.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..1b737fd Binary files /dev/null and b/Support/Support.Android/obj/Debug/Support.Android.csprojResolveAssemblyReference.cache differ diff --git a/Support/Support.Android/obj/Debug/Support.Android.dll b/Support/Support.Android/obj/Debug/Support.Android.dll new file mode 100644 index 0000000..910a9dc Binary files /dev/null and b/Support/Support.Android/obj/Debug/Support.Android.dll differ diff --git a/Support/Support.Android/obj/Debug/Support.Android.pdb b/Support/Support.Android/obj/Debug/Support.Android.pdb new file mode 100644 index 0000000..b150f81 Binary files /dev/null and b/Support/Support.Android/obj/Debug/Support.Android.pdb differ diff --git a/Support/Support.Android/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/Support/Support.Android/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/Support/Support.Android/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/Support/Support.Android/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Newtonsoft.Json.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Newtonsoft.Json.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Plugin.CurrentActivity.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Plugin.CurrentActivity.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Plugin.Share.Abstractions.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Plugin.Share.Abstractions.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Plugin.Share.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Plugin.Share.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Support.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Support.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/System.Runtime.stamp b/Support/Support.Android/obj/Debug/__library_projects__/System.Runtime.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.Animated.Vector.Drawable.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.Animated.Vector.Drawable.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.CustomTabs.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.CustomTabs.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.Design.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.Design.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.Vector.Drawable.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.Vector.Drawable.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v4.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v4.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v7.AppCompat.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v7.AppCompat.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v7.CardView.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v7.CardView.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v7.RecyclerView.stamp b/Support/Support.Android/obj/Debug/__library_projects__/Xamarin.Android.Support.v7.RecyclerView.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/_dex_stamp b/Support/Support.Android/obj/Debug/_dex_stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/_javac.stamp b/Support/Support.Android/obj/Debug/_javac.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/acw-map.txt b/Support/Support.Android/obj/Debug/acw-map.txt new file mode 100644 index 0000000..e4fb97d --- /dev/null +++ b/Support/Support.Android/obj/Debug/acw-map.txt @@ -0,0 +1,200 @@ +Support.Droid.AddItemActivity, Support.Android;md5c90de87aed1de882a3163dd2fdbbbd51.AddItemActivity +Support.Droid.AddItemActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;md5c90de87aed1de882a3163dd2fdbbbd51.AddItemActivity +Support.Droid.AddItemActivity;md5c90de87aed1de882a3163dd2fdbbbd51.AddItemActivity +support.droid.AddItemActivity;md5c90de87aed1de882a3163dd2fdbbbd51.AddItemActivity +Support.Droid.MainActivity, Support.Android;md5c90de87aed1de882a3163dd2fdbbbd51.MainActivity +Support.Droid.MainActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;md5c90de87aed1de882a3163dd2fdbbbd51.MainActivity +Support.Droid.MainActivity;md5c90de87aed1de882a3163dd2fdbbbd51.MainActivity +support.droid.MainActivity;md5c90de87aed1de882a3163dd2fdbbbd51.MainActivity +Support.Droid.BaseActivity, Support.Android;md5c90de87aed1de882a3163dd2fdbbbd51.BaseActivity +Support.Droid.BaseActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;md5c90de87aed1de882a3163dd2fdbbbd51.BaseActivity +Support.Droid.BaseActivity;md5c90de87aed1de882a3163dd2fdbbbd51.BaseActivity +support.droid.BaseActivity;md5c90de87aed1de882a3163dd2fdbbbd51.BaseActivity +Support.Droid.SplashActivity, Support.Android;md5c90de87aed1de882a3163dd2fdbbbd51.SplashActivity +Support.Droid.SplashActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;md5c90de87aed1de882a3163dd2fdbbbd51.SplashActivity +Support.Droid.SplashActivity;md5c90de87aed1de882a3163dd2fdbbbd51.SplashActivity +support.droid.SplashActivity;md5c90de87aed1de882a3163dd2fdbbbd51.SplashActivity +Android.Support.CustomTabs.CustomTabsClient/CustomTabsCallbackImpl, Xamarin.Android.Support.CustomTabs;android.support.customtabs.CustomTabsClient_CustomTabsCallbackImpl +Android.Support.CustomTabs.CustomTabsClient+CustomTabsCallbackImpl, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;android.support.customtabs.CustomTabsClient_CustomTabsCallbackImpl +Android.Support.CustomTabs.CustomTabsClient.CustomTabsCallbackImpl;android.support.customtabs.CustomTabsClient_CustomTabsCallbackImpl +android.support.customtabs.CustomTabsClient_CustomTabsCallbackImpl;android.support.customtabs.CustomTabsClient_CustomTabsCallbackImpl +Android.Support.CustomTabs.KeepAliveService, Xamarin.Android.Support.CustomTabs;md59f70a99687498e7ba187118950981d26.KeepAliveService +Android.Support.CustomTabs.KeepAliveService, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;md59f70a99687498e7ba187118950981d26.KeepAliveService +Android.Support.CustomTabs.KeepAliveService;md59f70a99687498e7ba187118950981d26.KeepAliveService +android.support.customtabs.KeepAliveService;md59f70a99687498e7ba187118950981d26.KeepAliveService +Android.Support.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.Android.Support.CustomTabs;md59f70a99687498e7ba187118950981d26.CustomTabsServiceConnectionImpl +Android.Support.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;md59f70a99687498e7ba187118950981d26.CustomTabsServiceConnectionImpl +Android.Support.CustomTabs.CustomTabsServiceConnectionImpl;md59f70a99687498e7ba187118950981d26.CustomTabsServiceConnectionImpl +android.support.customtabs.CustomTabsServiceConnectionImpl;md59f70a99687498e7ba187118950981d26.CustomTabsServiceConnectionImpl +Android.Support.Design.Widget.Snackbar/SnackbarActionClickImplementor, Xamarin.Android.Support.Design;android.support.design.widget.Snackbar_SnackbarActionClickImplementor +Android.Support.Design.Widget.Snackbar+SnackbarActionClickImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;android.support.design.widget.Snackbar_SnackbarActionClickImplementor +Android.Support.Design.Widget.Snackbar.SnackbarActionClickImplementor;android.support.design.widget.Snackbar_SnackbarActionClickImplementor +android.support.design.widget.Snackbar_SnackbarActionClickImplementor;android.support.design.widget.Snackbar_SnackbarActionClickImplementor +Android.Support.Design.Widget.AppBarLayout/IOnOffsetChangedListenerImplementor, Xamarin.Android.Support.Design;mono.android.support.design.widget.AppBarLayout_OnOffsetChangedListenerImplementor +Android.Support.Design.Widget.AppBarLayout+IOnOffsetChangedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.design.widget.AppBarLayout_OnOffsetChangedListenerImplementor +Android.Support.Design.Widget.AppBarLayout.IOnOffsetChangedListenerImplementor;mono.android.support.design.widget.AppBarLayout_OnOffsetChangedListenerImplementor +mono.android.support.design.widget.AppBarLayout_OnOffsetChangedListenerImplementor;mono.android.support.design.widget.AppBarLayout_OnOffsetChangedListenerImplementor +Android.Support.Design.Widget.NavigationView/IOnNavigationItemSelectedListenerImplementor, Xamarin.Android.Support.Design;mono.android.support.design.widget.NavigationView_OnNavigationItemSelectedListenerImplementor +Android.Support.Design.Widget.NavigationView+IOnNavigationItemSelectedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.design.widget.NavigationView_OnNavigationItemSelectedListenerImplementor +Android.Support.Design.Widget.NavigationView.IOnNavigationItemSelectedListenerImplementor;mono.android.support.design.widget.NavigationView_OnNavigationItemSelectedListenerImplementor +mono.android.support.design.widget.NavigationView_OnNavigationItemSelectedListenerImplementor;mono.android.support.design.widget.NavigationView_OnNavigationItemSelectedListenerImplementor +Android.Support.Design.Widget.SwipeDismissBehavior/IOnDismissListenerImplementor, Xamarin.Android.Support.Design;mono.android.support.design.widget.SwipeDismissBehavior_OnDismissListenerImplementor +Android.Support.Design.Widget.SwipeDismissBehavior+IOnDismissListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.design.widget.SwipeDismissBehavior_OnDismissListenerImplementor +Android.Support.Design.Widget.SwipeDismissBehavior.IOnDismissListenerImplementor;mono.android.support.design.widget.SwipeDismissBehavior_OnDismissListenerImplementor +mono.android.support.design.widget.SwipeDismissBehavior_OnDismissListenerImplementor;mono.android.support.design.widget.SwipeDismissBehavior_OnDismissListenerImplementor +Android.Support.Design.Widget.TabLayout/IOnTabSelectedListenerImplementor, Xamarin.Android.Support.Design;mono.android.support.design.widget.TabLayout_OnTabSelectedListenerImplementor +Android.Support.Design.Widget.TabLayout+IOnTabSelectedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.design.widget.TabLayout_OnTabSelectedListenerImplementor +Android.Support.Design.Widget.TabLayout.IOnTabSelectedListenerImplementor;mono.android.support.design.widget.TabLayout_OnTabSelectedListenerImplementor +mono.android.support.design.widget.TabLayout_OnTabSelectedListenerImplementor;mono.android.support.design.widget.TabLayout_OnTabSelectedListenerImplementor +Android.Support.V4.View.ViewPager/IOnPageChangeListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.view.ViewPager_OnPageChangeListenerImplementor +Android.Support.V4.View.ViewPager+IOnPageChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.view.ViewPager_OnPageChangeListenerImplementor +Android.Support.V4.View.ViewPager.IOnPageChangeListenerImplementor;mono.android.support.v4.view.ViewPager_OnPageChangeListenerImplementor +mono.android.support.v4.view.ViewPager_OnPageChangeListenerImplementor;mono.android.support.v4.view.ViewPager_OnPageChangeListenerImplementor +Android.Support.V4.Widget.NestedScrollView/IOnScrollChangeListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.widget.NestedScrollView_OnScrollChangeListenerImplementor +Android.Support.V4.Widget.NestedScrollView+IOnScrollChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.widget.NestedScrollView_OnScrollChangeListenerImplementor +Android.Support.V4.Widget.NestedScrollView.IOnScrollChangeListenerImplementor;mono.android.support.v4.widget.NestedScrollView_OnScrollChangeListenerImplementor +mono.android.support.v4.widget.NestedScrollView_OnScrollChangeListenerImplementor;mono.android.support.v4.widget.NestedScrollView_OnScrollChangeListenerImplementor +Android.Support.V4.Widget.SwipeRefreshLayout/IOnRefreshListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.widget.SwipeRefreshLayout_OnRefreshListenerImplementor +Android.Support.V4.Widget.SwipeRefreshLayout+IOnRefreshListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.widget.SwipeRefreshLayout_OnRefreshListenerImplementor +Android.Support.V4.Widget.SwipeRefreshLayout.IOnRefreshListenerImplementor;mono.android.support.v4.widget.SwipeRefreshLayout_OnRefreshListenerImplementor +mono.android.support.v4.widget.SwipeRefreshLayout_OnRefreshListenerImplementor;mono.android.support.v4.widget.SwipeRefreshLayout_OnRefreshListenerImplementor +Android.Support.V4.App.FragmentManager/IOnBackStackChangedListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.app.FragmentManager_OnBackStackChangedListenerImplementor +Android.Support.V4.App.FragmentManager+IOnBackStackChangedListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.app.FragmentManager_OnBackStackChangedListenerImplementor +Android.Support.V4.App.FragmentManager.IOnBackStackChangedListenerImplementor;mono.android.support.v4.app.FragmentManager_OnBackStackChangedListenerImplementor +mono.android.support.v4.app.FragmentManager_OnBackStackChangedListenerImplementor;mono.android.support.v4.app.FragmentManager_OnBackStackChangedListenerImplementor +Android.Support.V4.Content.Loader/IOnLoadCanceledListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.content.Loader_OnLoadCanceledListenerImplementor +Android.Support.V4.Content.Loader+IOnLoadCanceledListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.content.Loader_OnLoadCanceledListenerImplementor +Android.Support.V4.Content.Loader.IOnLoadCanceledListenerImplementor;mono.android.support.v4.content.Loader_OnLoadCanceledListenerImplementor +mono.android.support.v4.content.Loader_OnLoadCanceledListenerImplementor;mono.android.support.v4.content.Loader_OnLoadCanceledListenerImplementor +Android.Support.V4.Content.Loader/IOnLoadCompleteListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.content.Loader_OnLoadCompleteListenerImplementor +Android.Support.V4.Content.Loader+IOnLoadCompleteListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.content.Loader_OnLoadCompleteListenerImplementor +Android.Support.V4.Content.Loader.IOnLoadCompleteListenerImplementor;mono.android.support.v4.content.Loader_OnLoadCompleteListenerImplementor +mono.android.support.v4.content.Loader_OnLoadCompleteListenerImplementor;mono.android.support.v4.content.Loader_OnLoadCompleteListenerImplementor +Android.Support.V4.Media.Session.MediaSessionCompat/IOnActiveChangeListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.media.session.MediaSessionCompat_OnActiveChangeListenerImplementor +Android.Support.V4.Media.Session.MediaSessionCompat+IOnActiveChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.media.session.MediaSessionCompat_OnActiveChangeListenerImplementor +Android.Support.V4.Media.Session.MediaSessionCompat.IOnActiveChangeListenerImplementor;mono.android.support.v4.media.session.MediaSessionCompat_OnActiveChangeListenerImplementor +mono.android.support.v4.media.session.MediaSessionCompat_OnActiveChangeListenerImplementor;mono.android.support.v4.media.session.MediaSessionCompat_OnActiveChangeListenerImplementor +Android.Support.V4.OS.CancellationSignal/IOnCancelListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.os.CancellationSignal_OnCancelListenerImplementor +Android.Support.V4.OS.CancellationSignal+IOnCancelListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.os.CancellationSignal_OnCancelListenerImplementor +Android.Support.V4.OS.CancellationSignal.IOnCancelListenerImplementor;mono.android.support.v4.os.CancellationSignal_OnCancelListenerImplementor +mono.android.support.v4.os.CancellationSignal_OnCancelListenerImplementor;mono.android.support.v4.os.CancellationSignal_OnCancelListenerImplementor +Android.Support.V4.View.ActionProvider/ISubUiVisibilityListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.view.ActionProvider_SubUiVisibilityListenerImplementor +Android.Support.V4.View.ActionProvider+ISubUiVisibilityListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.view.ActionProvider_SubUiVisibilityListenerImplementor +Android.Support.V4.View.ActionProvider.ISubUiVisibilityListenerImplementor;mono.android.support.v4.view.ActionProvider_SubUiVisibilityListenerImplementor +mono.android.support.v4.view.ActionProvider_SubUiVisibilityListenerImplementor;mono.android.support.v4.view.ActionProvider_SubUiVisibilityListenerImplementor +Android.Support.V4.View.ActionProvider/IVisibilityListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.view.ActionProvider_VisibilityListenerImplementor +Android.Support.V4.View.ActionProvider+IVisibilityListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.view.ActionProvider_VisibilityListenerImplementor +Android.Support.V4.View.ActionProvider.IVisibilityListenerImplementor;mono.android.support.v4.view.ActionProvider_VisibilityListenerImplementor +mono.android.support.v4.view.ActionProvider_VisibilityListenerImplementor;mono.android.support.v4.view.ActionProvider_VisibilityListenerImplementor +Android.Support.V4.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.view.OnApplyWindowInsetsListenerImplementor +Android.Support.V4.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.view.OnApplyWindowInsetsListenerImplementor +Android.Support.V4.View.IOnApplyWindowInsetsListenerImplementor;mono.android.support.v4.view.OnApplyWindowInsetsListenerImplementor +mono.android.support.v4.view.OnApplyWindowInsetsListenerImplementor;mono.android.support.v4.view.OnApplyWindowInsetsListenerImplementor +Android.Support.V4.View.IViewPropertyAnimatorListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.view.ViewPropertyAnimatorListenerImplementor +Android.Support.V4.View.IViewPropertyAnimatorListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.view.ViewPropertyAnimatorListenerImplementor +Android.Support.V4.View.IViewPropertyAnimatorListenerImplementor;mono.android.support.v4.view.ViewPropertyAnimatorListenerImplementor +mono.android.support.v4.view.ViewPropertyAnimatorListenerImplementor;mono.android.support.v4.view.ViewPropertyAnimatorListenerImplementor +Android.Support.V4.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.view.ViewPropertyAnimatorUpdateListenerImplementor +Android.Support.V4.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.view.ViewPropertyAnimatorUpdateListenerImplementor +Android.Support.V4.View.IViewPropertyAnimatorUpdateListenerImplementor;mono.android.support.v4.view.ViewPropertyAnimatorUpdateListenerImplementor +mono.android.support.v4.view.ViewPropertyAnimatorUpdateListenerImplementor;mono.android.support.v4.view.ViewPropertyAnimatorUpdateListenerImplementor +Android.Support.V4.View.MenuItemCompat/IOnActionExpandListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.view.MenuItemCompat_OnActionExpandListenerImplementor +Android.Support.V4.View.MenuItemCompat+IOnActionExpandListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.view.MenuItemCompat_OnActionExpandListenerImplementor +Android.Support.V4.View.MenuItemCompat.IOnActionExpandListenerImplementor;mono.android.support.v4.view.MenuItemCompat_OnActionExpandListenerImplementor +mono.android.support.v4.view.MenuItemCompat_OnActionExpandListenerImplementor;mono.android.support.v4.view.MenuItemCompat_OnActionExpandListenerImplementor +Android.Support.V4.Widget.DrawerLayout/IDrawerListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.widget.DrawerLayout_DrawerListenerImplementor +Android.Support.V4.Widget.DrawerLayout+IDrawerListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.widget.DrawerLayout_DrawerListenerImplementor +Android.Support.V4.Widget.DrawerLayout.IDrawerListenerImplementor;mono.android.support.v4.widget.DrawerLayout_DrawerListenerImplementor +mono.android.support.v4.widget.DrawerLayout_DrawerListenerImplementor;mono.android.support.v4.widget.DrawerLayout_DrawerListenerImplementor +Android.Support.V4.Widget.SlidingPaneLayout/IPanelSlideListenerImplementor, Xamarin.Android.Support.v4;mono.android.support.v4.widget.SlidingPaneLayout_PanelSlideListenerImplementor +Android.Support.V4.Widget.SlidingPaneLayout+IPanelSlideListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v4.widget.SlidingPaneLayout_PanelSlideListenerImplementor +Android.Support.V4.Widget.SlidingPaneLayout.IPanelSlideListenerImplementor;mono.android.support.v4.widget.SlidingPaneLayout_PanelSlideListenerImplementor +mono.android.support.v4.widget.SlidingPaneLayout_PanelSlideListenerImplementor;mono.android.support.v4.widget.SlidingPaneLayout_PanelSlideListenerImplementor +Android.Support.V7.App.AlertDialog/IDialogInterfaceOnClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat;android.support.v7.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor +Android.Support.V7.App.AlertDialog+IDialogInterfaceOnClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;android.support.v7.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor +Android.Support.V7.App.AlertDialog.IDialogInterfaceOnClickListenerImplementor;android.support.v7.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor +android.support.v7.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor;android.support.v7.app.AlertDialog_IDialogInterfaceOnClickListenerImplementor +Android.Support.V7.App.AlertDialog/IDialogInterfaceOnCancelListenerImplementor, Xamarin.Android.Support.v7.AppCompat;android.support.v7.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor +Android.Support.V7.App.AlertDialog+IDialogInterfaceOnCancelListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;android.support.v7.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor +Android.Support.V7.App.AlertDialog.IDialogInterfaceOnCancelListenerImplementor;android.support.v7.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor +android.support.v7.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor;android.support.v7.app.AlertDialog_IDialogInterfaceOnCancelListenerImplementor +Android.Support.V7.App.AlertDialog/IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat;android.support.v7.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor +Android.Support.V7.App.AlertDialog+IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;android.support.v7.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor +Android.Support.V7.App.AlertDialog.IDialogInterfaceOnMultiChoiceClickListenerImplementor;android.support.v7.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor +android.support.v7.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor;android.support.v7.app.AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor +Android.Support.V7.Widget.Toolbar/NavigationOnClickEventDispatcher, Xamarin.Android.Support.v7.AppCompat;android.support.v7.widget.Toolbar_NavigationOnClickEventDispatcher +Android.Support.V7.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;android.support.v7.widget.Toolbar_NavigationOnClickEventDispatcher +Android.Support.V7.Widget.Toolbar.NavigationOnClickEventDispatcher;android.support.v7.widget.Toolbar_NavigationOnClickEventDispatcher +android.support.v7.widget.Toolbar_NavigationOnClickEventDispatcher;android.support.v7.widget.Toolbar_NavigationOnClickEventDispatcher +Android.Support.V7.Widget.Toolbar/IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.Toolbar_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.Toolbar_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.Toolbar.IOnMenuItemClickListenerImplementor;mono.android.support.v7.widget.Toolbar_OnMenuItemClickListenerImplementor +mono.android.support.v7.widget.Toolbar_OnMenuItemClickListenerImplementor;mono.android.support.v7.widget.Toolbar_OnMenuItemClickListenerImplementor +Android.Support.V7.App.ActionBar/IOnMenuVisibilityListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.app.ActionBar_OnMenuVisibilityListenerImplementor +Android.Support.V7.App.ActionBar+IOnMenuVisibilityListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.app.ActionBar_OnMenuVisibilityListenerImplementor +Android.Support.V7.App.ActionBar.IOnMenuVisibilityListenerImplementor;mono.android.support.v7.app.ActionBar_OnMenuVisibilityListenerImplementor +mono.android.support.v7.app.ActionBar_OnMenuVisibilityListenerImplementor;mono.android.support.v7.app.ActionBar_OnMenuVisibilityListenerImplementor +Android.Support.V7.App.ActionBar/IOnNavigationListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.app.ActionBar_OnNavigationListenerImplementor +Android.Support.V7.App.ActionBar+IOnNavigationListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.app.ActionBar_OnNavigationListenerImplementor +Android.Support.V7.App.ActionBar.IOnNavigationListenerImplementor;mono.android.support.v7.app.ActionBar_OnNavigationListenerImplementor +mono.android.support.v7.app.ActionBar_OnNavigationListenerImplementor;mono.android.support.v7.app.ActionBar_OnNavigationListenerImplementor +Android.Support.V7.App.ActionBar/ITabListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.app.ActionBar_TabListenerImplementor +Android.Support.V7.App.ActionBar+ITabListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.app.ActionBar_TabListenerImplementor +Android.Support.V7.App.ActionBar.ITabListenerImplementor;mono.android.support.v7.app.ActionBar_TabListenerImplementor +mono.android.support.v7.app.ActionBar_TabListenerImplementor;mono.android.support.v7.app.ActionBar_TabListenerImplementor +Android.Support.V7.Widget.ActionMenuView/IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.ActionMenuView_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.ActionMenuView_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.ActionMenuView.IOnMenuItemClickListenerImplementor;mono.android.support.v7.widget.ActionMenuView_OnMenuItemClickListenerImplementor +mono.android.support.v7.widget.ActionMenuView_OnMenuItemClickListenerImplementor;mono.android.support.v7.widget.ActionMenuView_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.ContentFrameLayout/IOnAttachListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.ContentFrameLayout_OnAttachListenerImplementor +Android.Support.V7.Widget.ContentFrameLayout+IOnAttachListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.ContentFrameLayout_OnAttachListenerImplementor +Android.Support.V7.Widget.ContentFrameLayout.IOnAttachListenerImplementor;mono.android.support.v7.widget.ContentFrameLayout_OnAttachListenerImplementor +mono.android.support.v7.widget.ContentFrameLayout_OnAttachListenerImplementor;mono.android.support.v7.widget.ContentFrameLayout_OnAttachListenerImplementor +Android.Support.V7.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor +Android.Support.V7.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor +Android.Support.V7.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor;mono.android.support.v7.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor +mono.android.support.v7.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor;mono.android.support.v7.widget.FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor +Android.Support.V7.Widget.PopupMenu/IOnDismissListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.PopupMenu_OnDismissListenerImplementor +Android.Support.V7.Widget.PopupMenu+IOnDismissListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.PopupMenu_OnDismissListenerImplementor +Android.Support.V7.Widget.PopupMenu.IOnDismissListenerImplementor;mono.android.support.v7.widget.PopupMenu_OnDismissListenerImplementor +mono.android.support.v7.widget.PopupMenu_OnDismissListenerImplementor;mono.android.support.v7.widget.PopupMenu_OnDismissListenerImplementor +Android.Support.V7.Widget.PopupMenu/IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.PopupMenu_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.PopupMenu_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.PopupMenu.IOnMenuItemClickListenerImplementor;mono.android.support.v7.widget.PopupMenu_OnMenuItemClickListenerImplementor +mono.android.support.v7.widget.PopupMenu_OnMenuItemClickListenerImplementor;mono.android.support.v7.widget.PopupMenu_OnMenuItemClickListenerImplementor +Android.Support.V7.Widget.SearchView/IOnCloseListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.SearchView_OnCloseListenerImplementor +Android.Support.V7.Widget.SearchView+IOnCloseListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.SearchView_OnCloseListenerImplementor +Android.Support.V7.Widget.SearchView.IOnCloseListenerImplementor;mono.android.support.v7.widget.SearchView_OnCloseListenerImplementor +mono.android.support.v7.widget.SearchView_OnCloseListenerImplementor;mono.android.support.v7.widget.SearchView_OnCloseListenerImplementor +Android.Support.V7.Widget.SearchView/IOnQueryTextListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.SearchView_OnQueryTextListenerImplementor +Android.Support.V7.Widget.SearchView+IOnQueryTextListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.SearchView_OnQueryTextListenerImplementor +Android.Support.V7.Widget.SearchView.IOnQueryTextListenerImplementor;mono.android.support.v7.widget.SearchView_OnQueryTextListenerImplementor +mono.android.support.v7.widget.SearchView_OnQueryTextListenerImplementor;mono.android.support.v7.widget.SearchView_OnQueryTextListenerImplementor +Android.Support.V7.Widget.SearchView/IOnSuggestionListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.SearchView_OnSuggestionListenerImplementor +Android.Support.V7.Widget.SearchView+IOnSuggestionListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.SearchView_OnSuggestionListenerImplementor +Android.Support.V7.Widget.SearchView.IOnSuggestionListenerImplementor;mono.android.support.v7.widget.SearchView_OnSuggestionListenerImplementor +mono.android.support.v7.widget.SearchView_OnSuggestionListenerImplementor;mono.android.support.v7.widget.SearchView_OnSuggestionListenerImplementor +Android.Support.V7.Widget.ShareActionProvider/IOnShareTargetSelectedListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor +Android.Support.V7.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor +Android.Support.V7.Widget.ShareActionProvider.IOnShareTargetSelectedListenerImplementor;mono.android.support.v7.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor +mono.android.support.v7.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor;mono.android.support.v7.widget.ShareActionProvider_OnShareTargetSelectedListenerImplementor +Android.Support.V7.Widget.ViewStubCompat/IOnInflateListenerImplementor, Xamarin.Android.Support.v7.AppCompat;mono.android.support.v7.widget.ViewStubCompat_OnInflateListenerImplementor +Android.Support.V7.Widget.ViewStubCompat+IOnInflateListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.ViewStubCompat_OnInflateListenerImplementor +Android.Support.V7.Widget.ViewStubCompat.IOnInflateListenerImplementor;mono.android.support.v7.widget.ViewStubCompat_OnInflateListenerImplementor +mono.android.support.v7.widget.ViewStubCompat_OnInflateListenerImplementor;mono.android.support.v7.widget.ViewStubCompat_OnInflateListenerImplementor +Android.Support.V7.Widget.RecyclerView/ItemAnimator/IItemAnimatorFinishedListenerImplementor, Xamarin.Android.Support.v7.RecyclerView;mono.android.support.v7.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor +Android.Support.V7.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor +Android.Support.V7.Widget.RecyclerView.ItemAnimator.IItemAnimatorFinishedListenerImplementor;mono.android.support.v7.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor +mono.android.support.v7.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor;mono.android.support.v7.widget.RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor +Android.Support.V7.Widget.RecyclerView/IOnChildAttachStateChangeListenerImplementor, Xamarin.Android.Support.v7.RecyclerView;mono.android.support.v7.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor +Android.Support.V7.Widget.RecyclerView+IOnChildAttachStateChangeListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor +Android.Support.V7.Widget.RecyclerView.IOnChildAttachStateChangeListenerImplementor;mono.android.support.v7.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor +mono.android.support.v7.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor;mono.android.support.v7.widget.RecyclerView_OnChildAttachStateChangeListenerImplementor +Android.Support.V7.Widget.RecyclerView/IOnItemTouchListenerImplementor, Xamarin.Android.Support.v7.RecyclerView;mono.android.support.v7.widget.RecyclerView_OnItemTouchListenerImplementor +Android.Support.V7.Widget.RecyclerView+IOnItemTouchListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.RecyclerView_OnItemTouchListenerImplementor +Android.Support.V7.Widget.RecyclerView.IOnItemTouchListenerImplementor;mono.android.support.v7.widget.RecyclerView_OnItemTouchListenerImplementor +mono.android.support.v7.widget.RecyclerView_OnItemTouchListenerImplementor;mono.android.support.v7.widget.RecyclerView_OnItemTouchListenerImplementor +Android.Support.V7.Widget.RecyclerView/IRecyclerListenerImplementor, Xamarin.Android.Support.v7.RecyclerView;mono.android.support.v7.widget.RecyclerView_RecyclerListenerImplementor +Android.Support.V7.Widget.RecyclerView+IRecyclerListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null;mono.android.support.v7.widget.RecyclerView_RecyclerListenerImplementor +Android.Support.V7.Widget.RecyclerView.IRecyclerListenerImplementor;mono.android.support.v7.widget.RecyclerView_RecyclerListenerImplementor +mono.android.support.v7.widget.RecyclerView_RecyclerListenerImplementor;mono.android.support.v7.widget.RecyclerView_RecyclerListenerImplementor diff --git a/Support/Support.Android/obj/Debug/android/AndroidManifest.xml b/Support/Support.Android/obj/Debug/android/AndroidManifest.xml new file mode 100644 index 0000000..004e940 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/AndroidManifest.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/android/assets/Java.Interop.dll b/Support/Support.Android/obj/Debug/android/assets/Java.Interop.dll new file mode 100644 index 0000000..bf5c744 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Java.Interop.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Java.Interop.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Java.Interop.dll.mdb new file mode 100644 index 0000000..8b5baf4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Java.Interop.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Microsoft.CSharp.dll b/Support/Support.Android/obj/Debug/android/assets/Microsoft.CSharp.dll new file mode 100644 index 0000000..1543953 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Microsoft.CSharp.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Microsoft.CSharp.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Microsoft.CSharp.dll.mdb new file mode 100644 index 0000000..231ecd9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Microsoft.CSharp.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Mono.Android.dll b/Support/Support.Android/obj/Debug/android/assets/Mono.Android.dll new file mode 100644 index 0000000..ba7e3bb Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Mono.Android.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Mono.Android.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Mono.Android.dll.mdb new file mode 100644 index 0000000..81cae99 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Mono.Android.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Mono.CSharp.dll b/Support/Support.Android/obj/Debug/android/assets/Mono.CSharp.dll new file mode 100644 index 0000000..03e9d4a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Mono.CSharp.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Mono.CSharp.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Mono.CSharp.dll.mdb new file mode 100644 index 0000000..f676bf0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Mono.CSharp.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Newtonsoft.Json.dll b/Support/Support.Android/obj/Debug/android/assets/Newtonsoft.Json.dll new file mode 100644 index 0000000..8289274 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Newtonsoft.Json.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Plugin.CurrentActivity.dll b/Support/Support.Android/obj/Debug/android/assets/Plugin.CurrentActivity.dll new file mode 100644 index 0000000..9c155d9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Plugin.CurrentActivity.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.Abstractions.dll b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.Abstractions.dll new file mode 100644 index 0000000..0f69ba8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.Abstractions.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.Abstractions.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.Abstractions.dll.mdb new file mode 100644 index 0000000..9db5b85 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.Abstractions.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.dll b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.dll new file mode 100644 index 0000000..59435fd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.dll.mdb new file mode 100644 index 0000000..e338b68 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Plugin.Share.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll b/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll new file mode 100644 index 0000000..910a9dc Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll.config b/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll.config new file mode 100644 index 0000000..374bc7c --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll.mdb new file mode 100644 index 0000000..f6c1f59 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Support.Android.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Support.dll b/Support/Support.Android/obj/Debug/android/assets/Support.dll new file mode 100644 index 0000000..25cad7a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Support.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Support.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/Support.dll.mdb new file mode 100644 index 0000000..24e3fd0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Support.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Collections.Concurrent.dll b/Support/Support.Android/obj/Debug/android/assets/System.Collections.Concurrent.dll new file mode 100644 index 0000000..fcfc851 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Collections.Concurrent.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Collections.dll b/Support/Support.Android/obj/Debug/android/assets/System.Collections.dll new file mode 100644 index 0000000..b4557ca Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Collections.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.ComponentModel.Composition.dll b/Support/Support.Android/obj/Debug/android/assets/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..f835753 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.ComponentModel.Composition.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.ComponentModel.Composition.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.ComponentModel.Composition.dll.mdb new file mode 100644 index 0000000..6289810 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.ComponentModel.Composition.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Core.dll b/Support/Support.Android/obj/Debug/android/assets/System.Core.dll new file mode 100644 index 0000000..ca6a2ec Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Core.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Core.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.Core.dll.mdb new file mode 100644 index 0000000..fb5a5c0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Core.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Diagnostics.Debug.dll b/Support/Support.Android/obj/Debug/android/assets/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..68ab8c4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Diagnostics.Debug.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Dynamic.Runtime.dll b/Support/Support.Android/obj/Debug/android/assets/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..022685b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Dynamic.Runtime.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Globalization.dll b/Support/Support.Android/obj/Debug/android/assets/System.Globalization.dll new file mode 100644 index 0000000..adc80c1 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Globalization.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.IO.dll b/Support/Support.Android/obj/Debug/android/assets/System.IO.dll new file mode 100644 index 0000000..a4c9129 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.IO.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Linq.Expressions.dll b/Support/Support.Android/obj/Debug/android/assets/System.Linq.Expressions.dll new file mode 100644 index 0000000..fa63a09 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Linq.Expressions.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Linq.dll b/Support/Support.Android/obj/Debug/android/assets/System.Linq.dll new file mode 100644 index 0000000..0c0f400 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Linq.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Net.Http.dll b/Support/Support.Android/obj/Debug/android/assets/System.Net.Http.dll new file mode 100644 index 0000000..3c9c330 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Net.Http.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Net.Http.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.Net.Http.dll.mdb new file mode 100644 index 0000000..675b784 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Net.Http.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.ObjectModel.dll b/Support/Support.Android/obj/Debug/android/assets/System.ObjectModel.dll new file mode 100644 index 0000000..cfafe99 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.ObjectModel.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Reflection.Extensions.dll b/Support/Support.Android/obj/Debug/android/assets/System.Reflection.Extensions.dll new file mode 100644 index 0000000..91566bd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Reflection.Extensions.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Reflection.dll b/Support/Support.Android/obj/Debug/android/assets/System.Reflection.dll new file mode 100644 index 0000000..d643358 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Reflection.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Resources.ResourceManager.dll b/Support/Support.Android/obj/Debug/android/assets/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..cdae85f Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Resources.ResourceManager.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Extensions.dll b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Extensions.dll new file mode 100644 index 0000000..feb9c66 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Extensions.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Runtime.InteropServices.dll b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..82b37d5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.InteropServices.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.Primitives.dll b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..7c19005 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.Primitives.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.Primitives.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.Primitives.dll.mdb new file mode 100644 index 0000000..bf70bb8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.Primitives.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.dll b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.dll new file mode 100644 index 0000000..5c600dc Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.dll.mdb new file mode 100644 index 0000000..c0c8eca Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.Serialization.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Runtime.dll b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.dll new file mode 100644 index 0000000..8a9370a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Runtime.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.ServiceModel.Internals.dll b/Support/Support.Android/obj/Debug/android/assets/System.ServiceModel.Internals.dll new file mode 100644 index 0000000..4a93e39 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.ServiceModel.Internals.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.ServiceModel.Internals.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.ServiceModel.Internals.dll.mdb new file mode 100644 index 0000000..5970bcf Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.ServiceModel.Internals.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Text.Encoding.Extensions.dll b/Support/Support.Android/obj/Debug/android/assets/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..24de028 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Text.Encoding.Extensions.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Text.Encoding.dll b/Support/Support.Android/obj/Debug/android/assets/System.Text.Encoding.dll new file mode 100644 index 0000000..2863253 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Text.Encoding.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Text.RegularExpressions.dll b/Support/Support.Android/obj/Debug/android/assets/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..f62b872 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Text.RegularExpressions.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Threading.Tasks.dll b/Support/Support.Android/obj/Debug/android/assets/System.Threading.Tasks.dll new file mode 100644 index 0000000..b46f343 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Threading.Tasks.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Threading.dll b/Support/Support.Android/obj/Debug/android/assets/System.Threading.dll new file mode 100644 index 0000000..efe849e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Threading.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Xml.Linq.dll b/Support/Support.Android/obj/Debug/android/assets/System.Xml.Linq.dll new file mode 100644 index 0000000..a96c883 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Xml.Linq.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Xml.Linq.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.Xml.Linq.dll.mdb new file mode 100644 index 0000000..09e1862 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Xml.Linq.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Xml.ReaderWriter.dll b/Support/Support.Android/obj/Debug/android/assets/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..09adacd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Xml.ReaderWriter.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Xml.XDocument.dll b/Support/Support.Android/obj/Debug/android/assets/System.Xml.XDocument.dll new file mode 100644 index 0000000..0dca660 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Xml.XDocument.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Xml.dll b/Support/Support.Android/obj/Debug/android/assets/System.Xml.dll new file mode 100644 index 0000000..1e7c16b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Xml.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.Xml.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.Xml.dll.mdb new file mode 100644 index 0000000..4b4499f Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.Xml.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.dll b/Support/Support.Android/obj/Debug/android/assets/System.dll new file mode 100644 index 0000000..0c08c9d Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/System.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/System.dll.mdb new file mode 100644 index 0000000..89e35f2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/System.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Animated.Vector.Drawable.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Animated.Vector.Drawable.dll new file mode 100644 index 0000000..7e8f124 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Animated.Vector.Drawable.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.CustomTabs.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.CustomTabs.dll new file mode 100644 index 0000000..69349d4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.CustomTabs.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Design.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Design.dll new file mode 100644 index 0000000..39815e9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Design.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Vector.Drawable.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Vector.Drawable.dll new file mode 100644 index 0000000..125d2da Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.Vector.Drawable.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v4.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v4.dll new file mode 100644 index 0000000..fa14c84 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v4.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.AppCompat.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.AppCompat.dll new file mode 100644 index 0000000..39fa7d1 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.AppCompat.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.CardView.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.CardView.dll new file mode 100644 index 0000000..116d42c Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.CardView.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.RecyclerView.dll b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.RecyclerView.dll new file mode 100644 index 0000000..5874bdd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/Xamarin.Android.Support.v7.RecyclerView.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/machine.config b/Support/Support.Android/obj/Debug/android/assets/machine.config new file mode 100644 index 0000000..76ccdb4 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/assets/machine.config @@ -0,0 +1,273 @@ + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/android/assets/mscorlib.dll b/Support/Support.Android/obj/Debug/android/assets/mscorlib.dll new file mode 100644 index 0000000..f763a72 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/mscorlib.dll differ diff --git a/Support/Support.Android/obj/Debug/android/assets/mscorlib.dll.mdb b/Support/Support.Android/obj/Debug/android/assets/mscorlib.dll.mdb new file mode 100644 index 0000000..09b990e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/assets/mscorlib.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes.dex b/Support/Support.Android/obj/Debug/android/bin/classes.dex new file mode 100644 index 0000000..57213d2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes.dex differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/CustomTabsClient_CustomTabsCallbackImpl.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/CustomTabsClient_CustomTabsCallbackImpl.class new file mode 100644 index 0000000..895db99 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/CustomTabsClient_CustomTabsCallbackImpl.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$anim.class new file mode 100644 index 0000000..5ee3f19 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$array.class new file mode 100644 index 0000000..14dc2c6 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$attr.class new file mode 100644 index 0000000..5604630 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$bool.class new file mode 100644 index 0000000..3dbab18 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$color.class new file mode 100644 index 0000000..66daaa9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$dimen.class new file mode 100644 index 0000000..24dc163 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$drawable.class new file mode 100644 index 0000000..07f93ba Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$id.class new file mode 100644 index 0000000..4a3621c Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$integer.class new file mode 100644 index 0000000..cac7aac Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$layout.class new file mode 100644 index 0000000..b130684 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$menu.class new file mode 100644 index 0000000..27d42aa Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$string.class new file mode 100644 index 0000000..6e5722b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$style.class new file mode 100644 index 0000000..2ae016f Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$styleable.class new file mode 100644 index 0000000..ad5b700 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R.class new file mode 100644 index 0000000..15ebd63 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/customtabs/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$anim.class new file mode 100644 index 0000000..2e56aac Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$array.class new file mode 100644 index 0000000..ab1eba3 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$attr.class new file mode 100644 index 0000000..2766ef2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$bool.class new file mode 100644 index 0000000..02510a9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$color.class new file mode 100644 index 0000000..0ea73c8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$dimen.class new file mode 100644 index 0000000..6dc11a8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$drawable.class new file mode 100644 index 0000000..439735a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$id.class new file mode 100644 index 0000000..8fee9c3 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$integer.class new file mode 100644 index 0000000..31e6356 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$layout.class new file mode 100644 index 0000000..75226d3 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$menu.class new file mode 100644 index 0000000..c13ea2e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$string.class new file mode 100644 index 0000000..d833a58 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$style.class new file mode 100644 index 0000000..709db24 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$styleable.class new file mode 100644 index 0000000..37d0516 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R.class new file mode 100644 index 0000000..c41ae7b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/widget/Snackbar_SnackbarActionClickImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/widget/Snackbar_SnackbarActionClickImplementor.class new file mode 100644 index 0000000..ef786e4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/design/widget/Snackbar_SnackbarActionClickImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$anim.class new file mode 100644 index 0000000..77ddade Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$array.class new file mode 100644 index 0000000..adf098b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$attr.class new file mode 100644 index 0000000..64d1cc3 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$bool.class new file mode 100644 index 0000000..dd407a6 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$color.class new file mode 100644 index 0000000..1406c91 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$dimen.class new file mode 100644 index 0000000..501d3cc Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$drawable.class new file mode 100644 index 0000000..ae144d6 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$id.class new file mode 100644 index 0000000..4116e6a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$integer.class new file mode 100644 index 0000000..5db85d0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$layout.class new file mode 100644 index 0000000..260322e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$menu.class new file mode 100644 index 0000000..86bcb91 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$string.class new file mode 100644 index 0000000..becbf67 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$style.class new file mode 100644 index 0000000..5289a9a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$styleable.class new file mode 100644 index 0000000..3d41018 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R.class new file mode 100644 index 0000000..4932794 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$anim.class new file mode 100644 index 0000000..52b8d26 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$array.class new file mode 100644 index 0000000..944f703 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$attr.class new file mode 100644 index 0000000..8d02455 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$bool.class new file mode 100644 index 0000000..e8bfd8e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$color.class new file mode 100644 index 0000000..3641d45 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$dimen.class new file mode 100644 index 0000000..2ffafe7 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$drawable.class new file mode 100644 index 0000000..7c8d316 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$id.class new file mode 100644 index 0000000..0a4ac61 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$integer.class new file mode 100644 index 0000000..62a8f66 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$layout.class new file mode 100644 index 0000000..a403d7e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$menu.class new file mode 100644 index 0000000..51a4a3b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$string.class new file mode 100644 index 0000000..fe56c79 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$style.class new file mode 100644 index 0000000..7360ab2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$styleable.class new file mode 100644 index 0000000..e11a1b2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R.class new file mode 100644 index 0000000..de55266 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/graphics/drawable/animated/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$anim.class new file mode 100644 index 0000000..b5912bb Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$array.class new file mode 100644 index 0000000..6bece4e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$attr.class new file mode 100644 index 0000000..a8839f6 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$bool.class new file mode 100644 index 0000000..e14e5f5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$color.class new file mode 100644 index 0000000..fd23908 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$dimen.class new file mode 100644 index 0000000..fee06a5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$drawable.class new file mode 100644 index 0000000..83d4fb0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$id.class new file mode 100644 index 0000000..d9a39b4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$integer.class new file mode 100644 index 0000000..0b6e9e7 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$layout.class new file mode 100644 index 0000000..66c5e09 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$menu.class new file mode 100644 index 0000000..9566197 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$string.class new file mode 100644 index 0000000..a0fa5b5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$style.class new file mode 100644 index 0000000..d2b7869 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$styleable.class new file mode 100644 index 0000000..256601b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R.class new file mode 100644 index 0000000..e922645 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v4/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class new file mode 100644 index 0000000..768daca Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.class new file mode 100644 index 0000000..8f9c790 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class new file mode 100644 index 0000000..f13eb63 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$anim.class new file mode 100644 index 0000000..d906476 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$array.class new file mode 100644 index 0000000..629a272 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$attr.class new file mode 100644 index 0000000..09dafed Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$bool.class new file mode 100644 index 0000000..6b51db4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$color.class new file mode 100644 index 0000000..2fc594b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$dimen.class new file mode 100644 index 0000000..43dad1d Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$drawable.class new file mode 100644 index 0000000..fb34e19 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$id.class new file mode 100644 index 0000000..a15a3ae Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$integer.class new file mode 100644 index 0000000..4dd9af1 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$layout.class new file mode 100644 index 0000000..44474f5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$menu.class new file mode 100644 index 0000000..05dff6d Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$string.class new file mode 100644 index 0000000..bf27959 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$style.class new file mode 100644 index 0000000..9615eb3 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$styleable.class new file mode 100644 index 0000000..16bafc2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R.class new file mode 100644 index 0000000..3e9cb36 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/appcompat/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$anim.class new file mode 100644 index 0000000..d1fa553 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$array.class new file mode 100644 index 0000000..afd7307 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$attr.class new file mode 100644 index 0000000..6b4a59b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$bool.class new file mode 100644 index 0000000..0b1ecc5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$color.class new file mode 100644 index 0000000..3bdc7fb Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$dimen.class new file mode 100644 index 0000000..4b55d2f Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$drawable.class new file mode 100644 index 0000000..9ea44f0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$id.class new file mode 100644 index 0000000..de67b50 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$integer.class new file mode 100644 index 0000000..3ee9919 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$layout.class new file mode 100644 index 0000000..f98c664 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$menu.class new file mode 100644 index 0000000..dad9f20 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$string.class new file mode 100644 index 0000000..19094d9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$style.class new file mode 100644 index 0000000..c067967 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$styleable.class new file mode 100644 index 0000000..df3ee64 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R.class new file mode 100644 index 0000000..072f842 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/cardview/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$anim.class new file mode 100644 index 0000000..13ceab2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$array.class new file mode 100644 index 0000000..d6e1575 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$attr.class new file mode 100644 index 0000000..f8da862 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$bool.class new file mode 100644 index 0000000..4f12f62 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$color.class new file mode 100644 index 0000000..be5c925 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$dimen.class new file mode 100644 index 0000000..3ce0fd8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$drawable.class new file mode 100644 index 0000000..5af6b00 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$id.class new file mode 100644 index 0000000..2fea5ca Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$integer.class new file mode 100644 index 0000000..b0b066e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$layout.class new file mode 100644 index 0000000..0c5a419 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$menu.class new file mode 100644 index 0000000..2fc3018 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$string.class new file mode 100644 index 0000000..3636962 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$style.class new file mode 100644 index 0000000..75cfa43 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$styleable.class new file mode 100644 index 0000000..afbc2ee Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R.class new file mode 100644 index 0000000..77af9bd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/recyclerview/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/widget/Toolbar_NavigationOnClickEventDispatcher.class b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/widget/Toolbar_NavigationOnClickEventDispatcher.class new file mode 100644 index 0000000..a12cc20 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/android/support/v7/widget/Toolbar_NavigationOnClickEventDispatcher.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$anim.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$anim.class new file mode 100644 index 0000000..bf562c9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$anim.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$array.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$array.class new file mode 100644 index 0000000..3695467 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$array.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$attr.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$attr.class new file mode 100644 index 0000000..d6f2bfd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$attr.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$bool.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$bool.class new file mode 100644 index 0000000..46770ce Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$bool.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$color.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$color.class new file mode 100644 index 0000000..51e6e76 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$color.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$dimen.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$dimen.class new file mode 100644 index 0000000..1534bb8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$dimen.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$drawable.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$drawable.class new file mode 100644 index 0000000..900ae18 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$drawable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$id.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$id.class new file mode 100644 index 0000000..9f25e94 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$id.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$integer.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$integer.class new file mode 100644 index 0000000..dea0366 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$integer.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$layout.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$layout.class new file mode 100644 index 0000000..a399297 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$layout.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$menu.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$menu.class new file mode 100644 index 0000000..7409412 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$menu.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$string.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$string.class new file mode 100644 index 0000000..6b685ec Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$string.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$style.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$style.class new file mode 100644 index 0000000..14f8f69 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$style.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$styleable.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$styleable.class new file mode 100644 index 0000000..c99b6b4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R$styleable.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R.class b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R.class new file mode 100644 index 0000000..99c88d6 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/com/companyname/support/R.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md59f70a99687498e7ba187118950981d26/CustomTabsServiceConnectionImpl.class b/Support/Support.Android/obj/Debug/android/bin/classes/md59f70a99687498e7ba187118950981d26/CustomTabsServiceConnectionImpl.class new file mode 100644 index 0000000..b993c5f Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md59f70a99687498e7ba187118950981d26/CustomTabsServiceConnectionImpl.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md59f70a99687498e7ba187118950981d26/KeepAliveService.class b/Support/Support.Android/obj/Debug/android/bin/classes/md59f70a99687498e7ba187118950981d26/KeepAliveService.class new file mode 100644 index 0000000..e0530d2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md59f70a99687498e7ba187118950981d26/KeepAliveService.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/AboutFragment.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/AboutFragment.class new file mode 100644 index 0000000..0fe3e3e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/AboutFragment.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/AddItemActivity.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/AddItemActivity.class new file mode 100644 index 0000000..7754c30 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/AddItemActivity.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BaseActivity.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BaseActivity.class new file mode 100644 index 0000000..3759f6a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BaseActivity.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BaseRecycleViewAdapter.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BaseRecycleViewAdapter.class new file mode 100644 index 0000000..585de5a Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BaseRecycleViewAdapter.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseFragment.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseFragment.class new file mode 100644 index 0000000..ebafeed Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseFragment.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemDetailActivity.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemDetailActivity.class new file mode 100644 index 0000000..502ddfb Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemDetailActivity.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemsAdapter.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemsAdapter.class new file mode 100644 index 0000000..2143013 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemsAdapter.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MainActivity.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MainActivity.class new file mode 100644 index 0000000..60e21d2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MainActivity.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MainApplication.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MainApplication.class new file mode 100644 index 0000000..043e2d5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MainApplication.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MyViewHolder.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MyViewHolder.class new file mode 100644 index 0000000..1e1aa66 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/MyViewHolder.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/SplashActivity.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/SplashActivity.class new file mode 100644 index 0000000..cc03a2e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/SplashActivity.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/TabsAdapter.class b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/TabsAdapter.class new file mode 100644 index 0000000..0c218c5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/md5c90de87aed1de882a3163dd2fdbbbd51/TabsAdapter.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoPackageManager.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoPackageManager.class new file mode 100644 index 0000000..bcf347b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoPackageManager.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoPackageManager_Resources.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoPackageManager_Resources.class new file mode 100644 index 0000000..5d4dbf5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoPackageManager_Resources.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoRuntimeProvider.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoRuntimeProvider.class new file mode 100644 index 0000000..a1b2dc9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/MonoRuntimeProvider.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/Seppuku.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/Seppuku.class new file mode 100644 index 0000000..afd19df Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/Seppuku.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/app/ApplicationRegistration.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/app/ApplicationRegistration.class new file mode 100644 index 0000000..20a9328 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/app/ApplicationRegistration.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/app/NotifyTimeZoneChanges.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/app/NotifyTimeZoneChanges.class new file mode 100644 index 0000000..72e7bbc Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/app/NotifyTimeZoneChanges.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/AppBarLayout_OnOffsetChangedListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/AppBarLayout_OnOffsetChangedListenerImplementor.class new file mode 100644 index 0000000..0c76fc5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/AppBarLayout_OnOffsetChangedListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/NavigationView_OnNavigationItemSelectedListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/NavigationView_OnNavigationItemSelectedListenerImplementor.class new file mode 100644 index 0000000..ad508d7 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/NavigationView_OnNavigationItemSelectedListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/SwipeDismissBehavior_OnDismissListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/SwipeDismissBehavior_OnDismissListenerImplementor.class new file mode 100644 index 0000000..b853fcb Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/SwipeDismissBehavior_OnDismissListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/TabLayout_OnTabSelectedListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/TabLayout_OnTabSelectedListenerImplementor.class new file mode 100644 index 0000000..7a0858e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/design/widget/TabLayout_OnTabSelectedListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/app/FragmentManager_OnBackStackChangedListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/app/FragmentManager_OnBackStackChangedListenerImplementor.class new file mode 100644 index 0000000..d48b7b2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/app/FragmentManager_OnBackStackChangedListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/content/Loader_OnLoadCanceledListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/content/Loader_OnLoadCanceledListenerImplementor.class new file mode 100644 index 0000000..a339d52 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/content/Loader_OnLoadCanceledListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/content/Loader_OnLoadCompleteListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/content/Loader_OnLoadCompleteListenerImplementor.class new file mode 100644 index 0000000..182125f Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/content/Loader_OnLoadCompleteListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/media/session/MediaSessionCompat_OnActiveChangeListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/media/session/MediaSessionCompat_OnActiveChangeListenerImplementor.class new file mode 100644 index 0000000..4586f10 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/media/session/MediaSessionCompat_OnActiveChangeListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/os/CancellationSignal_OnCancelListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/os/CancellationSignal_OnCancelListenerImplementor.class new file mode 100644 index 0000000..6109bb4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/os/CancellationSignal_OnCancelListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ActionProvider_SubUiVisibilityListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ActionProvider_SubUiVisibilityListenerImplementor.class new file mode 100644 index 0000000..bec69f2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ActionProvider_SubUiVisibilityListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ActionProvider_VisibilityListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ActionProvider_VisibilityListenerImplementor.class new file mode 100644 index 0000000..560e335 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ActionProvider_VisibilityListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/MenuItemCompat_OnActionExpandListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/MenuItemCompat_OnActionExpandListenerImplementor.class new file mode 100644 index 0000000..5610b3c Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/MenuItemCompat_OnActionExpandListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/OnApplyWindowInsetsListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/OnApplyWindowInsetsListenerImplementor.class new file mode 100644 index 0000000..3d4e11b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/OnApplyWindowInsetsListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPager_OnPageChangeListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPager_OnPageChangeListenerImplementor.class new file mode 100644 index 0000000..9616861 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPager_OnPageChangeListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPropertyAnimatorListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPropertyAnimatorListenerImplementor.class new file mode 100644 index 0000000..ccf6ead Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPropertyAnimatorListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPropertyAnimatorUpdateListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPropertyAnimatorUpdateListenerImplementor.class new file mode 100644 index 0000000..3e8716d Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/view/ViewPropertyAnimatorUpdateListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/DrawerLayout_DrawerListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/DrawerLayout_DrawerListenerImplementor.class new file mode 100644 index 0000000..43a046d Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/DrawerLayout_DrawerListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/NestedScrollView_OnScrollChangeListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/NestedScrollView_OnScrollChangeListenerImplementor.class new file mode 100644 index 0000000..e470ddd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/NestedScrollView_OnScrollChangeListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/SlidingPaneLayout_PanelSlideListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/SlidingPaneLayout_PanelSlideListenerImplementor.class new file mode 100644 index 0000000..9e5e2c8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/SlidingPaneLayout_PanelSlideListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.class new file mode 100644 index 0000000..38bf586 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v4/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_OnMenuVisibilityListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_OnMenuVisibilityListenerImplementor.class new file mode 100644 index 0000000..c63094b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_OnMenuVisibilityListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_OnNavigationListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_OnNavigationListenerImplementor.class new file mode 100644 index 0000000..da5a6f6 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_OnNavigationListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_TabListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_TabListenerImplementor.class new file mode 100644 index 0000000..f4428ee Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/app/ActionBar_TabListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ActionMenuView_OnMenuItemClickListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ActionMenuView_OnMenuItemClickListenerImplementor.class new file mode 100644 index 0000000..c518f04 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ActionMenuView_OnMenuItemClickListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ContentFrameLayout_OnAttachListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ContentFrameLayout_OnAttachListenerImplementor.class new file mode 100644 index 0000000..0bd28fc Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ContentFrameLayout_OnAttachListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class new file mode 100644 index 0000000..3b3db77 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/PopupMenu_OnDismissListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/PopupMenu_OnDismissListenerImplementor.class new file mode 100644 index 0000000..9bfdbfd Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/PopupMenu_OnDismissListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/PopupMenu_OnMenuItemClickListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/PopupMenu_OnMenuItemClickListenerImplementor.class new file mode 100644 index 0000000..ab6bdae Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/PopupMenu_OnMenuItemClickListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class new file mode 100644 index 0000000..883136f Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.class new file mode 100644 index 0000000..3cc03d1 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_OnItemTouchListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_OnItemTouchListenerImplementor.class new file mode 100644 index 0000000..ca89944 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_OnItemTouchListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_RecyclerListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_RecyclerListenerImplementor.class new file mode 100644 index 0000000..29159a4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/RecyclerView_RecyclerListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnCloseListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnCloseListenerImplementor.class new file mode 100644 index 0000000..42788ca Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnCloseListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnQueryTextListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnQueryTextListenerImplementor.class new file mode 100644 index 0000000..b0937b5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnQueryTextListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnSuggestionListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnSuggestionListenerImplementor.class new file mode 100644 index 0000000..95b76a6 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/SearchView_OnSuggestionListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.class new file mode 100644 index 0000000..765d148 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/Toolbar_OnMenuItemClickListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/Toolbar_OnMenuItemClickListenerImplementor.class new file mode 100644 index 0000000..1a19064 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/Toolbar_OnMenuItemClickListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ViewStubCompat_OnInflateListenerImplementor.class b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ViewStubCompat_OnInflateListenerImplementor.class new file mode 100644 index 0000000..8f71d1e Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/classes/mono/android/support/v7/widget/ViewStubCompat_OnInflateListenerImplementor.class differ diff --git a/Support/Support.Android/obj/Debug/android/bin/com.companyname.Support.apk b/Support/Support.Android/obj/Debug/android/bin/com.companyname.Support.apk new file mode 100644 index 0000000..4cc6d6b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/com.companyname.Support.apk differ diff --git a/Support/Support.Android/obj/Debug/android/bin/mono.android.jar b/Support/Support.Android/obj/Debug/android/bin/mono.android.jar new file mode 100644 index 0000000..df79d22 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/mono.android.jar differ diff --git a/Support/Support.Android/obj/Debug/android/bin/packaged_resources b/Support/Support.Android/obj/Debug/android/bin/packaged_resources new file mode 100644 index 0000000..5a50335 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/bin/packaged_resources differ diff --git a/Support/Support.Android/obj/Debug/android/com/companyname/support/R.java b/Support/Support.Android/obj/Debug/android/com/companyname/support/R.java new file mode 100644 index 0000000..eb04bff --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/com/companyname/support/R.java @@ -0,0 +1,9067 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.companyname.support; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_fab_in=0x7f04000c; + public static final int design_fab_out=0x7f04000d; + public static final int design_snackbar_in=0x7f04000e; + public static final int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static final int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static final int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010036; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0a0003; + public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static final int abc_allow_stacked_button_bar=0x7f0a0000; + public static final int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static final int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static final int abc_color_highlight_material=0x7f08004e; + public static final int abc_input_method_navigation_guard=0x7f080004; + public static final int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static final int abc_primary_text_disable_only_material_light=0x7f080050; + public static final int abc_primary_text_material_dark=0x7f080051; + public static final int abc_primary_text_material_light=0x7f080052; + public static final int abc_search_url_text=0x7f080053; + public static final int abc_search_url_text_normal=0x7f080005; + public static final int abc_search_url_text_pressed=0x7f080006; + public static final int abc_search_url_text_selected=0x7f080007; + public static final int abc_secondary_text_material_dark=0x7f080054; + public static final int abc_secondary_text_material_light=0x7f080055; + public static final int accent=0x7f08004a; + public static final int accent_material_dark=0x7f080008; + public static final int accent_material_light=0x7f080009; + public static final int background_floating_material_dark=0x7f08000a; + public static final int background_floating_material_light=0x7f08000b; + public static final int background_material_dark=0x7f08000c; + public static final int background_material_light=0x7f08000d; + public static final int bright_foreground_disabled_material_dark=0x7f08000e; + public static final int bright_foreground_disabled_material_light=0x7f08000f; + public static final int bright_foreground_inverse_material_dark=0x7f080010; + public static final int bright_foreground_inverse_material_light=0x7f080011; + public static final int bright_foreground_material_dark=0x7f080012; + public static final int bright_foreground_material_light=0x7f080013; + public static final int button_material_dark=0x7f080014; + public static final int button_material_light=0x7f080015; + public static final int cardview_dark_background=0x7f080000; + public static final int cardview_light_background=0x7f080001; + public static final int cardview_shadow_end_color=0x7f080002; + public static final int cardview_shadow_start_color=0x7f080003; + public static final int design_fab_shadow_end_color=0x7f08003e; + public static final int design_fab_shadow_mid_color=0x7f08003f; + public static final int design_fab_shadow_start_color=0x7f080040; + public static final int design_fab_stroke_end_inner_color=0x7f080041; + public static final int design_fab_stroke_end_outer_color=0x7f080042; + public static final int design_fab_stroke_top_inner_color=0x7f080043; + public static final int design_fab_stroke_top_outer_color=0x7f080044; + public static final int design_snackbar_background_color=0x7f080045; + public static final int design_textinput_error_color_dark=0x7f080046; + public static final int design_textinput_error_color_light=0x7f080047; + public static final int dim_foreground_disabled_material_dark=0x7f080016; + public static final int dim_foreground_disabled_material_light=0x7f080017; + public static final int dim_foreground_material_dark=0x7f080018; + public static final int dim_foreground_material_light=0x7f080019; + public static final int foreground_material_dark=0x7f08001a; + public static final int foreground_material_light=0x7f08001b; + public static final int highlighted_text_material_dark=0x7f08001c; + public static final int highlighted_text_material_light=0x7f08001d; + public static final int hint_foreground_material_dark=0x7f08001e; + public static final int hint_foreground_material_light=0x7f08001f; + public static final int material_blue_grey_800=0x7f080020; + public static final int material_blue_grey_900=0x7f080021; + public static final int material_blue_grey_950=0x7f080022; + public static final int material_deep_teal_200=0x7f080023; + public static final int material_deep_teal_500=0x7f080024; + public static final int material_grey_100=0x7f080025; + public static final int material_grey_300=0x7f080026; + public static final int material_grey_50=0x7f080027; + public static final int material_grey_600=0x7f080028; + public static final int material_grey_800=0x7f080029; + public static final int material_grey_850=0x7f08002a; + public static final int material_grey_900=0x7f08002b; + public static final int primary=0x7f080048; + public static final int primaryDark=0x7f080049; + public static final int primary_dark_material_dark=0x7f08002c; + public static final int primary_dark_material_light=0x7f08002d; + public static final int primary_material_dark=0x7f08002e; + public static final int primary_material_light=0x7f08002f; + public static final int primary_text_default_material_dark=0x7f080030; + public static final int primary_text_default_material_light=0x7f080031; + public static final int primary_text_disabled_material_dark=0x7f080032; + public static final int primary_text_disabled_material_light=0x7f080033; + public static final int ripple_material_dark=0x7f080034; + public static final int ripple_material_light=0x7f080035; + public static final int secondary_text_default_material_dark=0x7f080036; + public static final int secondary_text_default_material_light=0x7f080037; + public static final int secondary_text_disabled_material_dark=0x7f080038; + public static final int secondary_text_disabled_material_light=0x7f080039; + public static final int switch_thumb_disabled_material_dark=0x7f08003a; + public static final int switch_thumb_disabled_material_light=0x7f08003b; + public static final int switch_thumb_material_dark=0x7f080056; + public static final int switch_thumb_material_light=0x7f080057; + public static final int switch_thumb_normal_material_dark=0x7f08003c; + public static final int switch_thumb_normal_material_light=0x7f08003d; + public static final int window_background=0x7f08004b; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f050013; + public static final int abc_action_bar_default_height_material=0x7f050007; + public static final int abc_action_bar_default_padding_end_material=0x7f050014; + public static final int abc_action_bar_default_padding_start_material=0x7f050015; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static final int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static final int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static final int abc_action_bar_progress_bar_size=0x7f050008; + public static final int abc_action_bar_stacked_max_height=0x7f05001a; + public static final int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static final int abc_action_button_min_height_material=0x7f05001e; + public static final int abc_action_button_min_width_material=0x7f05001f; + public static final int abc_action_button_min_width_overflow_material=0x7f050020; + public static final int abc_alert_dialog_button_bar_height=0x7f050006; + public static final int abc_button_inset_horizontal_material=0x7f050021; + public static final int abc_button_inset_vertical_material=0x7f050022; + public static final int abc_button_padding_horizontal_material=0x7f050023; + public static final int abc_button_padding_vertical_material=0x7f050024; + public static final int abc_config_prefDialogWidth=0x7f05000b; + public static final int abc_control_corner_material=0x7f050025; + public static final int abc_control_inset_material=0x7f050026; + public static final int abc_control_padding_material=0x7f050027; + public static final int abc_dialog_fixed_height_major=0x7f05000c; + public static final int abc_dialog_fixed_height_minor=0x7f05000d; + public static final int abc_dialog_fixed_width_major=0x7f05000e; + public static final int abc_dialog_fixed_width_minor=0x7f05000f; + public static final int abc_dialog_list_padding_vertical_material=0x7f050028; + public static final int abc_dialog_min_width_major=0x7f050010; + public static final int abc_dialog_min_width_minor=0x7f050011; + public static final int abc_dialog_padding_material=0x7f050029; + public static final int abc_dialog_padding_top_material=0x7f05002a; + public static final int abc_disabled_alpha_material_dark=0x7f05002b; + public static final int abc_disabled_alpha_material_light=0x7f05002c; + public static final int abc_dropdownitem_icon_width=0x7f05002d; + public static final int abc_dropdownitem_text_padding_left=0x7f05002e; + public static final int abc_dropdownitem_text_padding_right=0x7f05002f; + public static final int abc_edit_text_inset_bottom_material=0x7f050030; + public static final int abc_edit_text_inset_horizontal_material=0x7f050031; + public static final int abc_edit_text_inset_top_material=0x7f050032; + public static final int abc_floating_window_z=0x7f050033; + public static final int abc_list_item_padding_horizontal_material=0x7f050034; + public static final int abc_panel_menu_list_width=0x7f050035; + public static final int abc_search_view_preferred_width=0x7f050036; + public static final int abc_search_view_text_min_width=0x7f050012; + public static final int abc_seekbar_track_background_height_material=0x7f050037; + public static final int abc_seekbar_track_progress_height_material=0x7f050038; + public static final int abc_select_dialog_padding_start_material=0x7f050039; + public static final int abc_switch_padding=0x7f050016; + public static final int abc_text_size_body_1_material=0x7f05003a; + public static final int abc_text_size_body_2_material=0x7f05003b; + public static final int abc_text_size_button_material=0x7f05003c; + public static final int abc_text_size_caption_material=0x7f05003d; + public static final int abc_text_size_display_1_material=0x7f05003e; + public static final int abc_text_size_display_2_material=0x7f05003f; + public static final int abc_text_size_display_3_material=0x7f050040; + public static final int abc_text_size_display_4_material=0x7f050041; + public static final int abc_text_size_headline_material=0x7f050042; + public static final int abc_text_size_large_material=0x7f050043; + public static final int abc_text_size_medium_material=0x7f050044; + public static final int abc_text_size_menu_material=0x7f050045; + public static final int abc_text_size_small_material=0x7f050046; + public static final int abc_text_size_subhead_material=0x7f050047; + public static final int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static final int abc_text_size_title_material=0x7f050048; + public static final int abc_text_size_title_material_toolbar=0x7f05000a; + public static final int card_margin=0x7f050072; + public static final int cardview_compat_inset_shadow=0x7f050003; + public static final int cardview_default_elevation=0x7f050004; + public static final int cardview_default_radius=0x7f050005; + public static final int design_appbar_elevation=0x7f050059; + public static final int design_bottom_sheet_modal_elevation=0x7f05005a; + public static final int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static final int design_fab_border_width=0x7f05005c; + public static final int design_fab_elevation=0x7f05005d; + public static final int design_fab_image_size=0x7f05005e; + public static final int design_fab_size_mini=0x7f05005f; + public static final int design_fab_size_normal=0x7f050060; + public static final int design_fab_translation_z_pressed=0x7f050061; + public static final int design_navigation_elevation=0x7f050062; + public static final int design_navigation_icon_padding=0x7f050063; + public static final int design_navigation_icon_size=0x7f050064; + public static final int design_navigation_max_width=0x7f050051; + public static final int design_navigation_padding_bottom=0x7f050065; + public static final int design_navigation_separator_vertical_padding=0x7f050066; + public static final int design_snackbar_action_inline_max_width=0x7f050052; + public static final int design_snackbar_background_corner_radius=0x7f050053; + public static final int design_snackbar_elevation=0x7f050067; + public static final int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static final int design_snackbar_max_width=0x7f050055; + public static final int design_snackbar_min_width=0x7f050056; + public static final int design_snackbar_padding_horizontal=0x7f050068; + public static final int design_snackbar_padding_vertical=0x7f050069; + public static final int design_snackbar_padding_vertical_2lines=0x7f050057; + public static final int design_snackbar_text_size=0x7f05006a; + public static final int design_tab_max_width=0x7f05006b; + public static final int design_tab_scrollable_min_width=0x7f050058; + public static final int design_tab_text_size=0x7f05006c; + public static final int design_tab_text_size_2line=0x7f05006d; + public static final int disabled_alpha_material_dark=0x7f050049; + public static final int disabled_alpha_material_light=0x7f05004a; + public static final int fab_margin=0x7f050073; + public static final int highlight_alpha_material_colored=0x7f05004b; + public static final int highlight_alpha_material_dark=0x7f05004c; + public static final int highlight_alpha_material_light=0x7f05004d; + public static final int image_size=0x7f050071; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static final int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static final int notification_large_icon_height=0x7f05004e; + public static final int notification_large_icon_width=0x7f05004f; + public static final int notification_subtext_size=0x7f050050; + public static final int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int standard_margin=0x7f05006e; + public static final int tiny_margin=0x7f050070; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static final int abc_cab_background_internal_bg=0x7f02000f; + public static final int abc_cab_background_top_material=0x7f020010; + public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static final int abc_control_background_material=0x7f020012; + public static final int abc_dialog_material_background_dark=0x7f020013; + public static final int abc_dialog_material_background_light=0x7f020014; + public static final int abc_edit_text_material=0x7f020015; + public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static final int abc_ic_clear_mtrl_alpha=0x7f020017; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static final int abc_ic_star_black_16dp=0x7f020021; + public static final int abc_ic_star_black_36dp=0x7f020022; + public static final int abc_ic_star_half_black_16dp=0x7f020023; + public static final int abc_ic_star_half_black_36dp=0x7f020024; + public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_full_material=0x7f020035; + public static final int abc_ratingbar_indicator_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_track_material=0x7f02003e; + public static final int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static final int abc_spinner_textfield_background_material=0x7f020040; + public static final int abc_switch_thumb_material=0x7f020041; + public static final int abc_switch_track_mtrl_alpha=0x7f020042; + public static final int abc_tab_indicator_material=0x7f020043; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static final int abc_text_cursor_material=0x7f020045; + public static final int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static final int abc_textfield_default_mtrl_alpha=0x7f020047; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static final int abc_textfield_search_material=0x7f02004a; + public static final int background_splash=0x7f02004b; + public static final int circle_background=0x7f02004c; + public static final int design_fab_background=0x7f02004d; + public static final int design_snackbar_background=0x7f02004e; + public static final int heroplaceholder=0x7f02004f; + public static final int ic_save=0x7f020050; + public static final int notification_template_icon_bg=0x7f020053; + public static final int profile_generic=0x7f020051; + public static final int xamarin_logo=0x7f020052; + } + public static final class id { + public static final int action0=0x7f060076; + public static final int action_bar=0x7f06005a; + public static final int action_bar_activity_content=0x7f060001; + public static final int action_bar_container=0x7f060059; + public static final int action_bar_root=0x7f060055; + public static final int action_bar_spinner=0x7f060002; + public static final int action_bar_subtitle=0x7f06003b; + public static final int action_bar_title=0x7f06003a; + public static final int action_context_bar=0x7f06005b; + public static final int action_divider=0x7f06007a; + public static final int action_menu_divider=0x7f060003; + public static final int action_menu_presenter=0x7f060004; + public static final int action_mode_bar=0x7f060057; + public static final int action_mode_bar_stub=0x7f060056; + public static final int action_mode_close_button=0x7f06003c; + public static final int activity_chooser_view_content=0x7f06003d; + public static final int alertTitle=0x7f060049; + public static final int always=0x7f06001e; + public static final int appbar=0x7f06006a; + public static final int beginning=0x7f06001b; + public static final int bottom=0x7f06002a; + public static final int buttonPanel=0x7f060044; + public static final int cancel_action=0x7f060077; + public static final int center=0x7f06002b; + public static final int center_horizontal=0x7f06002c; + public static final int center_vertical=0x7f06002d; + public static final int checkbox=0x7f060052; + public static final int chronometer=0x7f06007d; + public static final int clip_horizontal=0x7f060033; + public static final int clip_vertical=0x7f060034; + public static final int collapseActionView=0x7f06001f; + public static final int contentPanel=0x7f06004a; + public static final int custom=0x7f060050; + public static final int customPanel=0x7f06004f; + public static final int decor_content_parent=0x7f060058; + public static final int default_activity_button=0x7f060040; + public static final int design_bottom_sheet=0x7f06006e; + public static final int design_menu_item_action_area=0x7f060075; + public static final int design_menu_item_action_area_stub=0x7f060074; + public static final int design_menu_item_text=0x7f060073; + public static final int design_navigation_view=0x7f060072; + public static final int disableHome=0x7f06000e; + public static final int edit_query=0x7f06005c; + public static final int end=0x7f06001c; + public static final int end_padder=0x7f060082; + public static final int enterAlways=0x7f060023; + public static final int enterAlwaysCollapsed=0x7f060024; + public static final int exitUntilCollapsed=0x7f060025; + public static final int expand_activities_button=0x7f06003e; + public static final int expanded_menu=0x7f060051; + public static final int fill=0x7f060035; + public static final int fill_horizontal=0x7f060036; + public static final int fill_vertical=0x7f06002e; + public static final int fixed=0x7f060038; + public static final int home=0x7f060005; + public static final int homeAsUp=0x7f06000f; + public static final int icon=0x7f060042; + public static final int ifRoom=0x7f060020; + public static final int image=0x7f06003f; + public static final int info=0x7f060081; + public static final int item_touch_helper_previous_elevation=0x7f060000; + public static final int left=0x7f06002f; + public static final int line1=0x7f06007b; + public static final int line3=0x7f06007f; + public static final int listMode=0x7f06000b; + public static final int list_item=0x7f060041; + public static final int main_content=0x7f060069; + public static final int media_actions=0x7f060079; + public static final int menu_edit=0x7f060083; + public static final int middle=0x7f06001d; + public static final int mini=0x7f060037; + public static final int multiply=0x7f060016; + public static final int navigation_header_container=0x7f060071; + public static final int never=0x7f060021; + public static final int none=0x7f060010; + public static final int normal=0x7f06000c; + public static final int parallax=0x7f060028; + public static final int parentPanel=0x7f060046; + public static final int pin=0x7f060029; + public static final int progress_circular=0x7f060006; + public static final int progress_horizontal=0x7f060007; + public static final int radio=0x7f060054; + public static final int right=0x7f060030; + public static final int screen=0x7f060017; + public static final int scroll=0x7f060026; + public static final int scrollIndicatorDown=0x7f06004e; + public static final int scrollIndicatorUp=0x7f06004b; + public static final int scrollView=0x7f06004c; + public static final int scrollable=0x7f060039; + public static final int search_badge=0x7f06005e; + public static final int search_bar=0x7f06005d; + public static final int search_button=0x7f06005f; + public static final int search_close_btn=0x7f060064; + public static final int search_edit_frame=0x7f060060; + public static final int search_go_btn=0x7f060066; + public static final int search_mag_icon=0x7f060061; + public static final int search_plate=0x7f060062; + public static final int search_src_text=0x7f060063; + public static final int search_voice_btn=0x7f060067; + public static final int select_dialog_listview=0x7f060068; + public static final int shortcut=0x7f060053; + public static final int showCustom=0x7f060011; + public static final int showHome=0x7f060012; + public static final int showTitle=0x7f060013; + public static final int snackbar_action=0x7f060070; + public static final int snackbar_text=0x7f06006f; + public static final int snap=0x7f060027; + public static final int spacer=0x7f060045; + public static final int split_action_bar=0x7f060008; + public static final int src_atop=0x7f060018; + public static final int src_in=0x7f060019; + public static final int src_over=0x7f06001a; + public static final int start=0x7f060031; + public static final int status_bar_latest_event_content=0x7f060078; + public static final int submit_area=0x7f060065; + public static final int tabMode=0x7f06000d; + public static final int text=0x7f060080; + public static final int text2=0x7f06007e; + public static final int textSpacerNoButtons=0x7f06004d; + public static final int time=0x7f06007c; + public static final int title=0x7f060043; + public static final int title_template=0x7f060048; + public static final int toolbar=0x7f06006b; + public static final int top=0x7f060032; + public static final int topPanel=0x7f060047; + public static final int touch_outside=0x7f06006d; + public static final int up=0x7f060009; + public static final int useLogo=0x7f060014; + public static final int view_offset_helper=0x7f06000a; + public static final int viewpager=0x7f06006c; + public static final int withText=0x7f060022; + public static final int wrap_content=0x7f060015; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f0b0001; + public static final int abc_config_activityShortDur=0x7f0b0002; + public static final int abc_max_action_buttons=0x7f0b0000; + public static final int bottom_sheet_slide_duration=0x7f0b0006; + public static final int cancel_button_image_alpha=0x7f0b0003; + public static final int design_snackbar_text_max_lines=0x7f0b0005; + public static final int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_dialog_title_material=0x7f03000b; + public static final int abc_expanded_menu_layout=0x7f03000c; + public static final int abc_list_menu_item_checkbox=0x7f03000d; + public static final int abc_list_menu_item_icon=0x7f03000e; + public static final int abc_list_menu_item_layout=0x7f03000f; + public static final int abc_list_menu_item_radio=0x7f030010; + public static final int abc_popup_menu_item_layout=0x7f030011; + public static final int abc_screen_content_include=0x7f030012; + public static final int abc_screen_simple=0x7f030013; + public static final int abc_screen_simple_overlay_action_mode=0x7f030014; + public static final int abc_screen_toolbar=0x7f030015; + public static final int abc_search_dropdown_item_icons_2line=0x7f030016; + public static final int abc_search_view=0x7f030017; + public static final int abc_select_dialog_material=0x7f030018; + public static final int activity_main=0x7f030019; + public static final int design_bottom_sheet_dialog=0x7f03001a; + public static final int design_layout_snackbar=0x7f03001b; + public static final int design_layout_snackbar_include=0x7f03001c; + public static final int design_layout_tab_icon=0x7f03001d; + public static final int design_layout_tab_text=0x7f03001e; + public static final int design_menu_item_action_area=0x7f03001f; + public static final int design_navigation_item=0x7f030020; + public static final int design_navigation_item_header=0x7f030021; + public static final int design_navigation_item_separator=0x7f030022; + public static final int design_navigation_item_subheader=0x7f030023; + public static final int design_navigation_menu=0x7f030024; + public static final int design_navigation_menu_item=0x7f030025; + public static final int notification_media_action=0x7f030026; + public static final int notification_media_cancel_action=0x7f030027; + public static final int notification_template_big_media=0x7f030028; + public static final int notification_template_big_media_narrow=0x7f030029; + public static final int notification_template_lines=0x7f03002a; + public static final int notification_template_media=0x7f03002b; + public static final int notification_template_part_chronometer=0x7f03002c; + public static final int notification_template_part_time=0x7f03002d; + public static final int select_dialog_item_material=0x7f03002e; + public static final int select_dialog_multichoice_material=0x7f03002f; + public static final int select_dialog_singlechoice_material=0x7f030030; + public static final int support_simple_spinner_dropdown_item=0x7f030031; + } + public static final class menu { + public static final int top_menus=0x7f0d0000; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f090000; + public static final int abc_action_bar_home_description_format=0x7f090001; + public static final int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static final int abc_action_bar_up_description=0x7f090003; + public static final int abc_action_menu_overflow_description=0x7f090004; + public static final int abc_action_mode_done=0x7f090005; + public static final int abc_activity_chooser_view_see_all=0x7f090006; + public static final int abc_activitychooserview_choose_application=0x7f090007; + public static final int abc_capital_off=0x7f090008; + public static final int abc_capital_on=0x7f090009; + public static final int abc_search_hint=0x7f09000a; + public static final int abc_searchview_description_clear=0x7f09000b; + public static final int abc_searchview_description_query=0x7f09000c; + public static final int abc_searchview_description_search=0x7f09000d; + public static final int abc_searchview_description_submit=0x7f09000e; + public static final int abc_searchview_description_voice=0x7f09000f; + public static final int abc_shareactionprovider_share_with=0x7f090010; + public static final int abc_shareactionprovider_share_with_application=0x7f090011; + public static final int abc_toolbar_collapse_description=0x7f090012; + public static final int app_description=0x7f090028; + public static final int app_name=0x7f090018; + public static final int appbar_scrolling_view_behavior=0x7f090014; + public static final int bottom_sheet_behavior=0x7f090015; + public static final int character_counter_pattern=0x7f090016; + public static final int description=0x7f090021; + public static final int hello=0x7f090017; + public static final int hint_description=0x7f090027; + public static final int hint_name=0x7f090025; + public static final int info=0x7f090026; + public static final int learn_more=0x7f090020; + public static final int login=0x7f09001f; + public static final int notnow=0x7f09001c; + public static final int quantity=0x7f090024; + public static final int sign_in_text=0x7f090029; + public static final int signin=0x7f09001b; + public static final int signing_in=0x7f09001d; + public static final int status_bar_notification_info_overflow=0x7f090013; + public static final int tab1=0x7f090019; + public static final int tab2=0x7f09001a; + public static final int text=0x7f090023; + public static final int title=0x7f090022; + public static final int version_number=0x7f09001e; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f07008a; + public static final int AlertDialog_AppCompat_Light=0x7f07008b; + public static final int Animation_AppCompat_Dialog=0x7f07008c; + public static final int Animation_AppCompat_DropDownUp=0x7f07008d; + public static final int Animation_Design_BottomSheetDialog=0x7f070143; + public static final int Base_AlertDialog_AppCompat=0x7f07008e; + public static final int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static final int Base_Animation_AppCompat_Dialog=0x7f070090; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static final int Base_CardView=0x7f070001; + public static final int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static final int Base_TextAppearance_AppCompat=0x7f07003a; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static final int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static final int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static final int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static final int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static final int Base_Theme_AppCompat=0x7f07005a; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static final int Base_Theme_AppCompat_Dialog=0x7f070015; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static final int Base_Theme_AppCompat_Light=0x7f07005b; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static final int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static final int Base_V21_Theme_AppCompat=0x7f07005c; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static final int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static final int Base_V22_Theme_AppCompat=0x7f070081; + public static final int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static final int Base_V23_Theme_AppCompat=0x7f070085; + public static final int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static final int Base_V7_Theme_AppCompat=0x7f0700a4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static final int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static final int Base_Widget_AppCompat_Button=0x7f070065; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static final int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static final int Base_Widget_AppCompat_EditText=0x7f070023; + public static final int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static final int Base_Widget_AppCompat_ListView=0x7f070074; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static final int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static final int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static final int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static final int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static final int Base_Widget_Design_TabLayout=0x7f070144; + public static final int CardView=0x7f070000; + public static final int CardView_Dark=0x7f070002; + public static final int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static final int MasterDetailTheme=0x7f07015b; + public static final int MasterDetailTheme_Base=0x7f07015c; + public static final int Platform_AppCompat=0x7f07001b; + public static final int Platform_AppCompat_Light=0x7f07001c; + public static final int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static final int Platform_V11_AppCompat=0x7f07001d; + public static final int Platform_V11_AppCompat_Light=0x7f07001e; + public static final int Platform_V14_AppCompat=0x7f070025; + public static final int Platform_V14_AppCompat_Light=0x7f070026; + public static final int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static final int SplashTheme=0x7f07015d; + public static final int SplashTheme_Base=0x7f07015e; + public static final int TextAppearance_AppCompat=0x7f0700ba; + public static final int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static final int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static final int TextAppearance_AppCompat_Button=0x7f0700bd; + public static final int TextAppearance_AppCompat_Caption=0x7f0700be; + public static final int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static final int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static final int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static final int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static final int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static final int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static final int TextAppearance_AppCompat_Large=0x7f0700c5; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static final int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static final int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static final int TextAppearance_AppCompat_Small=0x7f0700d0; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static final int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static final int TextAppearance_AppCompat_Title=0x7f0700d4; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static final int TextAppearance_Design_Counter=0x7f070146; + public static final int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static final int TextAppearance_Design_Error=0x7f070148; + public static final int TextAppearance_Design_Hint=0x7f070149; + public static final int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static final int TextAppearance_Design_Tab=0x7f07014b; + public static final int TextAppearance_StatusBar_EventContent=0x7f070027; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static final int Theme_AppCompat=0x7f0700e9; + public static final int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static final int Theme_AppCompat_DayNight=0x7f070008; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static final int Theme_AppCompat_Dialog=0x7f0700eb; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static final int Theme_AppCompat_Light=0x7f0700ef; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static final int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static final int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static final int Theme_Design=0x7f07014c; + public static final int Theme_Design_BottomSheetDialog=0x7f07014d; + public static final int Theme_Design_Light=0x7f07014e; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static final int Theme_Design_Light_NoActionBar=0x7f070150; + public static final int Theme_Design_NoActionBar=0x7f070151; + public static final int ThemeOverlay_AppCompat=0x7f0700f7; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static final int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static final int Widget_AppCompat_ActionBar=0x7f0700fc; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static final int Widget_AppCompat_ActionButton=0x7f070101; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static final int Widget_AppCompat_ActionMode=0x7f070104; + public static final int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static final int Widget_AppCompat_Button=0x7f070107; + public static final int Widget_AppCompat_Button_Borderless=0x7f070108; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static final int Widget_AppCompat_Button_Colored=0x7f07010b; + public static final int Widget_AppCompat_Button_Small=0x7f07010c; + public static final int Widget_AppCompat_ButtonBar=0x7f07010d; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static final int Widget_AppCompat_EditText=0x7f070114; + public static final int Widget_AppCompat_ImageButton=0x7f070115; + public static final int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static final int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static final int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static final int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static final int Widget_AppCompat_ListView=0x7f07012d; + public static final int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static final int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static final int Widget_AppCompat_PopupMenu=0x7f070130; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static final int Widget_AppCompat_PopupWindow=0x7f070132; + public static final int Widget_AppCompat_ProgressBar=0x7f070133; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static final int Widget_AppCompat_RatingBar=0x7f070135; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static final int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static final int Widget_AppCompat_SearchView=0x7f070138; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static final int Widget_AppCompat_SeekBar=0x7f07013a; + public static final int Widget_AppCompat_Spinner=0x7f07013b; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static final int Widget_AppCompat_Toolbar=0x7f070140; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static final int Widget_CardContent=0x7f070160; + public static final int Widget_Design_AppBarLayout=0x7f070152; + public static final int Widget_Design_BottomSheet_Modal=0x7f070153; + public static final int Widget_Design_CollapsingToolbar=0x7f070154; + public static final int Widget_Design_CoordinatorLayout=0x7f070155; + public static final int Widget_Design_FloatingActionButton=0x7f070156; + public static final int Widget_Design_NavigationView=0x7f070157; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static final int Widget_Design_Snackbar=0x7f070159; + public static final int Widget_Design_TabLayout=0x7f070142; + public static final int Widget_Design_TextInputLayout=0x7f07015a; + public static final int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background com.companyname.Support:background}
{@link #ActionBar_backgroundSplit com.companyname.Support:backgroundSplit}
{@link #ActionBar_backgroundStacked com.companyname.Support:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.companyname.Support:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.companyname.Support:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.companyname.Support:contentInsetRight}
{@link #ActionBar_contentInsetStart com.companyname.Support:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.companyname.Support:customNavigationLayout}
{@link #ActionBar_displayOptions com.companyname.Support:displayOptions}
{@link #ActionBar_divider com.companyname.Support:divider}
{@link #ActionBar_elevation com.companyname.Support:elevation}
{@link #ActionBar_height com.companyname.Support:height}
{@link #ActionBar_hideOnContentScroll com.companyname.Support:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.companyname.Support:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.companyname.Support:homeLayout}
{@link #ActionBar_icon com.companyname.Support:icon}
{@link #ActionBar_indeterminateProgressStyle com.companyname.Support:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.companyname.Support:itemPadding}
{@link #ActionBar_logo com.companyname.Support:logo}
{@link #ActionBar_navigationMode com.companyname.Support:navigationMode}
{@link #ActionBar_popupTheme com.companyname.Support:popupTheme}
{@link #ActionBar_progressBarPadding com.companyname.Support:progressBarPadding}
{@link #ActionBar_progressBarStyle com.companyname.Support:progressBarStyle}
{@link #ActionBar_subtitle com.companyname.Support:subtitle}
{@link #ActionBar_subtitleTextStyle com.companyname.Support:subtitleTextStyle}
{@link #ActionBar_title com.companyname.Support:title}
{@link #ActionBar_titleTextStyle com.companyname.Support:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name com.companyname.Support:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name com.companyname.Support:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupTheme + */ + public static final int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background com.companyname.Support:background}
{@link #ActionMode_backgroundSplit com.companyname.Support:backgroundSplit}
{@link #ActionMode_closeItemLayout com.companyname.Support:closeItemLayout}
{@link #ActionMode_height com.companyname.Support:height}
{@link #ActionMode_subtitleTextStyle com.companyname.Support:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.companyname.Support:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.Support:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.companyname.Support:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.companyname.Support:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.companyname.Support:listItemLayout}
{@link #AlertDialog_listLayout com.companyname.Support:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.companyname.Support:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout com.companyname.Support:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation com.companyname.Support:elevation}
{@link #AppBarLayout_expanded com.companyname.Support:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expanded + */ + public static final int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags com.companyname.Support:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.companyname.Support:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name com.companyname.Support:layout_scrollFlags + */ + public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:layout_scrollInterpolator + */ + public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.companyname.Support:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.companyname.Support:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name com.companyname.Support:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider com.companyname.Support:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.companyname.Support:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.companyname.Support:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.companyname.Support:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.companyname.Support:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.companyname.Support:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.Support:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.companyname.Support:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.Support:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.companyname.Support:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.Support:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.companyname.Support:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.companyname.Support:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.Support:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.companyname.Support:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.companyname.Support:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.Support:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.Support:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.Support:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.companyname.Support:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.companyname.Support:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.companyname.Support:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.Support:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.Support:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.companyname.Support:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.companyname.Support:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.companyname.Support:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.Support:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.Support:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.Support:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.companyname.Support:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.Support:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.Support:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.companyname.Support:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.companyname.Support:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.Support:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.companyname.Support:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.Support:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.Support:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.Support:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.Support:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.companyname.Support:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.companyname.Support:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.companyname.Support:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.companyname.Support:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.companyname.Support:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.companyname.Support:colorAccent}
{@link #AppCompatTheme_colorButtonNormal com.companyname.Support:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.companyname.Support:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.companyname.Support:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.companyname.Support:colorControlNormal}
{@link #AppCompatTheme_colorPrimary com.companyname.Support:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.companyname.Support:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.Support:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.companyname.Support:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.companyname.Support:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.companyname.Support:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.companyname.Support:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.companyname.Support:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.companyname.Support:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.Support:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.companyname.Support:editTextBackground}
{@link #AppCompatTheme_editTextColor com.companyname.Support:editTextColor}
{@link #AppCompatTheme_editTextStyle com.companyname.Support:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.companyname.Support:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.companyname.Support:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.Support:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.companyname.Support:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle com.companyname.Support:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.companyname.Support:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.Support:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.Support:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.Support:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.Support:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.companyname.Support:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.companyname.Support:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.companyname.Support:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.companyname.Support:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.companyname.Support:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.companyname.Support:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.companyname.Support:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.Support:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.Support:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.companyname.Support:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.companyname.Support:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.companyname.Support:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.Support:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.Support:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.companyname.Support:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.companyname.Support:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.Support:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.companyname.Support:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.Support:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.Support:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.Support:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.Support:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.Support:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.companyname.Support:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.Support:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.companyname.Support:toolbarStyle}
{@link #AppCompatTheme_windowActionBar com.companyname.Support:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.companyname.Support:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.companyname.Support:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.Support:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.Support:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.Support:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.Support:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.companyname.Support:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.companyname.Support:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.companyname.Support:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name com.companyname.Support:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable com.companyname.Support:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight com.companyname.Support:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:behavior_hideable + */ + public static final int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.companyname.Support:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor com.companyname.Support:cardBackgroundColor}
{@link #CardView_cardCornerRadius com.companyname.Support:cardCornerRadius}
{@link #CardView_cardElevation com.companyname.Support:cardElevation}
{@link #CardView_cardMaxElevation com.companyname.Support:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap com.companyname.Support:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding com.companyname.Support:cardUseCompatPadding}
{@link #CardView_contentPadding com.companyname.Support:contentPadding}
{@link #CardView_contentPaddingBottom com.companyname.Support:contentPaddingBottom}
{@link #CardView_contentPaddingLeft com.companyname.Support:contentPaddingLeft}
{@link #CardView_contentPaddingRight com.companyname.Support:contentPaddingRight}
{@link #CardView_contentPaddingTop com.companyname.Support:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static final int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static final int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardBackgroundColor + */ + public static final int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardCornerRadius + */ + public static final int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardElevation + */ + public static final int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardMaxElevation + */ + public static final int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardPreventCornerOverlap + */ + public static final int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardUseCompatPadding + */ + public static final int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPadding + */ + public static final int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingBottom + */ + public static final int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingLeft + */ + public static final int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingRight + */ + public static final int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingTop + */ + public static final int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.companyname.Support:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.companyname.Support:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name com.companyname.Support:layout_collapseMode + */ + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layout_collapseParallaxMultiplier + */ + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.Support:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.Support:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim com.companyname.Support:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.Support:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.Support:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.Support:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.Support:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.Support:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.Support:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.Support:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.Support:statusBarScrim}
{@link #CollapsingToolbarLayout_title com.companyname.Support:title}
{@link #CollapsingToolbarLayout_titleEnabled com.companyname.Support:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId com.companyname.Support:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name com.companyname.Support:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name com.companyname.Support:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:title + */ + public static final int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.companyname.Support:buttonTint}
{@link #CompoundButton_buttonTintMode com.companyname.Support:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.companyname.Support:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines com.companyname.Support:keylines}
{@link #CoordinatorLayout_statusBarBackground com.companyname.Support:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor com.companyname.Support:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.companyname.Support:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior com.companyname.Support:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline com.companyname.Support:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:layout_anchor + */ + public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name com.companyname.Support:layout_anchorGravity + */ + public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layout_behavior + */ + public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layout_keyline + */ + public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme com.companyname.Support:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle com.companyname.Support:bottomSheetStyle}
{@link #DesignTheme_textColorError com.companyname.Support:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.companyname.Support:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.companyname.Support:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.companyname.Support:barLength}
{@link #DrawerArrowToggle_color com.companyname.Support:color}
{@link #DrawerArrowToggle_drawableSize com.companyname.Support:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.companyname.Support:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.companyname.Support:spinBars}
{@link #DrawerArrowToggle_thickness com.companyname.Support:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint com.companyname.Support:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode com.companyname.Support:backgroundTintMode}
{@link #FloatingActionButton_borderWidth com.companyname.Support:borderWidth}
{@link #FloatingActionButton_elevation com.companyname.Support:elevation}
{@link #FloatingActionButton_fabSize com.companyname.Support:fabSize}
{@link #FloatingActionButton_pressedTranslationZ com.companyname.Support:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor com.companyname.Support:rippleColor}
{@link #FloatingActionButton_useCompatPadding com.companyname.Support:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.companyname.Support:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name com.companyname.Support:fabSize + */ + public static final int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.Support:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.companyname.Support:divider}
{@link #LinearLayoutCompat_dividerPadding com.companyname.Support:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.Support:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.companyname.Support:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name com.companyname.Support:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout com.companyname.Support:actionLayout}
{@link #MenuItem_actionProviderClass com.companyname.Support:actionProviderClass}
{@link #MenuItem_actionViewClass com.companyname.Support:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction com.companyname.Support:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionLayout + */ + public static final int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:actionViewClass + */ + public static final int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name com.companyname.Support:showAsAction + */ + public static final int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing com.companyname.Support:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation com.companyname.Support:elevation}
{@link #NavigationView_headerLayout com.companyname.Support:headerLayout}
{@link #NavigationView_itemBackground com.companyname.Support:itemBackground}
{@link #NavigationView_itemIconTint com.companyname.Support:itemIconTint}
{@link #NavigationView_itemTextAppearance com.companyname.Support:itemTextAppearance}
{@link #NavigationView_itemTextColor com.companyname.Support:itemTextColor}
{@link #NavigationView_menu com.companyname.Support:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:headerLayout + */ + public static final int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:itemBackground + */ + public static final int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:itemIconTint + */ + public static final int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:itemTextColor + */ + public static final int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:menu + */ + public static final int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor com.companyname.Support:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.Support:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager com.companyname.Support:layoutManager}
{@link #RecyclerView_reverseLayout com.companyname.Support:reverseLayout}
{@link #RecyclerView_spanCount com.companyname.Support:spanCount}
{@link #RecyclerView_stackFromEnd com.companyname.Support:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layoutManager + */ + public static final int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:spanCount + */ + public static final int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.Support:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop com.companyname.Support:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.companyname.Support:closeIcon}
{@link #SearchView_commitIcon com.companyname.Support:commitIcon}
{@link #SearchView_defaultQueryHint com.companyname.Support:defaultQueryHint}
{@link #SearchView_goIcon com.companyname.Support:goIcon}
{@link #SearchView_iconifiedByDefault com.companyname.Support:iconifiedByDefault}
{@link #SearchView_layout com.companyname.Support:layout}
{@link #SearchView_queryBackground com.companyname.Support:queryBackground}
{@link #SearchView_queryHint com.companyname.Support:queryHint}
{@link #SearchView_searchHintIcon com.companyname.Support:searchHintIcon}
{@link #SearchView_searchIcon com.companyname.Support:searchIcon}
{@link #SearchView_submitBackground com.companyname.Support:submitBackground}
{@link #SearchView_suggestionRowLayout com.companyname.Support:suggestionRowLayout}
{@link #SearchView_voiceIcon com.companyname.Support:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation com.companyname.Support:elevation}
{@link #SnackbarLayout_maxActionInlineWidth com.companyname.Support:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme com.companyname.Support:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.companyname.Support:showText}
{@link #SwitchCompat_splitTrack com.companyname.Support:splitTrack}
{@link #SwitchCompat_switchMinWidth com.companyname.Support:switchMinWidth}
{@link #SwitchCompat_switchPadding com.companyname.Support:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.companyname.Support:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.companyname.Support:thumbTextPadding}
{@link #SwitchCompat_track com.companyname.Support:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:showText + */ + public static final int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:splitTrack + */ + public static final int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:switchPadding + */ + public static final int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:track + */ + public static final int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground com.companyname.Support:tabBackground}
{@link #TabLayout_tabContentStart com.companyname.Support:tabContentStart}
{@link #TabLayout_tabGravity com.companyname.Support:tabGravity}
{@link #TabLayout_tabIndicatorColor com.companyname.Support:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight com.companyname.Support:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth com.companyname.Support:tabMaxWidth}
{@link #TabLayout_tabMinWidth com.companyname.Support:tabMinWidth}
{@link #TabLayout_tabMode com.companyname.Support:tabMode}
{@link #TabLayout_tabPadding com.companyname.Support:tabPadding}
{@link #TabLayout_tabPaddingBottom com.companyname.Support:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd com.companyname.Support:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart com.companyname.Support:tabPaddingStart}
{@link #TabLayout_tabPaddingTop com.companyname.Support:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor com.companyname.Support:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance com.companyname.Support:tabTextAppearance}
{@link #TabLayout_tabTextColor com.companyname.Support:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name com.companyname.Support:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name com.companyname.Support:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.companyname.Support:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name com.companyname.Support:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled com.companyname.Support:counterEnabled}
{@link #TextInputLayout_counterMaxLength com.companyname.Support:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.Support:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance com.companyname.Support:counterTextAppearance}
{@link #TextInputLayout_errorEnabled com.companyname.Support:errorEnabled}
{@link #TextInputLayout_errorTextAppearance com.companyname.Support:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled com.companyname.Support:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled com.companyname.Support:hintEnabled}
{@link #TextInputLayout_hintTextAppearance com.companyname.Support:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription com.companyname.Support:collapseContentDescription}
{@link #Toolbar_collapseIcon com.companyname.Support:collapseIcon}
{@link #Toolbar_contentInsetEnd com.companyname.Support:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.companyname.Support:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.companyname.Support:contentInsetRight}
{@link #Toolbar_contentInsetStart com.companyname.Support:contentInsetStart}
{@link #Toolbar_logo com.companyname.Support:logo}
{@link #Toolbar_logoDescription com.companyname.Support:logoDescription}
{@link #Toolbar_maxButtonHeight com.companyname.Support:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.companyname.Support:navigationContentDescription}
{@link #Toolbar_navigationIcon com.companyname.Support:navigationIcon}
{@link #Toolbar_popupTheme com.companyname.Support:popupTheme}
{@link #Toolbar_subtitle com.companyname.Support:subtitle}
{@link #Toolbar_subtitleTextAppearance com.companyname.Support:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.companyname.Support:subtitleTextColor}
{@link #Toolbar_title com.companyname.Support:title}
{@link #Toolbar_titleMarginBottom com.companyname.Support:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.companyname.Support:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.companyname.Support:titleMarginStart}
{@link #Toolbar_titleMarginTop com.companyname.Support:titleMarginTop}
{@link #Toolbar_titleMargins com.companyname.Support:titleMargins}
{@link #Toolbar_titleTextAppearance com.companyname.Support:titleTextAppearance}
{@link #Toolbar_titleTextColor com.companyname.Support:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:collapseIcon + */ + public static final int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:logoDescription + */ + public static final int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:navigationIcon + */ + public static final int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupTheme + */ + public static final int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMargins + */ + public static final int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleTextColor + */ + public static final int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd com.companyname.Support:paddingEnd}
{@link #View_paddingStart com.companyname.Support:paddingStart}
{@link #View_theme com.companyname.Support:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.companyname.Support:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.Support:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.companyname.Support:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/manifest/AndroidManifest.xml b/Support/Support.Android/obj/Debug/android/manifest/AndroidManifest.xml new file mode 100644 index 0000000..004e940 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/manifest/AndroidManifest.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/customtabs/CustomTabsClient_CustomTabsCallbackImpl.java b/Support/Support.Android/obj/Debug/android/src/android/support/customtabs/CustomTabsClient_CustomTabsCallbackImpl.java new file mode 100644 index 0000000..735d560 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/customtabs/CustomTabsClient_CustomTabsCallbackImpl.java @@ -0,0 +1,38 @@ +package android.support.customtabs; + + +public class CustomTabsClient_CustomTabsCallbackImpl + extends android.support.customtabs.CustomTabsCallback + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Android.Support.CustomTabs.CustomTabsClient+CustomTabsCallbackImpl, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", CustomTabsClient_CustomTabsCallbackImpl.class, __md_methods); + } + + + public CustomTabsClient_CustomTabsCallbackImpl () throws java.lang.Throwable + { + super (); + if (getClass () == CustomTabsClient_CustomTabsCallbackImpl.class) + mono.android.TypeManager.Activate ("Android.Support.CustomTabs.CustomTabsClient+CustomTabsCallbackImpl, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/customtabs/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/customtabs/R.java new file mode 100644 index 0000000..0423b1f --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/customtabs/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.customtabs; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.customtabs:background}
{@link #ActionBar_backgroundSplit android.support.customtabs:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.customtabs:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.customtabs:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.customtabs:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.customtabs:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.customtabs:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.customtabs:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.customtabs:displayOptions}
{@link #ActionBar_divider android.support.customtabs:divider}
{@link #ActionBar_elevation android.support.customtabs:elevation}
{@link #ActionBar_height android.support.customtabs:height}
{@link #ActionBar_hideOnContentScroll android.support.customtabs:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.customtabs:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.customtabs:homeLayout}
{@link #ActionBar_icon android.support.customtabs:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.customtabs:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.customtabs:itemPadding}
{@link #ActionBar_logo android.support.customtabs:logo}
{@link #ActionBar_navigationMode android.support.customtabs:navigationMode}
{@link #ActionBar_popupTheme android.support.customtabs:popupTheme}
{@link #ActionBar_progressBarPadding android.support.customtabs:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.customtabs:progressBarStyle}
{@link #ActionBar_subtitle android.support.customtabs:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.customtabs:subtitleTextStyle}
{@link #ActionBar_title android.support.customtabs:title}
{@link #ActionBar_titleTextStyle android.support.customtabs:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.customtabs:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.customtabs:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.customtabs:background}
{@link #ActionMode_backgroundSplit android.support.customtabs:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.customtabs:closeItemLayout}
{@link #ActionMode_height android.support.customtabs:height}
{@link #ActionMode_subtitleTextStyle android.support.customtabs:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.customtabs:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.customtabs:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.customtabs:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.customtabs:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.customtabs:listItemLayout}
{@link #AlertDialog_listLayout android.support.customtabs:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.customtabs:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.customtabs:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.customtabs:elevation}
{@link #AppBarLayout_expanded android.support.customtabs:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.customtabs:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.customtabs:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.customtabs:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.customtabs:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.customtabs:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.customtabs:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.customtabs:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.customtabs:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.customtabs:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.customtabs:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.customtabs:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.customtabs:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.customtabs:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.customtabs:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.customtabs:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.customtabs:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.customtabs:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.customtabs:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.customtabs:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.customtabs:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.customtabs:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.customtabs:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.customtabs:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.customtabs:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.customtabs:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.customtabs:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.customtabs:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.customtabs:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.customtabs:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.customtabs:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.customtabs:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.customtabs:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.customtabs:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.customtabs:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.customtabs:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.customtabs:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.customtabs:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.customtabs:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.customtabs:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.customtabs:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.customtabs:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.customtabs:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.customtabs:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.customtabs:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.customtabs:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.customtabs:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.customtabs:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.customtabs:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.customtabs:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.customtabs:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.customtabs:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.customtabs:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.customtabs:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.customtabs:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.customtabs:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.customtabs:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.customtabs:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.customtabs:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.customtabs:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.customtabs:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.customtabs:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.customtabs:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.customtabs:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.customtabs:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.customtabs:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.customtabs:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.customtabs:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.customtabs:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.customtabs:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.customtabs:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.customtabs:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.customtabs:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.customtabs:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.customtabs:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.customtabs:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.customtabs:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.customtabs:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.customtabs:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.customtabs:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.customtabs:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.customtabs:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.customtabs:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.customtabs:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.customtabs:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.customtabs:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.customtabs:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.customtabs:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.customtabs:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.customtabs:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.customtabs:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.customtabs:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.customtabs:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.customtabs:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.customtabs:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.customtabs:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.customtabs:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.customtabs:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.customtabs:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.customtabs:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.customtabs:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.customtabs:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.customtabs:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.customtabs:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.customtabs:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.customtabs:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.customtabs:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.customtabs:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.customtabs:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.customtabs:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.customtabs:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.customtabs:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.customtabs:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.customtabs:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.customtabs:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.customtabs:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.customtabs:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.customtabs:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.customtabs:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.customtabs:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.customtabs:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.customtabs:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.customtabs:cardCornerRadius}
{@link #CardView_cardElevation android.support.customtabs:cardElevation}
{@link #CardView_cardMaxElevation android.support.customtabs:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.customtabs:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.customtabs:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.customtabs:contentPadding}
{@link #CardView_contentPaddingBottom android.support.customtabs:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.customtabs:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.customtabs:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.customtabs:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.customtabs:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.customtabs:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.customtabs:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.customtabs:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.customtabs:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.customtabs:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.customtabs:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.customtabs:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.customtabs:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.customtabs:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.customtabs:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.customtabs:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.customtabs:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.customtabs:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.customtabs:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.customtabs:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.customtabs:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.customtabs:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.customtabs:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.customtabs:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.customtabs:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.customtabs:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.customtabs:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.customtabs:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.customtabs:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.customtabs:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.customtabs:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.customtabs:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.customtabs:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.customtabs:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.customtabs:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.customtabs:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.customtabs:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.customtabs:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.customtabs:barLength}
{@link #DrawerArrowToggle_color android.support.customtabs:color}
{@link #DrawerArrowToggle_drawableSize android.support.customtabs:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.customtabs:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.customtabs:spinBars}
{@link #DrawerArrowToggle_thickness android.support.customtabs:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.customtabs:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.customtabs:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.customtabs:borderWidth}
{@link #FloatingActionButton_elevation android.support.customtabs:elevation}
{@link #FloatingActionButton_fabSize android.support.customtabs:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.customtabs:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.customtabs:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.customtabs:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.customtabs:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.customtabs:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.customtabs:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.customtabs:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.customtabs:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.customtabs:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.customtabs:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.customtabs:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.customtabs:actionLayout}
{@link #MenuItem_actionProviderClass android.support.customtabs:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.customtabs:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.customtabs:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.customtabs:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.customtabs:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.customtabs:elevation}
{@link #NavigationView_headerLayout android.support.customtabs:headerLayout}
{@link #NavigationView_itemBackground android.support.customtabs:itemBackground}
{@link #NavigationView_itemIconTint android.support.customtabs:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.customtabs:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.customtabs:itemTextColor}
{@link #NavigationView_menu android.support.customtabs:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.customtabs:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.customtabs:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.customtabs:layoutManager}
{@link #RecyclerView_reverseLayout android.support.customtabs:reverseLayout}
{@link #RecyclerView_spanCount android.support.customtabs:spanCount}
{@link #RecyclerView_stackFromEnd android.support.customtabs:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.customtabs:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.customtabs:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.customtabs:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.customtabs:closeIcon}
{@link #SearchView_commitIcon android.support.customtabs:commitIcon}
{@link #SearchView_defaultQueryHint android.support.customtabs:defaultQueryHint}
{@link #SearchView_goIcon android.support.customtabs:goIcon}
{@link #SearchView_iconifiedByDefault android.support.customtabs:iconifiedByDefault}
{@link #SearchView_layout android.support.customtabs:layout}
{@link #SearchView_queryBackground android.support.customtabs:queryBackground}
{@link #SearchView_queryHint android.support.customtabs:queryHint}
{@link #SearchView_searchHintIcon android.support.customtabs:searchHintIcon}
{@link #SearchView_searchIcon android.support.customtabs:searchIcon}
{@link #SearchView_submitBackground android.support.customtabs:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.customtabs:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.customtabs:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.customtabs:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.customtabs:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.customtabs:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.customtabs:showText}
{@link #SwitchCompat_splitTrack android.support.customtabs:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.customtabs:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.customtabs:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.customtabs:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.customtabs:thumbTextPadding}
{@link #SwitchCompat_track android.support.customtabs:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.customtabs:tabBackground}
{@link #TabLayout_tabContentStart android.support.customtabs:tabContentStart}
{@link #TabLayout_tabGravity android.support.customtabs:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.customtabs:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.customtabs:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.customtabs:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.customtabs:tabMinWidth}
{@link #TabLayout_tabMode android.support.customtabs:tabMode}
{@link #TabLayout_tabPadding android.support.customtabs:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.customtabs:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.customtabs:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.customtabs:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.customtabs:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.customtabs:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.customtabs:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.customtabs:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.customtabs:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.customtabs:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.customtabs:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.customtabs:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.customtabs:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.customtabs:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.customtabs:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.customtabs:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.customtabs:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.customtabs:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.customtabs:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.customtabs:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.customtabs:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.customtabs:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.customtabs:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.customtabs:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.customtabs:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.customtabs:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.customtabs:contentInsetStart}
{@link #Toolbar_logo android.support.customtabs:logo}
{@link #Toolbar_logoDescription android.support.customtabs:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.customtabs:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.customtabs:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.customtabs:navigationIcon}
{@link #Toolbar_popupTheme android.support.customtabs:popupTheme}
{@link #Toolbar_subtitle android.support.customtabs:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.customtabs:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.customtabs:subtitleTextColor}
{@link #Toolbar_title android.support.customtabs:title}
{@link #Toolbar_titleMarginBottom android.support.customtabs:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.customtabs:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.customtabs:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.customtabs:titleMarginTop}
{@link #Toolbar_titleMargins android.support.customtabs:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.customtabs:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.customtabs:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.customtabs:paddingEnd}
{@link #View_paddingStart android.support.customtabs:paddingStart}
{@link #View_theme android.support.customtabs:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.customtabs:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.customtabs:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.customtabs:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.customtabs:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.customtabs.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.customtabs:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/design/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/design/R.java new file mode 100644 index 0000000..01e87e1 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/design/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.design; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.design:background}
{@link #ActionBar_backgroundSplit android.support.design:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.design:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.design:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.design:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.design:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.design:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.design:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.design:displayOptions}
{@link #ActionBar_divider android.support.design:divider}
{@link #ActionBar_elevation android.support.design:elevation}
{@link #ActionBar_height android.support.design:height}
{@link #ActionBar_hideOnContentScroll android.support.design:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.design:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.design:homeLayout}
{@link #ActionBar_icon android.support.design:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.design:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.design:itemPadding}
{@link #ActionBar_logo android.support.design:logo}
{@link #ActionBar_navigationMode android.support.design:navigationMode}
{@link #ActionBar_popupTheme android.support.design:popupTheme}
{@link #ActionBar_progressBarPadding android.support.design:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.design:progressBarStyle}
{@link #ActionBar_subtitle android.support.design:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.design:subtitleTextStyle}
{@link #ActionBar_title android.support.design:title}
{@link #ActionBar_titleTextStyle android.support.design:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.design:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.design:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.design:background}
{@link #ActionMode_backgroundSplit android.support.design:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.design:closeItemLayout}
{@link #ActionMode_height android.support.design:height}
{@link #ActionMode_subtitleTextStyle android.support.design:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.design:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.design:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.design:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.design:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.design:listItemLayout}
{@link #AlertDialog_listLayout android.support.design:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.design:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.design:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.design:elevation}
{@link #AppBarLayout_expanded android.support.design:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.design:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.design:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.design:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.design:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.design:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.design:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.design:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.design:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.design:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.design:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.design:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.design:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.design:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.design:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.design:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.design:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.design:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.design:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.design:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.design:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.design:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.design:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.design:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.design:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.design:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.design:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.design:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.design:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.design:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.design:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.design:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.design:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.design:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.design:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.design:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.design:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.design:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.design:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.design:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.design:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.design:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.design:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.design:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.design:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.design:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.design:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.design:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.design:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.design:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.design:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.design:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.design:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.design:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.design:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.design:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.design:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.design:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.design:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.design:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.design:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.design:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.design:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.design:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.design:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.design:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.design:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.design:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.design:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.design:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.design:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.design:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.design:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.design:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.design:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.design:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.design:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.design:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.design:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.design:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.design:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.design:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.design:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.design:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.design:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.design:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.design:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.design:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.design:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.design:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.design:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.design:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.design:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.design:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.design:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.design:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.design:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.design:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.design:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.design:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.design:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.design:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.design:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.design:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.design:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.design:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.design:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.design:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.design:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.design:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.design:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.design:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.design:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.design:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.design:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.design:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.design:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.design:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.design:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.design:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.design:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.design:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.design:cardCornerRadius}
{@link #CardView_cardElevation android.support.design:cardElevation}
{@link #CardView_cardMaxElevation android.support.design:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.design:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.design:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.design:contentPadding}
{@link #CardView_contentPaddingBottom android.support.design:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.design:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.design:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.design:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.design:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.design:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.design:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.design:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.design:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.design:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.design:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.design:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.design:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.design:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.design:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.design:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.design:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.design:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.design:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.design:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.design:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.design:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.design:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.design:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.design:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.design:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.design:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.design:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.design:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.design:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.design:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.design:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.design:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.design:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.design:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.design:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.design:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.design:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.design:barLength}
{@link #DrawerArrowToggle_color android.support.design:color}
{@link #DrawerArrowToggle_drawableSize android.support.design:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.design:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.design:spinBars}
{@link #DrawerArrowToggle_thickness android.support.design:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.design:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.design:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.design:borderWidth}
{@link #FloatingActionButton_elevation android.support.design:elevation}
{@link #FloatingActionButton_fabSize android.support.design:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.design:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.design:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.design:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.design:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.design:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.design:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.design:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.design:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.design:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.design:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.design:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.design:actionLayout}
{@link #MenuItem_actionProviderClass android.support.design:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.design:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.design:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.design:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.design:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.design:elevation}
{@link #NavigationView_headerLayout android.support.design:headerLayout}
{@link #NavigationView_itemBackground android.support.design:itemBackground}
{@link #NavigationView_itemIconTint android.support.design:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.design:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.design:itemTextColor}
{@link #NavigationView_menu android.support.design:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.design:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.design:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.design:layoutManager}
{@link #RecyclerView_reverseLayout android.support.design:reverseLayout}
{@link #RecyclerView_spanCount android.support.design:spanCount}
{@link #RecyclerView_stackFromEnd android.support.design:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.design:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.design:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.design:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.design:closeIcon}
{@link #SearchView_commitIcon android.support.design:commitIcon}
{@link #SearchView_defaultQueryHint android.support.design:defaultQueryHint}
{@link #SearchView_goIcon android.support.design:goIcon}
{@link #SearchView_iconifiedByDefault android.support.design:iconifiedByDefault}
{@link #SearchView_layout android.support.design:layout}
{@link #SearchView_queryBackground android.support.design:queryBackground}
{@link #SearchView_queryHint android.support.design:queryHint}
{@link #SearchView_searchHintIcon android.support.design:searchHintIcon}
{@link #SearchView_searchIcon android.support.design:searchIcon}
{@link #SearchView_submitBackground android.support.design:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.design:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.design:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.design:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.design:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.design:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.design:showText}
{@link #SwitchCompat_splitTrack android.support.design:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.design:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.design:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.design:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.design:thumbTextPadding}
{@link #SwitchCompat_track android.support.design:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.design:tabBackground}
{@link #TabLayout_tabContentStart android.support.design:tabContentStart}
{@link #TabLayout_tabGravity android.support.design:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.design:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.design:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.design:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.design:tabMinWidth}
{@link #TabLayout_tabMode android.support.design:tabMode}
{@link #TabLayout_tabPadding android.support.design:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.design:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.design:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.design:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.design:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.design:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.design:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.design:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.design:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.design:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.design:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.design:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.design:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.design:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.design:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.design:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.design:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.design:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.design:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.design:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.design:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.design:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.design:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.design:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.design:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.design:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.design:contentInsetStart}
{@link #Toolbar_logo android.support.design:logo}
{@link #Toolbar_logoDescription android.support.design:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.design:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.design:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.design:navigationIcon}
{@link #Toolbar_popupTheme android.support.design:popupTheme}
{@link #Toolbar_subtitle android.support.design:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.design:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.design:subtitleTextColor}
{@link #Toolbar_title android.support.design:title}
{@link #Toolbar_titleMarginBottom android.support.design:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.design:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.design:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.design:titleMarginTop}
{@link #Toolbar_titleMargins android.support.design:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.design:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.design:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.design:paddingEnd}
{@link #View_paddingStart android.support.design:paddingStart}
{@link #View_theme android.support.design:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.design:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.design:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.design:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.design:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.design.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.design:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/design/widget/Snackbar_SnackbarActionClickImplementor.java b/Support/Support.Android/obj/Debug/android/src/android/support/design/widget/Snackbar_SnackbarActionClickImplementor.java new file mode 100644 index 0000000..c376161 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/design/widget/Snackbar_SnackbarActionClickImplementor.java @@ -0,0 +1,48 @@ +package android.support.design.widget; + + +public class Snackbar_SnackbarActionClickImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Android.Support.Design.Widget.Snackbar+SnackbarActionClickImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", Snackbar_SnackbarActionClickImplementor.class, __md_methods); + } + + + public Snackbar_SnackbarActionClickImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == Snackbar_SnackbarActionClickImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.Design.Widget.Snackbar+SnackbarActionClickImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/graphics/drawable/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/graphics/drawable/R.java new file mode 100644 index 0000000..e84efda --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/graphics/drawable/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.graphics.drawable; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.graphics.drawable:background}
{@link #ActionBar_backgroundSplit android.support.graphics.drawable:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.graphics.drawable:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.graphics.drawable:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.graphics.drawable:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.graphics.drawable:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.graphics.drawable:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.graphics.drawable:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.graphics.drawable:displayOptions}
{@link #ActionBar_divider android.support.graphics.drawable:divider}
{@link #ActionBar_elevation android.support.graphics.drawable:elevation}
{@link #ActionBar_height android.support.graphics.drawable:height}
{@link #ActionBar_hideOnContentScroll android.support.graphics.drawable:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.graphics.drawable:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.graphics.drawable:homeLayout}
{@link #ActionBar_icon android.support.graphics.drawable:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.graphics.drawable:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.graphics.drawable:itemPadding}
{@link #ActionBar_logo android.support.graphics.drawable:logo}
{@link #ActionBar_navigationMode android.support.graphics.drawable:navigationMode}
{@link #ActionBar_popupTheme android.support.graphics.drawable:popupTheme}
{@link #ActionBar_progressBarPadding android.support.graphics.drawable:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.graphics.drawable:progressBarStyle}
{@link #ActionBar_subtitle android.support.graphics.drawable:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.graphics.drawable:subtitleTextStyle}
{@link #ActionBar_title android.support.graphics.drawable:title}
{@link #ActionBar_titleTextStyle android.support.graphics.drawable:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.graphics.drawable:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.graphics.drawable:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.graphics.drawable:background}
{@link #ActionMode_backgroundSplit android.support.graphics.drawable:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.graphics.drawable:closeItemLayout}
{@link #ActionMode_height android.support.graphics.drawable:height}
{@link #ActionMode_subtitleTextStyle android.support.graphics.drawable:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.graphics.drawable:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.graphics.drawable:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.graphics.drawable:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.graphics.drawable:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.graphics.drawable:listItemLayout}
{@link #AlertDialog_listLayout android.support.graphics.drawable:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.graphics.drawable:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.graphics.drawable:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.graphics.drawable:elevation}
{@link #AppBarLayout_expanded android.support.graphics.drawable:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.graphics.drawable:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.graphics.drawable:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.graphics.drawable:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.graphics.drawable:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.graphics.drawable:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.graphics.drawable:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.graphics.drawable:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.graphics.drawable:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.graphics.drawable:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.graphics.drawable:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.graphics.drawable:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.graphics.drawable:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.graphics.drawable:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.graphics.drawable:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.graphics.drawable:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.graphics.drawable:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.graphics.drawable:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.graphics.drawable:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.graphics.drawable:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.graphics.drawable:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.graphics.drawable:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.graphics.drawable:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.graphics.drawable:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.graphics.drawable:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.graphics.drawable:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.graphics.drawable:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.graphics.drawable:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.graphics.drawable:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.graphics.drawable:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.graphics.drawable:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.graphics.drawable:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.graphics.drawable:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.graphics.drawable:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.graphics.drawable:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.graphics.drawable:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.graphics.drawable:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.graphics.drawable:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.graphics.drawable:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.graphics.drawable:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.graphics.drawable:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.graphics.drawable:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.graphics.drawable:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.graphics.drawable:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.graphics.drawable:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.graphics.drawable:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.graphics.drawable:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.graphics.drawable:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.graphics.drawable:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.graphics.drawable:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.graphics.drawable:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.graphics.drawable:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.graphics.drawable:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.graphics.drawable:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.graphics.drawable:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.graphics.drawable:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.graphics.drawable:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.graphics.drawable:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.graphics.drawable:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.graphics.drawable:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.graphics.drawable:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.graphics.drawable:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.graphics.drawable:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.graphics.drawable:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.graphics.drawable:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.graphics.drawable:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.graphics.drawable:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.graphics.drawable:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.graphics.drawable:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.graphics.drawable:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.graphics.drawable:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.graphics.drawable:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.graphics.drawable:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.graphics.drawable:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.graphics.drawable:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.graphics.drawable:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.graphics.drawable:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.graphics.drawable:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.graphics.drawable:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.graphics.drawable:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.graphics.drawable:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.graphics.drawable:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.graphics.drawable:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.graphics.drawable:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.graphics.drawable:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.graphics.drawable:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.graphics.drawable:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.graphics.drawable:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.graphics.drawable:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.graphics.drawable:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.graphics.drawable:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.graphics.drawable:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.graphics.drawable:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.graphics.drawable:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.graphics.drawable:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.graphics.drawable:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.graphics.drawable:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.graphics.drawable:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.graphics.drawable:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.graphics.drawable:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.graphics.drawable:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.graphics.drawable:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.graphics.drawable:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.graphics.drawable:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.graphics.drawable:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.graphics.drawable:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.graphics.drawable:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.graphics.drawable:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.graphics.drawable:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.graphics.drawable:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.graphics.drawable:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.graphics.drawable:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.graphics.drawable:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.graphics.drawable:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.graphics.drawable:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.graphics.drawable:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.graphics.drawable:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.graphics.drawable:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.graphics.drawable:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.graphics.drawable:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.graphics.drawable:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.graphics.drawable:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.graphics.drawable:cardCornerRadius}
{@link #CardView_cardElevation android.support.graphics.drawable:cardElevation}
{@link #CardView_cardMaxElevation android.support.graphics.drawable:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.graphics.drawable:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.graphics.drawable:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.graphics.drawable:contentPadding}
{@link #CardView_contentPaddingBottom android.support.graphics.drawable:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.graphics.drawable:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.graphics.drawable:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.graphics.drawable:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.graphics.drawable:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.graphics.drawable:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.graphics.drawable:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.graphics.drawable:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.graphics.drawable:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.graphics.drawable:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.graphics.drawable:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.graphics.drawable:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.graphics.drawable:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.graphics.drawable:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.graphics.drawable:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.graphics.drawable:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.graphics.drawable:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.graphics.drawable:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.graphics.drawable:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.graphics.drawable:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.graphics.drawable:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.graphics.drawable:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.graphics.drawable:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.graphics.drawable:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.graphics.drawable:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.graphics.drawable:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.graphics.drawable:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.graphics.drawable:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.graphics.drawable:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.graphics.drawable:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.graphics.drawable:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.graphics.drawable:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.graphics.drawable:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.graphics.drawable:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.graphics.drawable:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.graphics.drawable:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.graphics.drawable:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.graphics.drawable:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.graphics.drawable:barLength}
{@link #DrawerArrowToggle_color android.support.graphics.drawable:color}
{@link #DrawerArrowToggle_drawableSize android.support.graphics.drawable:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.graphics.drawable:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.graphics.drawable:spinBars}
{@link #DrawerArrowToggle_thickness android.support.graphics.drawable:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.graphics.drawable:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.graphics.drawable:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.graphics.drawable:borderWidth}
{@link #FloatingActionButton_elevation android.support.graphics.drawable:elevation}
{@link #FloatingActionButton_fabSize android.support.graphics.drawable:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.graphics.drawable:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.graphics.drawable:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.graphics.drawable:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.graphics.drawable:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.graphics.drawable:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.graphics.drawable:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.graphics.drawable:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.graphics.drawable:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.graphics.drawable:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.graphics.drawable:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.graphics.drawable:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.graphics.drawable:actionLayout}
{@link #MenuItem_actionProviderClass android.support.graphics.drawable:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.graphics.drawable:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.graphics.drawable:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.graphics.drawable:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.graphics.drawable:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.graphics.drawable:elevation}
{@link #NavigationView_headerLayout android.support.graphics.drawable:headerLayout}
{@link #NavigationView_itemBackground android.support.graphics.drawable:itemBackground}
{@link #NavigationView_itemIconTint android.support.graphics.drawable:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.graphics.drawable:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.graphics.drawable:itemTextColor}
{@link #NavigationView_menu android.support.graphics.drawable:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.graphics.drawable:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.graphics.drawable:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.graphics.drawable:layoutManager}
{@link #RecyclerView_reverseLayout android.support.graphics.drawable:reverseLayout}
{@link #RecyclerView_spanCount android.support.graphics.drawable:spanCount}
{@link #RecyclerView_stackFromEnd android.support.graphics.drawable:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.graphics.drawable:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.graphics.drawable:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.graphics.drawable:closeIcon}
{@link #SearchView_commitIcon android.support.graphics.drawable:commitIcon}
{@link #SearchView_defaultQueryHint android.support.graphics.drawable:defaultQueryHint}
{@link #SearchView_goIcon android.support.graphics.drawable:goIcon}
{@link #SearchView_iconifiedByDefault android.support.graphics.drawable:iconifiedByDefault}
{@link #SearchView_layout android.support.graphics.drawable:layout}
{@link #SearchView_queryBackground android.support.graphics.drawable:queryBackground}
{@link #SearchView_queryHint android.support.graphics.drawable:queryHint}
{@link #SearchView_searchHintIcon android.support.graphics.drawable:searchHintIcon}
{@link #SearchView_searchIcon android.support.graphics.drawable:searchIcon}
{@link #SearchView_submitBackground android.support.graphics.drawable:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.graphics.drawable:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.graphics.drawable:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.graphics.drawable:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.graphics.drawable:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.graphics.drawable:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.graphics.drawable:showText}
{@link #SwitchCompat_splitTrack android.support.graphics.drawable:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.graphics.drawable:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.graphics.drawable:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.graphics.drawable:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.graphics.drawable:thumbTextPadding}
{@link #SwitchCompat_track android.support.graphics.drawable:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.graphics.drawable:tabBackground}
{@link #TabLayout_tabContentStart android.support.graphics.drawable:tabContentStart}
{@link #TabLayout_tabGravity android.support.graphics.drawable:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.graphics.drawable:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.graphics.drawable:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.graphics.drawable:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.graphics.drawable:tabMinWidth}
{@link #TabLayout_tabMode android.support.graphics.drawable:tabMode}
{@link #TabLayout_tabPadding android.support.graphics.drawable:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.graphics.drawable:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.graphics.drawable:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.graphics.drawable:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.graphics.drawable:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.graphics.drawable:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.graphics.drawable:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.graphics.drawable:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.graphics.drawable:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.graphics.drawable:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.graphics.drawable:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.graphics.drawable:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.graphics.drawable:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.graphics.drawable:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.graphics.drawable:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.graphics.drawable:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.graphics.drawable:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.graphics.drawable:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.graphics.drawable:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.graphics.drawable:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.graphics.drawable:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.graphics.drawable:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.graphics.drawable:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.graphics.drawable:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.graphics.drawable:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.graphics.drawable:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.graphics.drawable:contentInsetStart}
{@link #Toolbar_logo android.support.graphics.drawable:logo}
{@link #Toolbar_logoDescription android.support.graphics.drawable:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.graphics.drawable:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.graphics.drawable:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.graphics.drawable:navigationIcon}
{@link #Toolbar_popupTheme android.support.graphics.drawable:popupTheme}
{@link #Toolbar_subtitle android.support.graphics.drawable:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.graphics.drawable:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.graphics.drawable:subtitleTextColor}
{@link #Toolbar_title android.support.graphics.drawable:title}
{@link #Toolbar_titleMarginBottom android.support.graphics.drawable:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.graphics.drawable:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.graphics.drawable:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.graphics.drawable:titleMarginTop}
{@link #Toolbar_titleMargins android.support.graphics.drawable:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.graphics.drawable:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.graphics.drawable:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.graphics.drawable:paddingEnd}
{@link #View_paddingStart android.support.graphics.drawable:paddingStart}
{@link #View_theme android.support.graphics.drawable:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.graphics.drawable:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.graphics.drawable:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.graphics.drawable:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/graphics/drawable/animated/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/graphics/drawable/animated/R.java new file mode 100644 index 0000000..5a0a967 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/graphics/drawable/animated/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.graphics.drawable.animated; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.graphics.drawable.animated:background}
{@link #ActionBar_backgroundSplit android.support.graphics.drawable.animated:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.graphics.drawable.animated:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.graphics.drawable.animated:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.graphics.drawable.animated:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.graphics.drawable.animated:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.graphics.drawable.animated:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.graphics.drawable.animated:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.graphics.drawable.animated:displayOptions}
{@link #ActionBar_divider android.support.graphics.drawable.animated:divider}
{@link #ActionBar_elevation android.support.graphics.drawable.animated:elevation}
{@link #ActionBar_height android.support.graphics.drawable.animated:height}
{@link #ActionBar_hideOnContentScroll android.support.graphics.drawable.animated:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.graphics.drawable.animated:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.graphics.drawable.animated:homeLayout}
{@link #ActionBar_icon android.support.graphics.drawable.animated:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.graphics.drawable.animated:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.graphics.drawable.animated:itemPadding}
{@link #ActionBar_logo android.support.graphics.drawable.animated:logo}
{@link #ActionBar_navigationMode android.support.graphics.drawable.animated:navigationMode}
{@link #ActionBar_popupTheme android.support.graphics.drawable.animated:popupTheme}
{@link #ActionBar_progressBarPadding android.support.graphics.drawable.animated:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.graphics.drawable.animated:progressBarStyle}
{@link #ActionBar_subtitle android.support.graphics.drawable.animated:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.graphics.drawable.animated:subtitleTextStyle}
{@link #ActionBar_title android.support.graphics.drawable.animated:title}
{@link #ActionBar_titleTextStyle android.support.graphics.drawable.animated:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.graphics.drawable.animated:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.graphics.drawable.animated:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.graphics.drawable.animated:background}
{@link #ActionMode_backgroundSplit android.support.graphics.drawable.animated:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.graphics.drawable.animated:closeItemLayout}
{@link #ActionMode_height android.support.graphics.drawable.animated:height}
{@link #ActionMode_subtitleTextStyle android.support.graphics.drawable.animated:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.graphics.drawable.animated:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.graphics.drawable.animated:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.graphics.drawable.animated:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.graphics.drawable.animated:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.graphics.drawable.animated:listItemLayout}
{@link #AlertDialog_listLayout android.support.graphics.drawable.animated:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.graphics.drawable.animated:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.graphics.drawable.animated:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.graphics.drawable.animated:elevation}
{@link #AppBarLayout_expanded android.support.graphics.drawable.animated:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.graphics.drawable.animated:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.graphics.drawable.animated:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.graphics.drawable.animated:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.graphics.drawable.animated:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.graphics.drawable.animated:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.graphics.drawable.animated:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.graphics.drawable.animated:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.graphics.drawable.animated:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.graphics.drawable.animated:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.graphics.drawable.animated:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.graphics.drawable.animated:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.graphics.drawable.animated:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.graphics.drawable.animated:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.graphics.drawable.animated:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.graphics.drawable.animated:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.graphics.drawable.animated:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.graphics.drawable.animated:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.graphics.drawable.animated:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.graphics.drawable.animated:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.graphics.drawable.animated:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.graphics.drawable.animated:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.graphics.drawable.animated:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.graphics.drawable.animated:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.graphics.drawable.animated:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.graphics.drawable.animated:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.graphics.drawable.animated:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.graphics.drawable.animated:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.graphics.drawable.animated:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.graphics.drawable.animated:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.graphics.drawable.animated:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.graphics.drawable.animated:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.graphics.drawable.animated:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.graphics.drawable.animated:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.graphics.drawable.animated:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.graphics.drawable.animated:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.graphics.drawable.animated:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.graphics.drawable.animated:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.graphics.drawable.animated:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.graphics.drawable.animated:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.graphics.drawable.animated:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.graphics.drawable.animated:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.graphics.drawable.animated:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.graphics.drawable.animated:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.graphics.drawable.animated:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.graphics.drawable.animated:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.graphics.drawable.animated:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.graphics.drawable.animated:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.graphics.drawable.animated:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.graphics.drawable.animated:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.graphics.drawable.animated:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.graphics.drawable.animated:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.graphics.drawable.animated:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.graphics.drawable.animated:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.graphics.drawable.animated:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.graphics.drawable.animated:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.graphics.drawable.animated:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.graphics.drawable.animated:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.graphics.drawable.animated:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.graphics.drawable.animated:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.graphics.drawable.animated:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.graphics.drawable.animated:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.graphics.drawable.animated:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.graphics.drawable.animated:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.graphics.drawable.animated:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.graphics.drawable.animated:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.graphics.drawable.animated:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.graphics.drawable.animated:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.graphics.drawable.animated:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.graphics.drawable.animated:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.graphics.drawable.animated:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.graphics.drawable.animated:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.graphics.drawable.animated:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.graphics.drawable.animated:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.graphics.drawable.animated:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.graphics.drawable.animated:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.graphics.drawable.animated:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.graphics.drawable.animated:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.graphics.drawable.animated:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.graphics.drawable.animated:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.graphics.drawable.animated:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.graphics.drawable.animated:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.graphics.drawable.animated:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.graphics.drawable.animated:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.graphics.drawable.animated:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.graphics.drawable.animated:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.graphics.drawable.animated:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.graphics.drawable.animated:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.graphics.drawable.animated:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.graphics.drawable.animated:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.graphics.drawable.animated:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.graphics.drawable.animated:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.graphics.drawable.animated:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.graphics.drawable.animated:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.graphics.drawable.animated:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.graphics.drawable.animated:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.graphics.drawable.animated:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.graphics.drawable.animated:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.graphics.drawable.animated:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.graphics.drawable.animated:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.graphics.drawable.animated:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.graphics.drawable.animated:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.graphics.drawable.animated:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.graphics.drawable.animated:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.graphics.drawable.animated:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.graphics.drawable.animated:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.graphics.drawable.animated:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.graphics.drawable.animated:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.graphics.drawable.animated:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.graphics.drawable.animated:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.graphics.drawable.animated:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.graphics.drawable.animated:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.graphics.drawable.animated:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.graphics.drawable.animated:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.graphics.drawable.animated:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.graphics.drawable.animated:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.graphics.drawable.animated:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.graphics.drawable.animated:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.graphics.drawable.animated:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.graphics.drawable.animated:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.graphics.drawable.animated:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.graphics.drawable.animated:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.graphics.drawable.animated:cardCornerRadius}
{@link #CardView_cardElevation android.support.graphics.drawable.animated:cardElevation}
{@link #CardView_cardMaxElevation android.support.graphics.drawable.animated:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.graphics.drawable.animated:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.graphics.drawable.animated:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.graphics.drawable.animated:contentPadding}
{@link #CardView_contentPaddingBottom android.support.graphics.drawable.animated:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.graphics.drawable.animated:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.graphics.drawable.animated:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.graphics.drawable.animated:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.graphics.drawable.animated:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.graphics.drawable.animated:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.graphics.drawable.animated:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.graphics.drawable.animated:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.graphics.drawable.animated:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.graphics.drawable.animated:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.graphics.drawable.animated:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.graphics.drawable.animated:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.graphics.drawable.animated:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.graphics.drawable.animated:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.graphics.drawable.animated:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.graphics.drawable.animated:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.graphics.drawable.animated:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.graphics.drawable.animated:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.graphics.drawable.animated:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.graphics.drawable.animated:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.graphics.drawable.animated:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.graphics.drawable.animated:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.graphics.drawable.animated:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.graphics.drawable.animated:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.graphics.drawable.animated:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.graphics.drawable.animated:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.graphics.drawable.animated:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.graphics.drawable.animated:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.graphics.drawable.animated:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.graphics.drawable.animated:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.graphics.drawable.animated:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.graphics.drawable.animated:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.graphics.drawable.animated:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.graphics.drawable.animated:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.graphics.drawable.animated:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.graphics.drawable.animated:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.graphics.drawable.animated:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.graphics.drawable.animated:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.graphics.drawable.animated:barLength}
{@link #DrawerArrowToggle_color android.support.graphics.drawable.animated:color}
{@link #DrawerArrowToggle_drawableSize android.support.graphics.drawable.animated:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.graphics.drawable.animated:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.graphics.drawable.animated:spinBars}
{@link #DrawerArrowToggle_thickness android.support.graphics.drawable.animated:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.graphics.drawable.animated:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.graphics.drawable.animated:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.graphics.drawable.animated:borderWidth}
{@link #FloatingActionButton_elevation android.support.graphics.drawable.animated:elevation}
{@link #FloatingActionButton_fabSize android.support.graphics.drawable.animated:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.graphics.drawable.animated:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.graphics.drawable.animated:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.graphics.drawable.animated:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.graphics.drawable.animated:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.graphics.drawable.animated:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.graphics.drawable.animated:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.graphics.drawable.animated:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.graphics.drawable.animated:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.graphics.drawable.animated:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.graphics.drawable.animated:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.graphics.drawable.animated:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.graphics.drawable.animated:actionLayout}
{@link #MenuItem_actionProviderClass android.support.graphics.drawable.animated:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.graphics.drawable.animated:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.graphics.drawable.animated:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.graphics.drawable.animated:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.graphics.drawable.animated:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.graphics.drawable.animated:elevation}
{@link #NavigationView_headerLayout android.support.graphics.drawable.animated:headerLayout}
{@link #NavigationView_itemBackground android.support.graphics.drawable.animated:itemBackground}
{@link #NavigationView_itemIconTint android.support.graphics.drawable.animated:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.graphics.drawable.animated:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.graphics.drawable.animated:itemTextColor}
{@link #NavigationView_menu android.support.graphics.drawable.animated:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.graphics.drawable.animated:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.graphics.drawable.animated:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.graphics.drawable.animated:layoutManager}
{@link #RecyclerView_reverseLayout android.support.graphics.drawable.animated:reverseLayout}
{@link #RecyclerView_spanCount android.support.graphics.drawable.animated:spanCount}
{@link #RecyclerView_stackFromEnd android.support.graphics.drawable.animated:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.graphics.drawable.animated:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.graphics.drawable.animated:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.graphics.drawable.animated:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.graphics.drawable.animated:closeIcon}
{@link #SearchView_commitIcon android.support.graphics.drawable.animated:commitIcon}
{@link #SearchView_defaultQueryHint android.support.graphics.drawable.animated:defaultQueryHint}
{@link #SearchView_goIcon android.support.graphics.drawable.animated:goIcon}
{@link #SearchView_iconifiedByDefault android.support.graphics.drawable.animated:iconifiedByDefault}
{@link #SearchView_layout android.support.graphics.drawable.animated:layout}
{@link #SearchView_queryBackground android.support.graphics.drawable.animated:queryBackground}
{@link #SearchView_queryHint android.support.graphics.drawable.animated:queryHint}
{@link #SearchView_searchHintIcon android.support.graphics.drawable.animated:searchHintIcon}
{@link #SearchView_searchIcon android.support.graphics.drawable.animated:searchIcon}
{@link #SearchView_submitBackground android.support.graphics.drawable.animated:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.graphics.drawable.animated:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.graphics.drawable.animated:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.graphics.drawable.animated:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.graphics.drawable.animated:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.graphics.drawable.animated:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.graphics.drawable.animated:showText}
{@link #SwitchCompat_splitTrack android.support.graphics.drawable.animated:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.graphics.drawable.animated:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.graphics.drawable.animated:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.graphics.drawable.animated:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.graphics.drawable.animated:thumbTextPadding}
{@link #SwitchCompat_track android.support.graphics.drawable.animated:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.graphics.drawable.animated:tabBackground}
{@link #TabLayout_tabContentStart android.support.graphics.drawable.animated:tabContentStart}
{@link #TabLayout_tabGravity android.support.graphics.drawable.animated:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.graphics.drawable.animated:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.graphics.drawable.animated:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.graphics.drawable.animated:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.graphics.drawable.animated:tabMinWidth}
{@link #TabLayout_tabMode android.support.graphics.drawable.animated:tabMode}
{@link #TabLayout_tabPadding android.support.graphics.drawable.animated:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.graphics.drawable.animated:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.graphics.drawable.animated:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.graphics.drawable.animated:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.graphics.drawable.animated:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.graphics.drawable.animated:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.graphics.drawable.animated:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.graphics.drawable.animated:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.graphics.drawable.animated:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.graphics.drawable.animated:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.graphics.drawable.animated:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.graphics.drawable.animated:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.graphics.drawable.animated:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.graphics.drawable.animated:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.graphics.drawable.animated:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.graphics.drawable.animated:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.graphics.drawable.animated:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.graphics.drawable.animated:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.graphics.drawable.animated:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.graphics.drawable.animated:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.graphics.drawable.animated:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.graphics.drawable.animated:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.graphics.drawable.animated:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.graphics.drawable.animated:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.graphics.drawable.animated:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.graphics.drawable.animated:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.graphics.drawable.animated:contentInsetStart}
{@link #Toolbar_logo android.support.graphics.drawable.animated:logo}
{@link #Toolbar_logoDescription android.support.graphics.drawable.animated:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.graphics.drawable.animated:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.graphics.drawable.animated:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.graphics.drawable.animated:navigationIcon}
{@link #Toolbar_popupTheme android.support.graphics.drawable.animated:popupTheme}
{@link #Toolbar_subtitle android.support.graphics.drawable.animated:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.graphics.drawable.animated:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.graphics.drawable.animated:subtitleTextColor}
{@link #Toolbar_title android.support.graphics.drawable.animated:title}
{@link #Toolbar_titleMarginBottom android.support.graphics.drawable.animated:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.graphics.drawable.animated:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.graphics.drawable.animated:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.graphics.drawable.animated:titleMarginTop}
{@link #Toolbar_titleMargins android.support.graphics.drawable.animated:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.graphics.drawable.animated:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.graphics.drawable.animated:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.graphics.drawable.animated:paddingEnd}
{@link #View_paddingStart android.support.graphics.drawable.animated:paddingStart}
{@link #View_theme android.support.graphics.drawable.animated:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.graphics.drawable.animated:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.graphics.drawable.animated:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.graphics.drawable.animated:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.graphics.drawable.animated:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.graphics.drawable.animated.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.graphics.drawable.animated:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v4/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/v4/R.java new file mode 100644 index 0000000..6d7ceee --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v4/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v4; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.v4:background}
{@link #ActionBar_backgroundSplit android.support.v4:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.v4:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.v4:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.v4:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.v4:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.v4:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.v4:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.v4:displayOptions}
{@link #ActionBar_divider android.support.v4:divider}
{@link #ActionBar_elevation android.support.v4:elevation}
{@link #ActionBar_height android.support.v4:height}
{@link #ActionBar_hideOnContentScroll android.support.v4:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.v4:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.v4:homeLayout}
{@link #ActionBar_icon android.support.v4:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.v4:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.v4:itemPadding}
{@link #ActionBar_logo android.support.v4:logo}
{@link #ActionBar_navigationMode android.support.v4:navigationMode}
{@link #ActionBar_popupTheme android.support.v4:popupTheme}
{@link #ActionBar_progressBarPadding android.support.v4:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.v4:progressBarStyle}
{@link #ActionBar_subtitle android.support.v4:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.v4:subtitleTextStyle}
{@link #ActionBar_title android.support.v4:title}
{@link #ActionBar_titleTextStyle android.support.v4:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.v4:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.v4:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.v4:background}
{@link #ActionMode_backgroundSplit android.support.v4:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.v4:closeItemLayout}
{@link #ActionMode_height android.support.v4:height}
{@link #ActionMode_subtitleTextStyle android.support.v4:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.v4:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.v4:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.v4:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.v4:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.v4:listItemLayout}
{@link #AlertDialog_listLayout android.support.v4:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.v4:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.v4:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.v4:elevation}
{@link #AppBarLayout_expanded android.support.v4:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.v4:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.v4:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.v4:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.v4:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.v4:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v4:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.v4:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.v4:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.v4:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.v4:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.v4:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.v4:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.v4:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.v4:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.v4:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.v4:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.v4:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.v4:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.v4:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.v4:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.v4:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.v4:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.v4:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.v4:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.v4:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.v4:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.v4:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.v4:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.v4:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.v4:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.v4:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.v4:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.v4:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.v4:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.v4:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.v4:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.v4:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.v4:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.v4:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.v4:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.v4:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.v4:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.v4:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.v4:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.v4:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.v4:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.v4:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.v4:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.v4:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.v4:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.v4:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.v4:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.v4:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.v4:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.v4:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.v4:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.v4:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.v4:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.v4:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.v4:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.v4:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.v4:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.v4:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.v4:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.v4:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.v4:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.v4:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.v4:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.v4:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.v4:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.v4:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.v4:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.v4:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.v4:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.v4:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.v4:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.v4:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.v4:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.v4:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.v4:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.v4:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.v4:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.v4:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.v4:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.v4:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.v4:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.v4:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.v4:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.v4:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.v4:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.v4:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.v4:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.v4:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.v4:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.v4:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.v4:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.v4:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.v4:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.v4:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.v4:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.v4:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.v4:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.v4:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.v4:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.v4:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.v4:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.v4:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.v4:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.v4:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.v4:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.v4:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.v4:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.v4:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.v4:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.v4:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.v4:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.v4:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.v4:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.v4:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.v4:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.v4:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.v4:cardCornerRadius}
{@link #CardView_cardElevation android.support.v4:cardElevation}
{@link #CardView_cardMaxElevation android.support.v4:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.v4:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.v4:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.v4:contentPadding}
{@link #CardView_contentPaddingBottom android.support.v4:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.v4:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.v4:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.v4:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.v4:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.v4:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.v4:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.v4:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.v4:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.v4:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.v4:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.v4:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.v4:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.v4:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.v4:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.v4:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.v4:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.v4:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.v4:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.v4:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.v4:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v4:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v4:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.v4:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.v4:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v4:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.v4:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.v4:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.v4:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.v4:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.v4:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.v4:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.v4:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.v4:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.v4:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.v4:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.v4:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.v4:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.v4:barLength}
{@link #DrawerArrowToggle_color android.support.v4:color}
{@link #DrawerArrowToggle_drawableSize android.support.v4:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.v4:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.v4:spinBars}
{@link #DrawerArrowToggle_thickness android.support.v4:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.v4:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.v4:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.v4:borderWidth}
{@link #FloatingActionButton_elevation android.support.v4:elevation}
{@link #FloatingActionButton_fabSize android.support.v4:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.v4:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.v4:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.v4:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v4:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.v4:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.v4:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.v4:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.v4:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.v4:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.v4:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.v4:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.v4:actionLayout}
{@link #MenuItem_actionProviderClass android.support.v4:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.v4:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.v4:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.v4:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.v4:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.v4:elevation}
{@link #NavigationView_headerLayout android.support.v4:headerLayout}
{@link #NavigationView_itemBackground android.support.v4:itemBackground}
{@link #NavigationView_itemIconTint android.support.v4:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.v4:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.v4:itemTextColor}
{@link #NavigationView_menu android.support.v4:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.v4:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.v4:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.v4:layoutManager}
{@link #RecyclerView_reverseLayout android.support.v4:reverseLayout}
{@link #RecyclerView_spanCount android.support.v4:spanCount}
{@link #RecyclerView_stackFromEnd android.support.v4:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.v4:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v4:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.v4:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.v4:closeIcon}
{@link #SearchView_commitIcon android.support.v4:commitIcon}
{@link #SearchView_defaultQueryHint android.support.v4:defaultQueryHint}
{@link #SearchView_goIcon android.support.v4:goIcon}
{@link #SearchView_iconifiedByDefault android.support.v4:iconifiedByDefault}
{@link #SearchView_layout android.support.v4:layout}
{@link #SearchView_queryBackground android.support.v4:queryBackground}
{@link #SearchView_queryHint android.support.v4:queryHint}
{@link #SearchView_searchHintIcon android.support.v4:searchHintIcon}
{@link #SearchView_searchIcon android.support.v4:searchIcon}
{@link #SearchView_submitBackground android.support.v4:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.v4:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.v4:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.v4:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.v4:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.v4:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.v4:showText}
{@link #SwitchCompat_splitTrack android.support.v4:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.v4:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.v4:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.v4:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.v4:thumbTextPadding}
{@link #SwitchCompat_track android.support.v4:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.v4:tabBackground}
{@link #TabLayout_tabContentStart android.support.v4:tabContentStart}
{@link #TabLayout_tabGravity android.support.v4:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.v4:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.v4:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.v4:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.v4:tabMinWidth}
{@link #TabLayout_tabMode android.support.v4:tabMode}
{@link #TabLayout_tabPadding android.support.v4:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.v4:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.v4:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.v4:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.v4:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.v4:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.v4:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.v4:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.v4:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.v4:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.v4:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v4:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.v4:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.v4:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.v4:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.v4:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.v4:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.v4:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.v4:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.v4:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.v4:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.v4:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.v4:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.v4:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.v4:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.v4:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.v4:contentInsetStart}
{@link #Toolbar_logo android.support.v4:logo}
{@link #Toolbar_logoDescription android.support.v4:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.v4:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.v4:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.v4:navigationIcon}
{@link #Toolbar_popupTheme android.support.v4:popupTheme}
{@link #Toolbar_subtitle android.support.v4:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.v4:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.v4:subtitleTextColor}
{@link #Toolbar_title android.support.v4:title}
{@link #Toolbar_titleMarginBottom android.support.v4:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.v4:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.v4:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.v4:titleMarginTop}
{@link #Toolbar_titleMargins android.support.v4:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.v4:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.v4:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.v4:paddingEnd}
{@link #View_paddingStart android.support.v4:paddingStart}
{@link #View_theme android.support.v4:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v4:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.v4:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.v4:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v4:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v4.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v4:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java new file mode 100644 index 0000000..8c5fc96 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnCancelListenerImplementor.java @@ -0,0 +1,48 @@ +package android.support.v7.app; + + +public class AlertDialog_IDialogInterfaceOnCancelListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.content.DialogInterface.OnCancelListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCancel:(Landroid/content/DialogInterface;)V:GetOnCancel_Landroid_content_DialogInterface_Handler:Android.Content.IDialogInterfaceOnCancelListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.App.AlertDialog+IDialogInterfaceOnCancelListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class, __md_methods); + } + + + public AlertDialog_IDialogInterfaceOnCancelListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == AlertDialog_IDialogInterfaceOnCancelListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.App.AlertDialog+IDialogInterfaceOnCancelListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCancel (android.content.DialogInterface p0) + { + n_onCancel (p0); + } + + private native void n_onCancel (android.content.DialogInterface p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.java new file mode 100644 index 0000000..3ac2221 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnClickListenerImplementor.java @@ -0,0 +1,48 @@ +package android.support.v7.app; + + +public class AlertDialog_IDialogInterfaceOnClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.content.DialogInterface.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/content/DialogInterface;I)V:GetOnClick_Landroid_content_DialogInterface_IHandler:Android.Content.IDialogInterfaceOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.App.AlertDialog+IDialogInterfaceOnClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", AlertDialog_IDialogInterfaceOnClickListenerImplementor.class, __md_methods); + } + + + public AlertDialog_IDialogInterfaceOnClickListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == AlertDialog_IDialogInterfaceOnClickListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.App.AlertDialog+IDialogInterfaceOnClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onClick (android.content.DialogInterface p0, int p1) + { + n_onClick (p0, p1); + } + + private native void n_onClick (android.content.DialogInterface p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java new file mode 100644 index 0000000..3983848 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v7/app/AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.java @@ -0,0 +1,48 @@ +package android.support.v7.app; + + +public class AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.content.DialogInterface.OnMultiChoiceClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/content/DialogInterface;IZ)V:GetOnClick_Landroid_content_DialogInterface_IZHandler:Android.Content.IDialogInterfaceOnMultiChoiceClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.App.AlertDialog+IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class, __md_methods); + } + + + public AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == AlertDialog_IDialogInterfaceOnMultiChoiceClickListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.App.AlertDialog+IDialogInterfaceOnMultiChoiceClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onClick (android.content.DialogInterface p0, int p1, boolean p2) + { + n_onClick (p0, p1, p2); + } + + private native void n_onClick (android.content.DialogInterface p0, int p1, boolean p2); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v7/appcompat/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/v7/appcompat/R.java new file mode 100644 index 0000000..c8d6a5f --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v7/appcompat/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v7.appcompat; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.v7.appcompat:background}
{@link #ActionBar_backgroundSplit android.support.v7.appcompat:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.v7.appcompat:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.v7.appcompat:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.v7.appcompat:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.v7.appcompat:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.v7.appcompat:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.v7.appcompat:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.v7.appcompat:displayOptions}
{@link #ActionBar_divider android.support.v7.appcompat:divider}
{@link #ActionBar_elevation android.support.v7.appcompat:elevation}
{@link #ActionBar_height android.support.v7.appcompat:height}
{@link #ActionBar_hideOnContentScroll android.support.v7.appcompat:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.v7.appcompat:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.v7.appcompat:homeLayout}
{@link #ActionBar_icon android.support.v7.appcompat:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.v7.appcompat:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.v7.appcompat:itemPadding}
{@link #ActionBar_logo android.support.v7.appcompat:logo}
{@link #ActionBar_navigationMode android.support.v7.appcompat:navigationMode}
{@link #ActionBar_popupTheme android.support.v7.appcompat:popupTheme}
{@link #ActionBar_progressBarPadding android.support.v7.appcompat:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.v7.appcompat:progressBarStyle}
{@link #ActionBar_subtitle android.support.v7.appcompat:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.v7.appcompat:subtitleTextStyle}
{@link #ActionBar_title android.support.v7.appcompat:title}
{@link #ActionBar_titleTextStyle android.support.v7.appcompat:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.v7.appcompat:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.v7.appcompat:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.v7.appcompat:background}
{@link #ActionMode_backgroundSplit android.support.v7.appcompat:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.v7.appcompat:closeItemLayout}
{@link #ActionMode_height android.support.v7.appcompat:height}
{@link #ActionMode_subtitleTextStyle android.support.v7.appcompat:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.v7.appcompat:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.v7.appcompat:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.v7.appcompat:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.v7.appcompat:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.v7.appcompat:listItemLayout}
{@link #AlertDialog_listLayout android.support.v7.appcompat:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.v7.appcompat:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.v7.appcompat:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.v7.appcompat:elevation}
{@link #AppBarLayout_expanded android.support.v7.appcompat:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.v7.appcompat:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.v7.appcompat:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.v7.appcompat:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.v7.appcompat:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.v7.appcompat:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v7.appcompat:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.v7.appcompat:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.v7.appcompat:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.v7.appcompat:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.v7.appcompat:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.v7.appcompat:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.v7.appcompat:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.v7.appcompat:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.v7.appcompat:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.v7.appcompat:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.v7.appcompat:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.v7.appcompat:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.v7.appcompat:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.v7.appcompat:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.v7.appcompat:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.v7.appcompat:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.v7.appcompat:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.v7.appcompat:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.v7.appcompat:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.v7.appcompat:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.v7.appcompat:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.v7.appcompat:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.v7.appcompat:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.v7.appcompat:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.v7.appcompat:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.v7.appcompat:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.v7.appcompat:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.v7.appcompat:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.v7.appcompat:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.v7.appcompat:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.v7.appcompat:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.v7.appcompat:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.v7.appcompat:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.v7.appcompat:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.v7.appcompat:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.v7.appcompat:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.v7.appcompat:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.v7.appcompat:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.v7.appcompat:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.v7.appcompat:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.v7.appcompat:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.v7.appcompat:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.v7.appcompat:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.v7.appcompat:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.v7.appcompat:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.v7.appcompat:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.v7.appcompat:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.v7.appcompat:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.v7.appcompat:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.v7.appcompat:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.v7.appcompat:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.v7.appcompat:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.v7.appcompat:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.v7.appcompat:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.v7.appcompat:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.v7.appcompat:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.v7.appcompat:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.v7.appcompat:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.v7.appcompat:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.v7.appcompat:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.v7.appcompat:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.v7.appcompat:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.v7.appcompat:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.v7.appcompat:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.v7.appcompat:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.v7.appcompat:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.v7.appcompat:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.v7.appcompat:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.v7.appcompat:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.v7.appcompat:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.v7.appcompat:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.v7.appcompat:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.v7.appcompat:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.v7.appcompat:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.v7.appcompat:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.v7.appcompat:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.v7.appcompat:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.v7.appcompat:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.v7.appcompat:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.v7.appcompat:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.v7.appcompat:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.v7.appcompat:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.v7.appcompat:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.v7.appcompat:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.v7.appcompat:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.v7.appcompat:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.v7.appcompat:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.v7.appcompat:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.v7.appcompat:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.v7.appcompat:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.v7.appcompat:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.v7.appcompat:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.v7.appcompat:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.v7.appcompat:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.v7.appcompat:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.v7.appcompat:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.v7.appcompat:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.v7.appcompat:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.v7.appcompat:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.v7.appcompat:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.v7.appcompat:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.v7.appcompat:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.v7.appcompat:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.v7.appcompat:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.v7.appcompat:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.v7.appcompat:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.v7.appcompat:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.v7.appcompat:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.v7.appcompat:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.v7.appcompat:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.v7.appcompat:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.v7.appcompat:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.v7.appcompat:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.v7.appcompat:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.v7.appcompat:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.v7.appcompat:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.v7.appcompat:cardCornerRadius}
{@link #CardView_cardElevation android.support.v7.appcompat:cardElevation}
{@link #CardView_cardMaxElevation android.support.v7.appcompat:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.v7.appcompat:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.v7.appcompat:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.v7.appcompat:contentPadding}
{@link #CardView_contentPaddingBottom android.support.v7.appcompat:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.v7.appcompat:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.v7.appcompat:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.v7.appcompat:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.v7.appcompat:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.v7.appcompat:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.v7.appcompat:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.v7.appcompat:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.v7.appcompat:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.v7.appcompat:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.v7.appcompat:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.v7.appcompat:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.v7.appcompat:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.v7.appcompat:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.v7.appcompat:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.v7.appcompat:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.v7.appcompat:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.v7.appcompat:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.v7.appcompat:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.v7.appcompat:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.v7.appcompat:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v7.appcompat:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v7.appcompat:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.v7.appcompat:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.v7.appcompat:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.appcompat:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.v7.appcompat:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.v7.appcompat:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.v7.appcompat:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.v7.appcompat:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.v7.appcompat:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.v7.appcompat:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.v7.appcompat:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.v7.appcompat:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.v7.appcompat:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.v7.appcompat:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.v7.appcompat:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.v7.appcompat:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.v7.appcompat:barLength}
{@link #DrawerArrowToggle_color android.support.v7.appcompat:color}
{@link #DrawerArrowToggle_drawableSize android.support.v7.appcompat:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.v7.appcompat:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.v7.appcompat:spinBars}
{@link #DrawerArrowToggle_thickness android.support.v7.appcompat:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.v7.appcompat:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.v7.appcompat:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.v7.appcompat:borderWidth}
{@link #FloatingActionButton_elevation android.support.v7.appcompat:elevation}
{@link #FloatingActionButton_fabSize android.support.v7.appcompat:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.v7.appcompat:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.v7.appcompat:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.v7.appcompat:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.appcompat:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.v7.appcompat:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.v7.appcompat:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.v7.appcompat:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.v7.appcompat:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.v7.appcompat:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.v7.appcompat:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.v7.appcompat:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.v7.appcompat:actionLayout}
{@link #MenuItem_actionProviderClass android.support.v7.appcompat:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.v7.appcompat:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.v7.appcompat:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.v7.appcompat:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.v7.appcompat:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.v7.appcompat:elevation}
{@link #NavigationView_headerLayout android.support.v7.appcompat:headerLayout}
{@link #NavigationView_itemBackground android.support.v7.appcompat:itemBackground}
{@link #NavigationView_itemIconTint android.support.v7.appcompat:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.v7.appcompat:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.v7.appcompat:itemTextColor}
{@link #NavigationView_menu android.support.v7.appcompat:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.v7.appcompat:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.v7.appcompat:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.v7.appcompat:layoutManager}
{@link #RecyclerView_reverseLayout android.support.v7.appcompat:reverseLayout}
{@link #RecyclerView_spanCount android.support.v7.appcompat:spanCount}
{@link #RecyclerView_stackFromEnd android.support.v7.appcompat:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.v7.appcompat:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.appcompat:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.v7.appcompat:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.v7.appcompat:closeIcon}
{@link #SearchView_commitIcon android.support.v7.appcompat:commitIcon}
{@link #SearchView_defaultQueryHint android.support.v7.appcompat:defaultQueryHint}
{@link #SearchView_goIcon android.support.v7.appcompat:goIcon}
{@link #SearchView_iconifiedByDefault android.support.v7.appcompat:iconifiedByDefault}
{@link #SearchView_layout android.support.v7.appcompat:layout}
{@link #SearchView_queryBackground android.support.v7.appcompat:queryBackground}
{@link #SearchView_queryHint android.support.v7.appcompat:queryHint}
{@link #SearchView_searchHintIcon android.support.v7.appcompat:searchHintIcon}
{@link #SearchView_searchIcon android.support.v7.appcompat:searchIcon}
{@link #SearchView_submitBackground android.support.v7.appcompat:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.v7.appcompat:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.v7.appcompat:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.v7.appcompat:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.v7.appcompat:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.v7.appcompat:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.v7.appcompat:showText}
{@link #SwitchCompat_splitTrack android.support.v7.appcompat:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.v7.appcompat:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.v7.appcompat:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.v7.appcompat:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.v7.appcompat:thumbTextPadding}
{@link #SwitchCompat_track android.support.v7.appcompat:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.v7.appcompat:tabBackground}
{@link #TabLayout_tabContentStart android.support.v7.appcompat:tabContentStart}
{@link #TabLayout_tabGravity android.support.v7.appcompat:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.v7.appcompat:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.v7.appcompat:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.v7.appcompat:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.v7.appcompat:tabMinWidth}
{@link #TabLayout_tabMode android.support.v7.appcompat:tabMode}
{@link #TabLayout_tabPadding android.support.v7.appcompat:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.v7.appcompat:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.v7.appcompat:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.v7.appcompat:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.v7.appcompat:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.v7.appcompat:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.v7.appcompat:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.v7.appcompat:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.v7.appcompat:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.v7.appcompat:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.v7.appcompat:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v7.appcompat:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.v7.appcompat:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.v7.appcompat:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.v7.appcompat:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.v7.appcompat:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.v7.appcompat:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.v7.appcompat:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.v7.appcompat:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.v7.appcompat:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.v7.appcompat:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.v7.appcompat:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.v7.appcompat:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.v7.appcompat:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.v7.appcompat:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.v7.appcompat:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.v7.appcompat:contentInsetStart}
{@link #Toolbar_logo android.support.v7.appcompat:logo}
{@link #Toolbar_logoDescription android.support.v7.appcompat:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.v7.appcompat:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.v7.appcompat:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.v7.appcompat:navigationIcon}
{@link #Toolbar_popupTheme android.support.v7.appcompat:popupTheme}
{@link #Toolbar_subtitle android.support.v7.appcompat:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.v7.appcompat:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.v7.appcompat:subtitleTextColor}
{@link #Toolbar_title android.support.v7.appcompat:title}
{@link #Toolbar_titleMarginBottom android.support.v7.appcompat:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.v7.appcompat:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.v7.appcompat:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.v7.appcompat:titleMarginTop}
{@link #Toolbar_titleMargins android.support.v7.appcompat:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.v7.appcompat:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.v7.appcompat:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.v7.appcompat:paddingEnd}
{@link #View_paddingStart android.support.v7.appcompat:paddingStart}
{@link #View_theme android.support.v7.appcompat:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.appcompat:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.v7.appcompat:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.v7.appcompat:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.appcompat:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.appcompat.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.appcompat:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v7/cardview/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/v7/cardview/R.java new file mode 100644 index 0000000..4853668 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v7/cardview/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v7.cardview; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.v7.cardview:background}
{@link #ActionBar_backgroundSplit android.support.v7.cardview:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.v7.cardview:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.v7.cardview:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.v7.cardview:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.v7.cardview:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.v7.cardview:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.v7.cardview:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.v7.cardview:displayOptions}
{@link #ActionBar_divider android.support.v7.cardview:divider}
{@link #ActionBar_elevation android.support.v7.cardview:elevation}
{@link #ActionBar_height android.support.v7.cardview:height}
{@link #ActionBar_hideOnContentScroll android.support.v7.cardview:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.v7.cardview:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.v7.cardview:homeLayout}
{@link #ActionBar_icon android.support.v7.cardview:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.v7.cardview:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.v7.cardview:itemPadding}
{@link #ActionBar_logo android.support.v7.cardview:logo}
{@link #ActionBar_navigationMode android.support.v7.cardview:navigationMode}
{@link #ActionBar_popupTheme android.support.v7.cardview:popupTheme}
{@link #ActionBar_progressBarPadding android.support.v7.cardview:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.v7.cardview:progressBarStyle}
{@link #ActionBar_subtitle android.support.v7.cardview:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.v7.cardview:subtitleTextStyle}
{@link #ActionBar_title android.support.v7.cardview:title}
{@link #ActionBar_titleTextStyle android.support.v7.cardview:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.v7.cardview:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.v7.cardview:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.v7.cardview:background}
{@link #ActionMode_backgroundSplit android.support.v7.cardview:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.v7.cardview:closeItemLayout}
{@link #ActionMode_height android.support.v7.cardview:height}
{@link #ActionMode_subtitleTextStyle android.support.v7.cardview:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.v7.cardview:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.v7.cardview:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.v7.cardview:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.v7.cardview:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.v7.cardview:listItemLayout}
{@link #AlertDialog_listLayout android.support.v7.cardview:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.v7.cardview:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.v7.cardview:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.v7.cardview:elevation}
{@link #AppBarLayout_expanded android.support.v7.cardview:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.v7.cardview:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.v7.cardview:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.v7.cardview:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.v7.cardview:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.v7.cardview:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v7.cardview:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.v7.cardview:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.v7.cardview:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.v7.cardview:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.v7.cardview:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.v7.cardview:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.v7.cardview:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.v7.cardview:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.v7.cardview:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.v7.cardview:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.v7.cardview:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.v7.cardview:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.v7.cardview:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.v7.cardview:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.v7.cardview:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.v7.cardview:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.v7.cardview:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.v7.cardview:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.v7.cardview:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.v7.cardview:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.v7.cardview:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.v7.cardview:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.v7.cardview:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.v7.cardview:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.v7.cardview:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.v7.cardview:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.v7.cardview:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.v7.cardview:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.v7.cardview:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.v7.cardview:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.v7.cardview:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.v7.cardview:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.v7.cardview:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.v7.cardview:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.v7.cardview:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.v7.cardview:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.v7.cardview:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.v7.cardview:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.v7.cardview:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.v7.cardview:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.v7.cardview:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.v7.cardview:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.v7.cardview:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.v7.cardview:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.v7.cardview:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.v7.cardview:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.v7.cardview:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.v7.cardview:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.v7.cardview:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.v7.cardview:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.v7.cardview:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.v7.cardview:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.v7.cardview:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.v7.cardview:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.v7.cardview:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.v7.cardview:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.v7.cardview:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.v7.cardview:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.v7.cardview:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.v7.cardview:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.v7.cardview:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.v7.cardview:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.v7.cardview:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.v7.cardview:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.v7.cardview:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.v7.cardview:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.v7.cardview:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.v7.cardview:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.v7.cardview:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.v7.cardview:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.v7.cardview:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.v7.cardview:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.v7.cardview:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.v7.cardview:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.v7.cardview:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.v7.cardview:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.v7.cardview:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.v7.cardview:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.v7.cardview:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.v7.cardview:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.v7.cardview:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.v7.cardview:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.v7.cardview:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.v7.cardview:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.v7.cardview:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.v7.cardview:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.v7.cardview:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.v7.cardview:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.v7.cardview:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.v7.cardview:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.v7.cardview:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.v7.cardview:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.v7.cardview:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.v7.cardview:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.v7.cardview:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.v7.cardview:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.v7.cardview:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.v7.cardview:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.v7.cardview:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.v7.cardview:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.v7.cardview:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.v7.cardview:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.v7.cardview:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.v7.cardview:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.v7.cardview:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.v7.cardview:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.v7.cardview:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.v7.cardview:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.v7.cardview:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.v7.cardview:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.v7.cardview:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.v7.cardview:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.v7.cardview:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.v7.cardview:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.v7.cardview:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.v7.cardview:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.v7.cardview:cardCornerRadius}
{@link #CardView_cardElevation android.support.v7.cardview:cardElevation}
{@link #CardView_cardMaxElevation android.support.v7.cardview:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.v7.cardview:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.v7.cardview:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.v7.cardview:contentPadding}
{@link #CardView_contentPaddingBottom android.support.v7.cardview:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.v7.cardview:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.v7.cardview:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.v7.cardview:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.v7.cardview:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.v7.cardview:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.v7.cardview:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.v7.cardview:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.v7.cardview:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.v7.cardview:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.v7.cardview:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.v7.cardview:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.v7.cardview:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.v7.cardview:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.v7.cardview:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.v7.cardview:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.v7.cardview:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.v7.cardview:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.v7.cardview:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.v7.cardview:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.v7.cardview:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v7.cardview:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v7.cardview:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.v7.cardview:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.v7.cardview:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.cardview:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.v7.cardview:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.v7.cardview:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.v7.cardview:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.v7.cardview:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.v7.cardview:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.v7.cardview:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.v7.cardview:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.v7.cardview:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.v7.cardview:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.v7.cardview:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.v7.cardview:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.v7.cardview:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.v7.cardview:barLength}
{@link #DrawerArrowToggle_color android.support.v7.cardview:color}
{@link #DrawerArrowToggle_drawableSize android.support.v7.cardview:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.v7.cardview:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.v7.cardview:spinBars}
{@link #DrawerArrowToggle_thickness android.support.v7.cardview:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.v7.cardview:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.v7.cardview:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.v7.cardview:borderWidth}
{@link #FloatingActionButton_elevation android.support.v7.cardview:elevation}
{@link #FloatingActionButton_fabSize android.support.v7.cardview:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.v7.cardview:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.v7.cardview:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.v7.cardview:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.cardview:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.v7.cardview:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.v7.cardview:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.v7.cardview:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.v7.cardview:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.v7.cardview:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.v7.cardview:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.v7.cardview:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.v7.cardview:actionLayout}
{@link #MenuItem_actionProviderClass android.support.v7.cardview:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.v7.cardview:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.v7.cardview:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.v7.cardview:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.v7.cardview:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.v7.cardview:elevation}
{@link #NavigationView_headerLayout android.support.v7.cardview:headerLayout}
{@link #NavigationView_itemBackground android.support.v7.cardview:itemBackground}
{@link #NavigationView_itemIconTint android.support.v7.cardview:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.v7.cardview:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.v7.cardview:itemTextColor}
{@link #NavigationView_menu android.support.v7.cardview:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.v7.cardview:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.v7.cardview:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.v7.cardview:layoutManager}
{@link #RecyclerView_reverseLayout android.support.v7.cardview:reverseLayout}
{@link #RecyclerView_spanCount android.support.v7.cardview:spanCount}
{@link #RecyclerView_stackFromEnd android.support.v7.cardview:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.v7.cardview:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.cardview:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.v7.cardview:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.v7.cardview:closeIcon}
{@link #SearchView_commitIcon android.support.v7.cardview:commitIcon}
{@link #SearchView_defaultQueryHint android.support.v7.cardview:defaultQueryHint}
{@link #SearchView_goIcon android.support.v7.cardview:goIcon}
{@link #SearchView_iconifiedByDefault android.support.v7.cardview:iconifiedByDefault}
{@link #SearchView_layout android.support.v7.cardview:layout}
{@link #SearchView_queryBackground android.support.v7.cardview:queryBackground}
{@link #SearchView_queryHint android.support.v7.cardview:queryHint}
{@link #SearchView_searchHintIcon android.support.v7.cardview:searchHintIcon}
{@link #SearchView_searchIcon android.support.v7.cardview:searchIcon}
{@link #SearchView_submitBackground android.support.v7.cardview:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.v7.cardview:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.v7.cardview:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.v7.cardview:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.v7.cardview:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.v7.cardview:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.v7.cardview:showText}
{@link #SwitchCompat_splitTrack android.support.v7.cardview:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.v7.cardview:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.v7.cardview:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.v7.cardview:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.v7.cardview:thumbTextPadding}
{@link #SwitchCompat_track android.support.v7.cardview:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.v7.cardview:tabBackground}
{@link #TabLayout_tabContentStart android.support.v7.cardview:tabContentStart}
{@link #TabLayout_tabGravity android.support.v7.cardview:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.v7.cardview:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.v7.cardview:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.v7.cardview:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.v7.cardview:tabMinWidth}
{@link #TabLayout_tabMode android.support.v7.cardview:tabMode}
{@link #TabLayout_tabPadding android.support.v7.cardview:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.v7.cardview:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.v7.cardview:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.v7.cardview:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.v7.cardview:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.v7.cardview:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.v7.cardview:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.v7.cardview:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.v7.cardview:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.v7.cardview:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.v7.cardview:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v7.cardview:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.v7.cardview:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.v7.cardview:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.v7.cardview:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.v7.cardview:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.v7.cardview:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.v7.cardview:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.v7.cardview:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.v7.cardview:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.v7.cardview:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.v7.cardview:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.v7.cardview:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.v7.cardview:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.v7.cardview:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.v7.cardview:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.v7.cardview:contentInsetStart}
{@link #Toolbar_logo android.support.v7.cardview:logo}
{@link #Toolbar_logoDescription android.support.v7.cardview:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.v7.cardview:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.v7.cardview:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.v7.cardview:navigationIcon}
{@link #Toolbar_popupTheme android.support.v7.cardview:popupTheme}
{@link #Toolbar_subtitle android.support.v7.cardview:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.v7.cardview:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.v7.cardview:subtitleTextColor}
{@link #Toolbar_title android.support.v7.cardview:title}
{@link #Toolbar_titleMarginBottom android.support.v7.cardview:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.v7.cardview:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.v7.cardview:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.v7.cardview:titleMarginTop}
{@link #Toolbar_titleMargins android.support.v7.cardview:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.v7.cardview:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.v7.cardview:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.v7.cardview:paddingEnd}
{@link #View_paddingStart android.support.v7.cardview:paddingStart}
{@link #View_theme android.support.v7.cardview:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.cardview:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.v7.cardview:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.v7.cardview:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.cardview:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.cardview.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.cardview:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v7/recyclerview/R.java b/Support/Support.Android/obj/Debug/android/src/android/support/v7/recyclerview/R.java new file mode 100644 index 0000000..b0a11fb --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v7/recyclerview/R.java @@ -0,0 +1,9091 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package android.support.v7.recyclerview; + +public final class R { + public static final class anim { + public static int abc_fade_in=0x7f040000; + public static int abc_fade_out=0x7f040001; + public static int abc_grow_fade_in_from_bottom=0x7f040002; + public static int abc_popup_enter=0x7f040003; + public static int abc_popup_exit=0x7f040004; + public static int abc_shrink_fade_out_from_bottom=0x7f040005; + public static int abc_slide_in_bottom=0x7f040006; + public static int abc_slide_in_top=0x7f040007; + public static int abc_slide_out_bottom=0x7f040008; + public static int abc_slide_out_top=0x7f040009; + public static int design_bottom_sheet_slide_in=0x7f04000a; + public static int design_bottom_sheet_slide_out=0x7f04000b; + public static int design_fab_in=0x7f04000c; + public static int design_fab_out=0x7f04000d; + public static int design_snackbar_in=0x7f04000e; + public static int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static int windowNoTitle=0x7f010036; + } + public static final class bool { + public static int abc_action_bar_embed_tabs=0x7f0a0003; + public static int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static int abc_allow_stacked_button_bar=0x7f0a0000; + public static int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static int abc_color_highlight_material=0x7f08004e; + public static int abc_input_method_navigation_guard=0x7f080004; + public static int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static int abc_primary_text_disable_only_material_light=0x7f080050; + public static int abc_primary_text_material_dark=0x7f080051; + public static int abc_primary_text_material_light=0x7f080052; + public static int abc_search_url_text=0x7f080053; + public static int abc_search_url_text_normal=0x7f080005; + public static int abc_search_url_text_pressed=0x7f080006; + public static int abc_search_url_text_selected=0x7f080007; + public static int abc_secondary_text_material_dark=0x7f080054; + public static int abc_secondary_text_material_light=0x7f080055; + public static int accent=0x7f08004a; + public static int accent_material_dark=0x7f080008; + public static int accent_material_light=0x7f080009; + public static int background_floating_material_dark=0x7f08000a; + public static int background_floating_material_light=0x7f08000b; + public static int background_material_dark=0x7f08000c; + public static int background_material_light=0x7f08000d; + public static int bright_foreground_disabled_material_dark=0x7f08000e; + public static int bright_foreground_disabled_material_light=0x7f08000f; + public static int bright_foreground_inverse_material_dark=0x7f080010; + public static int bright_foreground_inverse_material_light=0x7f080011; + public static int bright_foreground_material_dark=0x7f080012; + public static int bright_foreground_material_light=0x7f080013; + public static int button_material_dark=0x7f080014; + public static int button_material_light=0x7f080015; + public static int cardview_dark_background=0x7f080000; + public static int cardview_light_background=0x7f080001; + public static int cardview_shadow_end_color=0x7f080002; + public static int cardview_shadow_start_color=0x7f080003; + public static int design_fab_shadow_end_color=0x7f08003e; + public static int design_fab_shadow_mid_color=0x7f08003f; + public static int design_fab_shadow_start_color=0x7f080040; + public static int design_fab_stroke_end_inner_color=0x7f080041; + public static int design_fab_stroke_end_outer_color=0x7f080042; + public static int design_fab_stroke_top_inner_color=0x7f080043; + public static int design_fab_stroke_top_outer_color=0x7f080044; + public static int design_snackbar_background_color=0x7f080045; + public static int design_textinput_error_color_dark=0x7f080046; + public static int design_textinput_error_color_light=0x7f080047; + public static int dim_foreground_disabled_material_dark=0x7f080016; + public static int dim_foreground_disabled_material_light=0x7f080017; + public static int dim_foreground_material_dark=0x7f080018; + public static int dim_foreground_material_light=0x7f080019; + public static int foreground_material_dark=0x7f08001a; + public static int foreground_material_light=0x7f08001b; + public static int highlighted_text_material_dark=0x7f08001c; + public static int highlighted_text_material_light=0x7f08001d; + public static int hint_foreground_material_dark=0x7f08001e; + public static int hint_foreground_material_light=0x7f08001f; + public static int material_blue_grey_800=0x7f080020; + public static int material_blue_grey_900=0x7f080021; + public static int material_blue_grey_950=0x7f080022; + public static int material_deep_teal_200=0x7f080023; + public static int material_deep_teal_500=0x7f080024; + public static int material_grey_100=0x7f080025; + public static int material_grey_300=0x7f080026; + public static int material_grey_50=0x7f080027; + public static int material_grey_600=0x7f080028; + public static int material_grey_800=0x7f080029; + public static int material_grey_850=0x7f08002a; + public static int material_grey_900=0x7f08002b; + public static int primary=0x7f080048; + public static int primaryDark=0x7f080049; + public static int primary_dark_material_dark=0x7f08002c; + public static int primary_dark_material_light=0x7f08002d; + public static int primary_material_dark=0x7f08002e; + public static int primary_material_light=0x7f08002f; + public static int primary_text_default_material_dark=0x7f080030; + public static int primary_text_default_material_light=0x7f080031; + public static int primary_text_disabled_material_dark=0x7f080032; + public static int primary_text_disabled_material_light=0x7f080033; + public static int ripple_material_dark=0x7f080034; + public static int ripple_material_light=0x7f080035; + public static int secondary_text_default_material_dark=0x7f080036; + public static int secondary_text_default_material_light=0x7f080037; + public static int secondary_text_disabled_material_dark=0x7f080038; + public static int secondary_text_disabled_material_light=0x7f080039; + public static int switch_thumb_disabled_material_dark=0x7f08003a; + public static int switch_thumb_disabled_material_light=0x7f08003b; + public static int switch_thumb_material_dark=0x7f080056; + public static int switch_thumb_material_light=0x7f080057; + public static int switch_thumb_normal_material_dark=0x7f08003c; + public static int switch_thumb_normal_material_light=0x7f08003d; + public static int window_background=0x7f08004b; + } + public static final class dimen { + public static int abc_action_bar_content_inset_material=0x7f050013; + public static int abc_action_bar_default_height_material=0x7f050007; + public static int abc_action_bar_default_padding_end_material=0x7f050014; + public static int abc_action_bar_default_padding_start_material=0x7f050015; + public static int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static int abc_action_bar_progress_bar_size=0x7f050008; + public static int abc_action_bar_stacked_max_height=0x7f05001a; + public static int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static int abc_action_button_min_height_material=0x7f05001e; + public static int abc_action_button_min_width_material=0x7f05001f; + public static int abc_action_button_min_width_overflow_material=0x7f050020; + public static int abc_alert_dialog_button_bar_height=0x7f050006; + public static int abc_button_inset_horizontal_material=0x7f050021; + public static int abc_button_inset_vertical_material=0x7f050022; + public static int abc_button_padding_horizontal_material=0x7f050023; + public static int abc_button_padding_vertical_material=0x7f050024; + public static int abc_config_prefDialogWidth=0x7f05000b; + public static int abc_control_corner_material=0x7f050025; + public static int abc_control_inset_material=0x7f050026; + public static int abc_control_padding_material=0x7f050027; + public static int abc_dialog_fixed_height_major=0x7f05000c; + public static int abc_dialog_fixed_height_minor=0x7f05000d; + public static int abc_dialog_fixed_width_major=0x7f05000e; + public static int abc_dialog_fixed_width_minor=0x7f05000f; + public static int abc_dialog_list_padding_vertical_material=0x7f050028; + public static int abc_dialog_min_width_major=0x7f050010; + public static int abc_dialog_min_width_minor=0x7f050011; + public static int abc_dialog_padding_material=0x7f050029; + public static int abc_dialog_padding_top_material=0x7f05002a; + public static int abc_disabled_alpha_material_dark=0x7f05002b; + public static int abc_disabled_alpha_material_light=0x7f05002c; + public static int abc_dropdownitem_icon_width=0x7f05002d; + public static int abc_dropdownitem_text_padding_left=0x7f05002e; + public static int abc_dropdownitem_text_padding_right=0x7f05002f; + public static int abc_edit_text_inset_bottom_material=0x7f050030; + public static int abc_edit_text_inset_horizontal_material=0x7f050031; + public static int abc_edit_text_inset_top_material=0x7f050032; + public static int abc_floating_window_z=0x7f050033; + public static int abc_list_item_padding_horizontal_material=0x7f050034; + public static int abc_panel_menu_list_width=0x7f050035; + public static int abc_search_view_preferred_width=0x7f050036; + public static int abc_search_view_text_min_width=0x7f050012; + public static int abc_seekbar_track_background_height_material=0x7f050037; + public static int abc_seekbar_track_progress_height_material=0x7f050038; + public static int abc_select_dialog_padding_start_material=0x7f050039; + public static int abc_switch_padding=0x7f050016; + public static int abc_text_size_body_1_material=0x7f05003a; + public static int abc_text_size_body_2_material=0x7f05003b; + public static int abc_text_size_button_material=0x7f05003c; + public static int abc_text_size_caption_material=0x7f05003d; + public static int abc_text_size_display_1_material=0x7f05003e; + public static int abc_text_size_display_2_material=0x7f05003f; + public static int abc_text_size_display_3_material=0x7f050040; + public static int abc_text_size_display_4_material=0x7f050041; + public static int abc_text_size_headline_material=0x7f050042; + public static int abc_text_size_large_material=0x7f050043; + public static int abc_text_size_medium_material=0x7f050044; + public static int abc_text_size_menu_material=0x7f050045; + public static int abc_text_size_small_material=0x7f050046; + public static int abc_text_size_subhead_material=0x7f050047; + public static int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static int abc_text_size_title_material=0x7f050048; + public static int abc_text_size_title_material_toolbar=0x7f05000a; + public static int card_margin=0x7f050072; + public static int cardview_compat_inset_shadow=0x7f050003; + public static int cardview_default_elevation=0x7f050004; + public static int cardview_default_radius=0x7f050005; + public static int design_appbar_elevation=0x7f050059; + public static int design_bottom_sheet_modal_elevation=0x7f05005a; + public static int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static int design_fab_border_width=0x7f05005c; + public static int design_fab_elevation=0x7f05005d; + public static int design_fab_image_size=0x7f05005e; + public static int design_fab_size_mini=0x7f05005f; + public static int design_fab_size_normal=0x7f050060; + public static int design_fab_translation_z_pressed=0x7f050061; + public static int design_navigation_elevation=0x7f050062; + public static int design_navigation_icon_padding=0x7f050063; + public static int design_navigation_icon_size=0x7f050064; + public static int design_navigation_max_width=0x7f050051; + public static int design_navigation_padding_bottom=0x7f050065; + public static int design_navigation_separator_vertical_padding=0x7f050066; + public static int design_snackbar_action_inline_max_width=0x7f050052; + public static int design_snackbar_background_corner_radius=0x7f050053; + public static int design_snackbar_elevation=0x7f050067; + public static int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static int design_snackbar_max_width=0x7f050055; + public static int design_snackbar_min_width=0x7f050056; + public static int design_snackbar_padding_horizontal=0x7f050068; + public static int design_snackbar_padding_vertical=0x7f050069; + public static int design_snackbar_padding_vertical_2lines=0x7f050057; + public static int design_snackbar_text_size=0x7f05006a; + public static int design_tab_max_width=0x7f05006b; + public static int design_tab_scrollable_min_width=0x7f050058; + public static int design_tab_text_size=0x7f05006c; + public static int design_tab_text_size_2line=0x7f05006d; + public static int disabled_alpha_material_dark=0x7f050049; + public static int disabled_alpha_material_light=0x7f05004a; + public static int fab_margin=0x7f050073; + public static int highlight_alpha_material_colored=0x7f05004b; + public static int highlight_alpha_material_dark=0x7f05004c; + public static int highlight_alpha_material_light=0x7f05004d; + public static int image_size=0x7f050071; + public static int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static int notification_large_icon_height=0x7f05004e; + public static int notification_large_icon_width=0x7f05004f; + public static int notification_subtext_size=0x7f050050; + public static int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static int standard_margin=0x7f05006e; + public static int tiny_margin=0x7f050070; + } + public static final class drawable { + public static int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static int abc_action_bar_item_background_material=0x7f020001; + public static int abc_btn_borderless_material=0x7f020002; + public static int abc_btn_check_material=0x7f020003; + public static int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static int abc_btn_colored_material=0x7f020006; + public static int abc_btn_default_mtrl_shape=0x7f020007; + public static int abc_btn_radio_material=0x7f020008; + public static int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static int abc_cab_background_internal_bg=0x7f02000f; + public static int abc_cab_background_top_material=0x7f020010; + public static int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static int abc_control_background_material=0x7f020012; + public static int abc_dialog_material_background_dark=0x7f020013; + public static int abc_dialog_material_background_light=0x7f020014; + public static int abc_edit_text_material=0x7f020015; + public static int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static int abc_ic_clear_mtrl_alpha=0x7f020017; + public static int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static int abc_ic_star_black_16dp=0x7f020021; + public static int abc_ic_star_black_36dp=0x7f020022; + public static int abc_ic_star_half_black_16dp=0x7f020023; + public static int abc_ic_star_half_black_36dp=0x7f020024; + public static int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static int abc_item_background_holo_dark=0x7f020026; + public static int abc_item_background_holo_light=0x7f020027; + public static int abc_list_divider_mtrl_alpha=0x7f020028; + public static int abc_list_focused_holo=0x7f020029; + public static int abc_list_longpressed_holo=0x7f02002a; + public static int abc_list_pressed_holo_dark=0x7f02002b; + public static int abc_list_pressed_holo_light=0x7f02002c; + public static int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static int abc_list_selector_disabled_holo_light=0x7f020030; + public static int abc_list_selector_holo_dark=0x7f020031; + public static int abc_list_selector_holo_light=0x7f020032; + public static int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static int abc_popup_background_mtrl_mult=0x7f020034; + public static int abc_ratingbar_full_material=0x7f020035; + public static int abc_ratingbar_indicator_material=0x7f020036; + public static int abc_ratingbar_small_material=0x7f020037; + public static int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static int abc_seekbar_thumb_material=0x7f02003d; + public static int abc_seekbar_track_material=0x7f02003e; + public static int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static int abc_spinner_textfield_background_material=0x7f020040; + public static int abc_switch_thumb_material=0x7f020041; + public static int abc_switch_track_mtrl_alpha=0x7f020042; + public static int abc_tab_indicator_material=0x7f020043; + public static int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static int abc_text_cursor_material=0x7f020045; + public static int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static int abc_textfield_default_mtrl_alpha=0x7f020047; + public static int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static int abc_textfield_search_material=0x7f02004a; + public static int background_splash=0x7f02004b; + public static int circle_background=0x7f02004c; + public static int design_fab_background=0x7f02004d; + public static int design_snackbar_background=0x7f02004e; + public static int heroplaceholder=0x7f02004f; + public static int ic_save=0x7f020050; + public static int notification_template_icon_bg=0x7f020053; + public static int profile_generic=0x7f020051; + public static int xamarin_logo=0x7f020052; + } + public static final class id { + public static int action0=0x7f060085; + public static int action_bar=0x7f06005a; + public static int action_bar_activity_content=0x7f060001; + public static int action_bar_container=0x7f060059; + public static int action_bar_root=0x7f060055; + public static int action_bar_spinner=0x7f060002; + public static int action_bar_subtitle=0x7f06003b; + public static int action_bar_title=0x7f06003a; + public static int action_context_bar=0x7f06005b; + public static int action_divider=0x7f060089; + public static int action_menu_divider=0x7f060003; + public static int action_menu_presenter=0x7f060004; + public static int action_mode_bar=0x7f060057; + public static int action_mode_bar_stub=0x7f060056; + public static int action_mode_close_button=0x7f06003c; + public static int activity_chooser_view_content=0x7f06003d; + public static int alertTitle=0x7f060049; + public static int always=0x7f06001e; + public static int appbar=0x7f06006a; + public static int beginning=0x7f06001b; + public static int bottom=0x7f06002a; + public static int buttonPanel=0x7f060044; + public static int button_learn_more=0x7f060081; + public static int button_not_now=0x7f060071; + public static int button_signin=0x7f060072; + public static int cancel_action=0x7f060086; + public static int center=0x7f06002b; + public static int center_horizontal=0x7f06002c; + public static int center_vertical=0x7f06002d; + public static int checkbox=0x7f060052; + public static int chronometer=0x7f06008c; + public static int clip_horizontal=0x7f060033; + public static int clip_vertical=0x7f060034; + public static int collapseActionView=0x7f06001f; + public static int collapsing_toolbar=0x7f06006b; + public static int container_signin=0x7f060073; + public static int contentPanel=0x7f06004a; + public static int custom=0x7f060050; + public static int customPanel=0x7f06004f; + public static int decor_content_parent=0x7f060058; + public static int default_activity_button=0x7f060040; + public static int description=0x7f060070; + public static int design_bottom_sheet=0x7f060078; + public static int design_menu_item_action_area=0x7f06007f; + public static int design_menu_item_action_area_stub=0x7f06007e; + public static int design_menu_item_text=0x7f06007d; + public static int design_navigation_view=0x7f06007c; + public static int disableHome=0x7f06000e; + public static int edit_query=0x7f06005c; + public static int end=0x7f06001c; + public static int end_padder=0x7f060091; + public static int enterAlways=0x7f060023; + public static int enterAlwaysCollapsed=0x7f060024; + public static int exitUntilCollapsed=0x7f060025; + public static int expand_activities_button=0x7f06003e; + public static int expanded_menu=0x7f060051; + public static int fill=0x7f060035; + public static int fill_horizontal=0x7f060036; + public static int fill_vertical=0x7f06002e; + public static int fixed=0x7f060038; + public static int home=0x7f060005; + public static int homeAsUp=0x7f06000f; + public static int icon=0x7f060042; + public static int ifRoom=0x7f060020; + public static int image=0x7f06003f; + public static int info=0x7f060090; + public static int item_touch_helper_previous_elevation=0x7f060000; + public static int left=0x7f06002f; + public static int line1=0x7f06008a; + public static int line3=0x7f06008e; + public static int listMode=0x7f06000b; + public static int list_item=0x7f060041; + public static int main_content=0x7f060069; + public static int media_actions=0x7f060088; + public static int menu_edit=0x7f060093; + public static int middle=0x7f06001d; + public static int mini=0x7f060037; + public static int multiply=0x7f060016; + public static int navigation_header_container=0x7f06007b; + public static int never=0x7f060021; + public static int none=0x7f060010; + public static int normal=0x7f06000c; + public static int parallax=0x7f060028; + public static int parentPanel=0x7f060046; + public static int pin=0x7f060029; + public static int progress_circular=0x7f060006; + public static int progress_horizontal=0x7f060007; + public static int progressbar_loading=0x7f060084; + public static int progressbar_signin=0x7f060074; + public static int radio=0x7f060054; + public static int recyclerView=0x7f060083; + public static int refresher=0x7f060082; + public static int right=0x7f060030; + public static int save_button=0x7f06006f; + public static int screen=0x7f060017; + public static int scroll=0x7f060026; + public static int scrollIndicatorDown=0x7f06004e; + public static int scrollIndicatorUp=0x7f06004b; + public static int scrollView=0x7f06004c; + public static int scrollable=0x7f060039; + public static int search_badge=0x7f06005e; + public static int search_bar=0x7f06005d; + public static int search_button=0x7f06005f; + public static int search_close_btn=0x7f060064; + public static int search_edit_frame=0x7f060060; + public static int search_go_btn=0x7f060066; + public static int search_mag_icon=0x7f060061; + public static int search_plate=0x7f060062; + public static int search_src_text=0x7f060063; + public static int search_voice_btn=0x7f060067; + public static int select_dialog_listview=0x7f060068; + public static int shortcut=0x7f060053; + public static int showCustom=0x7f060011; + public static int showHome=0x7f060012; + public static int showTitle=0x7f060013; + public static int sliding_tabs=0x7f060092; + public static int snackbar_action=0x7f06007a; + public static int snackbar_text=0x7f060079; + public static int snap=0x7f060027; + public static int spacer=0x7f060045; + public static int split_action_bar=0x7f060008; + public static int src_atop=0x7f060018; + public static int src_in=0x7f060019; + public static int src_over=0x7f06001a; + public static int start=0x7f060031; + public static int status_bar_latest_event_content=0x7f060087; + public static int submit_area=0x7f060065; + public static int tabMode=0x7f06000d; + public static int tabs=0x7f060075; + public static int text=0x7f06008f; + public static int text2=0x7f06008d; + public static int textSpacerNoButtons=0x7f06004d; + public static int textView1=0x7f060080; + public static int time=0x7f06008b; + public static int title=0x7f060043; + public static int title_template=0x7f060048; + public static int toolbar=0x7f06006c; + public static int top=0x7f060032; + public static int topPanel=0x7f060047; + public static int touch_outside=0x7f060077; + public static int txtDesc=0x7f06006e; + public static int txtTitle=0x7f06006d; + public static int up=0x7f060009; + public static int useLogo=0x7f060014; + public static int view_offset_helper=0x7f06000a; + public static int viewpager=0x7f060076; + public static int withText=0x7f060022; + public static int wrap_content=0x7f060015; + } + public static final class integer { + public static int abc_config_activityDefaultDur=0x7f0b0001; + public static int abc_config_activityShortDur=0x7f0b0002; + public static int abc_max_action_buttons=0x7f0b0000; + public static int bottom_sheet_slide_duration=0x7f0b0006; + public static int cancel_button_image_alpha=0x7f0b0003; + public static int design_snackbar_text_max_lines=0x7f0b0005; + public static int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static int abc_action_bar_title_item=0x7f030000; + public static int abc_action_bar_up_container=0x7f030001; + public static int abc_action_bar_view_list_nav_layout=0x7f030002; + public static int abc_action_menu_item_layout=0x7f030003; + public static int abc_action_menu_layout=0x7f030004; + public static int abc_action_mode_bar=0x7f030005; + public static int abc_action_mode_close_item_material=0x7f030006; + public static int abc_activity_chooser_view=0x7f030007; + public static int abc_activity_chooser_view_list_item=0x7f030008; + public static int abc_alert_dialog_button_bar_material=0x7f030009; + public static int abc_alert_dialog_material=0x7f03000a; + public static int abc_dialog_title_material=0x7f03000b; + public static int abc_expanded_menu_layout=0x7f03000c; + public static int abc_list_menu_item_checkbox=0x7f03000d; + public static int abc_list_menu_item_icon=0x7f03000e; + public static int abc_list_menu_item_layout=0x7f03000f; + public static int abc_list_menu_item_radio=0x7f030010; + public static int abc_popup_menu_item_layout=0x7f030011; + public static int abc_screen_content_include=0x7f030012; + public static int abc_screen_simple=0x7f030013; + public static int abc_screen_simple_overlay_action_mode=0x7f030014; + public static int abc_screen_toolbar=0x7f030015; + public static int abc_search_dropdown_item_icons_2line=0x7f030016; + public static int abc_search_view=0x7f030017; + public static int abc_select_dialog_material=0x7f030018; + public static int activity_add_item=0x7f030019; + public static int activity_item_details=0x7f03001a; + public static int activity_login=0x7f03001b; + public static int activity_main=0x7f03001c; + public static int design_bottom_sheet_dialog=0x7f03001d; + public static int design_layout_snackbar=0x7f03001e; + public static int design_layout_snackbar_include=0x7f03001f; + public static int design_layout_tab_icon=0x7f030020; + public static int design_layout_tab_text=0x7f030021; + public static int design_menu_item_action_area=0x7f030022; + public static int design_navigation_item=0x7f030023; + public static int design_navigation_item_header=0x7f030024; + public static int design_navigation_item_separator=0x7f030025; + public static int design_navigation_item_subheader=0x7f030026; + public static int design_navigation_menu=0x7f030027; + public static int design_navigation_menu_item=0x7f030028; + public static int fragment_about=0x7f030029; + public static int fragment_browse=0x7f03002a; + public static int item_browse=0x7f03002b; + public static int notification_media_action=0x7f03002c; + public static int notification_media_cancel_action=0x7f03002d; + public static int notification_template_big_media=0x7f03002e; + public static int notification_template_big_media_narrow=0x7f03002f; + public static int notification_template_lines=0x7f030030; + public static int notification_template_media=0x7f030031; + public static int notification_template_part_chronometer=0x7f030032; + public static int notification_template_part_time=0x7f030033; + public static int select_dialog_item_material=0x7f030034; + public static int select_dialog_multichoice_material=0x7f030035; + public static int select_dialog_singlechoice_material=0x7f030036; + public static int support_simple_spinner_dropdown_item=0x7f030037; + public static int tabs=0x7f030038; + public static int toolbar=0x7f030039; + } + public static final class menu { + public static int top_menus=0x7f0d0000; + } + public static final class string { + public static int abc_action_bar_home_description=0x7f090000; + public static int abc_action_bar_home_description_format=0x7f090001; + public static int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static int abc_action_bar_up_description=0x7f090003; + public static int abc_action_menu_overflow_description=0x7f090004; + public static int abc_action_mode_done=0x7f090005; + public static int abc_activity_chooser_view_see_all=0x7f090006; + public static int abc_activitychooserview_choose_application=0x7f090007; + public static int abc_capital_off=0x7f090008; + public static int abc_capital_on=0x7f090009; + public static int abc_search_hint=0x7f09000a; + public static int abc_searchview_description_clear=0x7f09000b; + public static int abc_searchview_description_query=0x7f09000c; + public static int abc_searchview_description_search=0x7f09000d; + public static int abc_searchview_description_submit=0x7f09000e; + public static int abc_searchview_description_voice=0x7f09000f; + public static int abc_shareactionprovider_share_with=0x7f090010; + public static int abc_shareactionprovider_share_with_application=0x7f090011; + public static int abc_toolbar_collapse_description=0x7f090012; + public static int app_description=0x7f090028; + public static int app_name=0x7f090018; + public static int appbar_scrolling_view_behavior=0x7f090014; + public static int bottom_sheet_behavior=0x7f090015; + public static int character_counter_pattern=0x7f090016; + public static int description=0x7f090021; + public static int hello=0x7f090017; + public static int hint_description=0x7f090027; + public static int hint_name=0x7f090025; + public static int info=0x7f090026; + public static int learn_more=0x7f090020; + public static int login=0x7f09001f; + public static int notnow=0x7f09001c; + public static int quantity=0x7f090024; + public static int sign_in_text=0x7f090029; + public static int signin=0x7f09001b; + public static int signing_in=0x7f09001d; + public static int status_bar_notification_info_overflow=0x7f090013; + public static int tab1=0x7f090019; + public static int tab2=0x7f09001a; + public static int text=0x7f090023; + public static int title=0x7f090022; + public static int version_number=0x7f09001e; + } + public static final class style { + public static int AlertDialog_AppCompat=0x7f07008a; + public static int AlertDialog_AppCompat_Light=0x7f07008b; + public static int Animation_AppCompat_Dialog=0x7f07008c; + public static int Animation_AppCompat_DropDownUp=0x7f07008d; + public static int Animation_Design_BottomSheetDialog=0x7f070143; + public static int Base_AlertDialog_AppCompat=0x7f07008e; + public static int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static int Base_Animation_AppCompat_Dialog=0x7f070090; + public static int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static int Base_CardView=0x7f070001; + public static int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static int Base_TextAppearance_AppCompat=0x7f07003a; + public static int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static int Base_Theme_AppCompat=0x7f07005a; + public static int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static int Base_Theme_AppCompat_Dialog=0x7f070015; + public static int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static int Base_Theme_AppCompat_Light=0x7f07005b; + public static int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static int Base_V21_Theme_AppCompat=0x7f07005c; + public static int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static int Base_V22_Theme_AppCompat=0x7f070081; + public static int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static int Base_V23_Theme_AppCompat=0x7f070085; + public static int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static int Base_V7_Theme_AppCompat=0x7f0700a4; + public static int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static int Base_Widget_AppCompat_Button=0x7f070065; + public static int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static int Base_Widget_AppCompat_EditText=0x7f070023; + public static int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static int Base_Widget_AppCompat_ListView=0x7f070074; + public static int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static int Base_Widget_Design_TabLayout=0x7f070144; + public static int CardView=0x7f070000; + public static int CardView_Dark=0x7f070002; + public static int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static int MasterDetailTheme=0x7f07015b; + public static int MasterDetailTheme_Base=0x7f07015c; + public static int Platform_AppCompat=0x7f07001b; + public static int Platform_AppCompat_Light=0x7f07001c; + public static int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static int Platform_V11_AppCompat=0x7f07001d; + public static int Platform_V11_AppCompat_Light=0x7f07001e; + public static int Platform_V14_AppCompat=0x7f070025; + public static int Platform_V14_AppCompat_Light=0x7f070026; + public static int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static int SplashTheme=0x7f07015d; + public static int SplashTheme_Base=0x7f07015e; + public static int TextAppearance_AppCompat=0x7f0700ba; + public static int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static int TextAppearance_AppCompat_Button=0x7f0700bd; + public static int TextAppearance_AppCompat_Caption=0x7f0700be; + public static int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static int TextAppearance_AppCompat_Large=0x7f0700c5; + public static int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static int TextAppearance_AppCompat_Small=0x7f0700d0; + public static int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static int TextAppearance_AppCompat_Title=0x7f0700d4; + public static int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static int TextAppearance_Design_Counter=0x7f070146; + public static int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static int TextAppearance_Design_Error=0x7f070148; + public static int TextAppearance_Design_Hint=0x7f070149; + public static int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static int TextAppearance_Design_Tab=0x7f07014b; + public static int TextAppearance_StatusBar_EventContent=0x7f070027; + public static int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static int Theme_AppCompat=0x7f0700e9; + public static int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static int Theme_AppCompat_DayNight=0x7f070008; + public static int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static int Theme_AppCompat_Dialog=0x7f0700eb; + public static int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static int Theme_AppCompat_Light=0x7f0700ef; + public static int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static int Theme_Design=0x7f07014c; + public static int Theme_Design_BottomSheetDialog=0x7f07014d; + public static int Theme_Design_Light=0x7f07014e; + public static int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static int Theme_Design_Light_NoActionBar=0x7f070150; + public static int Theme_Design_NoActionBar=0x7f070151; + public static int ThemeOverlay_AppCompat=0x7f0700f7; + public static int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static int Widget_AppCompat_ActionBar=0x7f0700fc; + public static int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static int Widget_AppCompat_ActionButton=0x7f070101; + public static int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static int Widget_AppCompat_ActionMode=0x7f070104; + public static int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static int Widget_AppCompat_Button=0x7f070107; + public static int Widget_AppCompat_Button_Borderless=0x7f070108; + public static int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static int Widget_AppCompat_Button_Colored=0x7f07010b; + public static int Widget_AppCompat_Button_Small=0x7f07010c; + public static int Widget_AppCompat_ButtonBar=0x7f07010d; + public static int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static int Widget_AppCompat_EditText=0x7f070114; + public static int Widget_AppCompat_ImageButton=0x7f070115; + public static int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static int Widget_AppCompat_ListView=0x7f07012d; + public static int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static int Widget_AppCompat_PopupMenu=0x7f070130; + public static int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static int Widget_AppCompat_PopupWindow=0x7f070132; + public static int Widget_AppCompat_ProgressBar=0x7f070133; + public static int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static int Widget_AppCompat_RatingBar=0x7f070135; + public static int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static int Widget_AppCompat_SearchView=0x7f070138; + public static int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static int Widget_AppCompat_SeekBar=0x7f07013a; + public static int Widget_AppCompat_Spinner=0x7f07013b; + public static int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static int Widget_AppCompat_Toolbar=0x7f070140; + public static int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static int Widget_CardContent=0x7f070160; + public static int Widget_Design_AppBarLayout=0x7f070152; + public static int Widget_Design_BottomSheet_Modal=0x7f070153; + public static int Widget_Design_CollapsingToolbar=0x7f070154; + public static int Widget_Design_CoordinatorLayout=0x7f070155; + public static int Widget_Design_FloatingActionButton=0x7f070156; + public static int Widget_Design_NavigationView=0x7f070157; + public static int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static int Widget_Design_Snackbar=0x7f070159; + public static int Widget_Design_TabLayout=0x7f070142; + public static int Widget_Design_TextInputLayout=0x7f07015a; + public static int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background android.support.v7.recyclerview:background}
{@link #ActionBar_backgroundSplit android.support.v7.recyclerview:backgroundSplit}
{@link #ActionBar_backgroundStacked android.support.v7.recyclerview:backgroundStacked}
{@link #ActionBar_contentInsetEnd android.support.v7.recyclerview:contentInsetEnd}
{@link #ActionBar_contentInsetLeft android.support.v7.recyclerview:contentInsetLeft}
{@link #ActionBar_contentInsetRight android.support.v7.recyclerview:contentInsetRight}
{@link #ActionBar_contentInsetStart android.support.v7.recyclerview:contentInsetStart}
{@link #ActionBar_customNavigationLayout android.support.v7.recyclerview:customNavigationLayout}
{@link #ActionBar_displayOptions android.support.v7.recyclerview:displayOptions}
{@link #ActionBar_divider android.support.v7.recyclerview:divider}
{@link #ActionBar_elevation android.support.v7.recyclerview:elevation}
{@link #ActionBar_height android.support.v7.recyclerview:height}
{@link #ActionBar_hideOnContentScroll android.support.v7.recyclerview:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator android.support.v7.recyclerview:homeAsUpIndicator}
{@link #ActionBar_homeLayout android.support.v7.recyclerview:homeLayout}
{@link #ActionBar_icon android.support.v7.recyclerview:icon}
{@link #ActionBar_indeterminateProgressStyle android.support.v7.recyclerview:indeterminateProgressStyle}
{@link #ActionBar_itemPadding android.support.v7.recyclerview:itemPadding}
{@link #ActionBar_logo android.support.v7.recyclerview:logo}
{@link #ActionBar_navigationMode android.support.v7.recyclerview:navigationMode}
{@link #ActionBar_popupTheme android.support.v7.recyclerview:popupTheme}
{@link #ActionBar_progressBarPadding android.support.v7.recyclerview:progressBarPadding}
{@link #ActionBar_progressBarStyle android.support.v7.recyclerview:progressBarStyle}
{@link #ActionBar_subtitle android.support.v7.recyclerview:subtitle}
{@link #ActionBar_subtitleTextStyle android.support.v7.recyclerview:subtitleTextStyle}
{@link #ActionBar_title android.support.v7.recyclerview:title}
{@link #ActionBar_titleTextStyle android.support.v7.recyclerview:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:background + */ + public static int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:backgroundSplit + */ + public static int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:backgroundStacked + */ + public static int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetEnd + */ + public static int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetLeft + */ + public static int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetRight + */ + public static int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetStart + */ + public static int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:customNavigationLayout + */ + public static int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name android.support.v7.recyclerview:displayOptions + */ + public static int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:divider + */ + public static int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:elevation + */ + public static int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:height + */ + public static int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:hideOnContentScroll + */ + public static int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:homeAsUpIndicator + */ + public static int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:homeLayout + */ + public static int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:icon + */ + public static int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:indeterminateProgressStyle + */ + public static int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:itemPadding + */ + public static int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:logo + */ + public static int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name android.support.v7.recyclerview:navigationMode + */ + public static int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:popupTheme + */ + public static int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:progressBarPadding + */ + public static int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:progressBarStyle + */ + public static int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:subtitle + */ + public static int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:subtitleTextStyle + */ + public static int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:title + */ + public static int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:titleTextStyle + */ + public static int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background android.support.v7.recyclerview:background}
{@link #ActionMode_backgroundSplit android.support.v7.recyclerview:backgroundSplit}
{@link #ActionMode_closeItemLayout android.support.v7.recyclerview:closeItemLayout}
{@link #ActionMode_height android.support.v7.recyclerview:height}
{@link #ActionMode_subtitleTextStyle android.support.v7.recyclerview:subtitleTextStyle}
{@link #ActionMode_titleTextStyle android.support.v7.recyclerview:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:background + */ + public static int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:backgroundSplit + */ + public static int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:closeItemLayout + */ + public static int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:height + */ + public static int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:subtitleTextStyle + */ + public static int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:titleTextStyle + */ + public static int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable android.support.v7.recyclerview:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount android.support.v7.recyclerview:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:expandActivityOverflowButtonDrawable + */ + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:initialActivityCount + */ + public static int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout android.support.v7.recyclerview:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout android.support.v7.recyclerview:listItemLayout}
{@link #AlertDialog_listLayout android.support.v7.recyclerview:listLayout}
{@link #AlertDialog_multiChoiceItemLayout android.support.v7.recyclerview:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout android.support.v7.recyclerview:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonPanelSideLayout + */ + public static int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:listItemLayout + */ + public static int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:listLayout + */ + public static int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:multiChoiceItemLayout + */ + public static int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:singleChoiceItemLayout + */ + public static int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation android.support.v7.recyclerview:elevation}
{@link #AppBarLayout_expanded android.support.v7.recyclerview:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:elevation + */ + public static int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:expanded + */ + public static int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags android.support.v7.recyclerview:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator android.support.v7.recyclerview:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name android.support.v7.recyclerview:layout_scrollFlags + */ + public static int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:layout_scrollInterpolator + */ + public static int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat android.support.v7.recyclerview:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:srcCompat + */ + public static int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps android.support.v7.recyclerview:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v7.recyclerview:textAllCaps + */ + public static int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider android.support.v7.recyclerview:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground android.support.v7.recyclerview:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme android.support.v7.recyclerview:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize android.support.v7.recyclerview:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle android.support.v7.recyclerview:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle android.support.v7.recyclerview:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle android.support.v7.recyclerview:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle android.support.v7.recyclerview:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle android.support.v7.recyclerview:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme android.support.v7.recyclerview:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme android.support.v7.recyclerview:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle android.support.v7.recyclerview:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle android.support.v7.recyclerview:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance android.support.v7.recyclerview:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor android.support.v7.recyclerview:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground android.support.v7.recyclerview:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle android.support.v7.recyclerview:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable android.support.v7.recyclerview:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable android.support.v7.recyclerview:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable android.support.v7.recyclerview:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable android.support.v7.recyclerview:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable android.support.v7.recyclerview:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle android.support.v7.recyclerview:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable android.support.v7.recyclerview:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable android.support.v7.recyclerview:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground android.support.v7.recyclerview:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle android.support.v7.recyclerview:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable android.support.v7.recyclerview:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle android.support.v7.recyclerview:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle android.support.v7.recyclerview:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle android.support.v7.recyclerview:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle android.support.v7.recyclerview:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons android.support.v7.recyclerview:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle android.support.v7.recyclerview:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme android.support.v7.recyclerview:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle android.support.v7.recyclerview:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle android.support.v7.recyclerview:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle android.support.v7.recyclerview:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle android.support.v7.recyclerview:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle android.support.v7.recyclerview:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle android.support.v7.recyclerview:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle android.support.v7.recyclerview:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle android.support.v7.recyclerview:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall android.support.v7.recyclerview:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle android.support.v7.recyclerview:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle android.support.v7.recyclerview:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent android.support.v7.recyclerview:colorAccent}
{@link #AppCompatTheme_colorButtonNormal android.support.v7.recyclerview:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated android.support.v7.recyclerview:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight android.support.v7.recyclerview:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal android.support.v7.recyclerview:colorControlNormal}
{@link #AppCompatTheme_colorPrimary android.support.v7.recyclerview:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark android.support.v7.recyclerview:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal android.support.v7.recyclerview:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground android.support.v7.recyclerview:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding android.support.v7.recyclerview:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme android.support.v7.recyclerview:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal android.support.v7.recyclerview:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical android.support.v7.recyclerview:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle android.support.v7.recyclerview:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight android.support.v7.recyclerview:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground android.support.v7.recyclerview:editTextBackground}
{@link #AppCompatTheme_editTextColor android.support.v7.recyclerview:editTextColor}
{@link #AppCompatTheme_editTextStyle android.support.v7.recyclerview:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator android.support.v7.recyclerview:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle android.support.v7.recyclerview:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator android.support.v7.recyclerview:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog android.support.v7.recyclerview:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle android.support.v7.recyclerview:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight android.support.v7.recyclerview:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge android.support.v7.recyclerview:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall android.support.v7.recyclerview:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft android.support.v7.recyclerview:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight android.support.v7.recyclerview:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground android.support.v7.recyclerview:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme android.support.v7.recyclerview:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth android.support.v7.recyclerview:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle android.support.v7.recyclerview:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle android.support.v7.recyclerview:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle android.support.v7.recyclerview:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle android.support.v7.recyclerview:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator android.support.v7.recyclerview:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall android.support.v7.recyclerview:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle android.support.v7.recyclerview:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle android.support.v7.recyclerview:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground android.support.v7.recyclerview:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless android.support.v7.recyclerview:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle android.support.v7.recyclerview:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle android.support.v7.recyclerview:spinnerStyle}
{@link #AppCompatTheme_switchStyle android.support.v7.recyclerview:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu android.support.v7.recyclerview:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem android.support.v7.recyclerview:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall android.support.v7.recyclerview:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle android.support.v7.recyclerview:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle android.support.v7.recyclerview:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu android.support.v7.recyclerview:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem android.support.v7.recyclerview:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl android.support.v7.recyclerview:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle android.support.v7.recyclerview:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle android.support.v7.recyclerview:toolbarStyle}
{@link #AppCompatTheme_windowActionBar android.support.v7.recyclerview:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay android.support.v7.recyclerview:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay android.support.v7.recyclerview:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor android.support.v7.recyclerview:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor android.support.v7.recyclerview:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor android.support.v7.recyclerview:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor android.support.v7.recyclerview:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor android.support.v7.recyclerview:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor android.support.v7.recyclerview:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle android.support.v7.recyclerview:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarDivider + */ + public static int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarItemBackground + */ + public static int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarPopupTheme + */ + public static int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name android.support.v7.recyclerview:actionBarSize + */ + public static int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarSplitStyle + */ + public static int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarStyle + */ + public static int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarTabBarStyle + */ + public static int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarTabStyle + */ + public static int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarTabTextStyle + */ + public static int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarTheme + */ + public static int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionBarWidgetTheme + */ + public static int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionButtonStyle + */ + public static int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionDropDownStyle + */ + public static int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionMenuTextAppearance + */ + public static int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:actionMenuTextColor + */ + public static int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeBackground + */ + public static int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeCloseButtonStyle + */ + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeCloseDrawable + */ + public static int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeCopyDrawable + */ + public static int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeCutDrawable + */ + public static int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeFindDrawable + */ + public static int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModePasteDrawable + */ + public static int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModePopupWindowStyle + */ + public static int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeSelectAllDrawable + */ + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeShareDrawable + */ + public static int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeSplitBackground + */ + public static int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeStyle + */ + public static int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionModeWebSearchDrawable + */ + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionOverflowButtonStyle + */ + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionOverflowMenuStyle + */ + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:activityChooserViewStyle + */ + public static int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:alertDialogButtonGroupStyle + */ + public static int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:alertDialogCenterButtons + */ + public static int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:alertDialogStyle + */ + public static int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:alertDialogTheme + */ + public static int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:autoCompleteTextViewStyle + */ + public static int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:borderlessButtonStyle + */ + public static int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonBarButtonStyle + */ + public static int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonBarNegativeButtonStyle + */ + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonBarNeutralButtonStyle + */ + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonBarPositiveButtonStyle + */ + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonBarStyle + */ + public static int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonStyle + */ + public static int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:buttonStyleSmall + */ + public static int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:checkboxStyle + */ + public static int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:checkedTextViewStyle + */ + public static int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorAccent + */ + public static int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorButtonNormal + */ + public static int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorControlActivated + */ + public static int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorControlHighlight + */ + public static int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorControlNormal + */ + public static int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorPrimary + */ + public static int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorPrimaryDark + */ + public static int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:colorSwitchThumbNormal + */ + public static int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:controlBackground + */ + public static int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:dialogPreferredPadding + */ + public static int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:dialogTheme + */ + public static int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:dividerHorizontal + */ + public static int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:dividerVertical + */ + public static int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:dropDownListViewStyle + */ + public static int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:dropdownListPreferredItemHeight + */ + public static int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:editTextBackground + */ + public static int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:editTextColor + */ + public static int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:editTextStyle + */ + public static int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:homeAsUpIndicator + */ + public static int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:imageButtonStyle + */ + public static int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:listChoiceBackgroundIndicator + */ + public static int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:listDividerAlertDialog + */ + public static int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:listPopupWindowStyle + */ + public static int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:listPreferredItemHeight + */ + public static int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:listPreferredItemHeightLarge + */ + public static int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:listPreferredItemHeightSmall + */ + public static int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:listPreferredItemPaddingLeft + */ + public static int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:listPreferredItemPaddingRight + */ + public static int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:panelBackground + */ + public static int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:panelMenuListTheme + */ + public static int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:panelMenuListWidth + */ + public static int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:popupMenuStyle + */ + public static int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:popupWindowStyle + */ + public static int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:radioButtonStyle + */ + public static int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:ratingBarStyle + */ + public static int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:ratingBarStyleIndicator + */ + public static int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:ratingBarStyleSmall + */ + public static int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:searchViewStyle + */ + public static int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:seekBarStyle + */ + public static int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:selectableItemBackground + */ + public static int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:selectableItemBackgroundBorderless + */ + public static int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:spinnerDropDownItemStyle + */ + public static int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:spinnerStyle + */ + public static int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:switchStyle + */ + public static int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:textAppearanceLargePopupMenu + */ + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:textAppearanceListItem + */ + public static int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:textAppearanceListItemSmall + */ + public static int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:textAppearanceSearchResultSubtitle + */ + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:textAppearanceSearchResultTitle + */ + public static int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:textAppearanceSmallPopupMenu + */ + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:textColorAlertDialogListItem + */ + public static int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:textColorSearchUrl + */ + public static int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:toolbarNavigationButtonStyle + */ + public static int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:toolbarStyle + */ + public static int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowActionBar + */ + public static int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowActionBarOverlay + */ + public static int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowActionModeOverlay + */ + public static int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowFixedHeightMajor + */ + public static int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowFixedHeightMinor + */ + public static int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowFixedWidthMajor + */ + public static int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowFixedWidthMinor + */ + public static int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowMinWidthMajor + */ + public static int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowMinWidthMinor + */ + public static int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:windowNoTitle + */ + public static int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable android.support.v7.recyclerview:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight android.support.v7.recyclerview:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:behavior_hideable + */ + public static int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:behavior_peekHeight + */ + public static int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking android.support.v7.recyclerview:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:allowStacking + */ + public static int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor android.support.v7.recyclerview:cardBackgroundColor}
{@link #CardView_cardCornerRadius android.support.v7.recyclerview:cardCornerRadius}
{@link #CardView_cardElevation android.support.v7.recyclerview:cardElevation}
{@link #CardView_cardMaxElevation android.support.v7.recyclerview:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap android.support.v7.recyclerview:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding android.support.v7.recyclerview:cardUseCompatPadding}
{@link #CardView_contentPadding android.support.v7.recyclerview:contentPadding}
{@link #CardView_contentPaddingBottom android.support.v7.recyclerview:contentPaddingBottom}
{@link #CardView_contentPaddingLeft android.support.v7.recyclerview:contentPaddingLeft}
{@link #CardView_contentPaddingRight android.support.v7.recyclerview:contentPaddingRight}
{@link #CardView_contentPaddingTop android.support.v7.recyclerview:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:cardBackgroundColor + */ + public static int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:cardCornerRadius + */ + public static int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:cardElevation + */ + public static int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:cardMaxElevation + */ + public static int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:cardPreventCornerOverlap + */ + public static int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:cardUseCompatPadding + */ + public static int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentPadding + */ + public static int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentPaddingBottom + */ + public static int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentPaddingLeft + */ + public static int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentPaddingRight + */ + public static int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentPaddingTop + */ + public static int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode android.support.v7.recyclerview:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier android.support.v7.recyclerview:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name android.support.v7.recyclerview:layout_collapseMode + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:layout_collapseParallaxMultiplier + */ + public static int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity android.support.v7.recyclerview:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance android.support.v7.recyclerview:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim android.support.v7.recyclerview:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity android.support.v7.recyclerview:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin android.support.v7.recyclerview:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom android.support.v7.recyclerview:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd android.support.v7.recyclerview:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart android.support.v7.recyclerview:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop android.support.v7.recyclerview:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance android.support.v7.recyclerview:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim android.support.v7.recyclerview:statusBarScrim}
{@link #CollapsingToolbarLayout_title android.support.v7.recyclerview:title}
{@link #CollapsingToolbarLayout_titleEnabled android.support.v7.recyclerview:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId android.support.v7.recyclerview:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v7.recyclerview:collapsedTitleGravity + */ + public static int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:collapsedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentScrim + */ + public static int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name android.support.v7.recyclerview:expandedTitleGravity + */ + public static int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:expandedTitleMargin + */ + public static int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:expandedTitleMarginBottom + */ + public static int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:expandedTitleMarginEnd + */ + public static int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:expandedTitleMarginStart + */ + public static int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:expandedTitleMarginTop + */ + public static int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:expandedTitleTextAppearance + */ + public static int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:statusBarScrim + */ + public static int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:title + */ + public static int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:titleEnabled + */ + public static int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:toolbarId + */ + public static int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint android.support.v7.recyclerview:buttonTint}
{@link #CompoundButton_buttonTintMode android.support.v7.recyclerview:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:buttonTint + */ + public static int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.recyclerview:buttonTintMode + */ + public static int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines android.support.v7.recyclerview:keylines}
{@link #CoordinatorLayout_statusBarBackground android.support.v7.recyclerview:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:keylines + */ + public static int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:statusBarBackground + */ + public static int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor android.support.v7.recyclerview:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity android.support.v7.recyclerview:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior android.support.v7.recyclerview:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline android.support.v7.recyclerview:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:layout_anchor + */ + public static int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name android.support.v7.recyclerview:layout_anchorGravity + */ + public static int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:layout_behavior + */ + public static int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:layout_keyline + */ + public static int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme android.support.v7.recyclerview:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle android.support.v7.recyclerview:bottomSheetStyle}
{@link #DesignTheme_textColorError android.support.v7.recyclerview:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:bottomSheetDialogTheme + */ + public static int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:bottomSheetStyle + */ + public static int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:textColorError + */ + public static int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength android.support.v7.recyclerview:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength android.support.v7.recyclerview:arrowShaftLength}
{@link #DrawerArrowToggle_barLength android.support.v7.recyclerview:barLength}
{@link #DrawerArrowToggle_color android.support.v7.recyclerview:color}
{@link #DrawerArrowToggle_drawableSize android.support.v7.recyclerview:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars android.support.v7.recyclerview:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars android.support.v7.recyclerview:spinBars}
{@link #DrawerArrowToggle_thickness android.support.v7.recyclerview:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:arrowHeadLength + */ + public static int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:arrowShaftLength + */ + public static int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:barLength + */ + public static int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:color + */ + public static int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:drawableSize + */ + public static int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:gapBetweenBars + */ + public static int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:spinBars + */ + public static int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:thickness + */ + public static int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint android.support.v7.recyclerview:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode android.support.v7.recyclerview:backgroundTintMode}
{@link #FloatingActionButton_borderWidth android.support.v7.recyclerview:borderWidth}
{@link #FloatingActionButton_elevation android.support.v7.recyclerview:elevation}
{@link #FloatingActionButton_fabSize android.support.v7.recyclerview:fabSize}
{@link #FloatingActionButton_pressedTranslationZ android.support.v7.recyclerview:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor android.support.v7.recyclerview:rippleColor}
{@link #FloatingActionButton_useCompatPadding android.support.v7.recyclerview:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:backgroundTint + */ + public static int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.recyclerview:backgroundTintMode + */ + public static int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:borderWidth + */ + public static int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:elevation + */ + public static int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name android.support.v7.recyclerview:fabSize + */ + public static int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:pressedTranslationZ + */ + public static int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:rippleColor + */ + public static int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:useCompatPadding + */ + public static int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding android.support.v7.recyclerview:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:foregroundInsidePadding + */ + public static int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider android.support.v7.recyclerview:divider}
{@link #LinearLayoutCompat_dividerPadding android.support.v7.recyclerview:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild android.support.v7.recyclerview:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers android.support.v7.recyclerview:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:divider + */ + public static int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:dividerPadding + */ + public static int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:measureWithLargestChild + */ + public static int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name android.support.v7.recyclerview:showDividers + */ + public static int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout android.support.v7.recyclerview:actionLayout}
{@link #MenuItem_actionProviderClass android.support.v7.recyclerview:actionProviderClass}
{@link #MenuItem_actionViewClass android.support.v7.recyclerview:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction android.support.v7.recyclerview:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:actionLayout + */ + public static int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:actionProviderClass + */ + public static int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:actionViewClass + */ + public static int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name android.support.v7.recyclerview:showAsAction + */ + public static int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing android.support.v7.recyclerview:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:preserveIconSpacing + */ + public static int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation android.support.v7.recyclerview:elevation}
{@link #NavigationView_headerLayout android.support.v7.recyclerview:headerLayout}
{@link #NavigationView_itemBackground android.support.v7.recyclerview:itemBackground}
{@link #NavigationView_itemIconTint android.support.v7.recyclerview:itemIconTint}
{@link #NavigationView_itemTextAppearance android.support.v7.recyclerview:itemTextAppearance}
{@link #NavigationView_itemTextColor android.support.v7.recyclerview:itemTextColor}
{@link #NavigationView_menu android.support.v7.recyclerview:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:elevation + */ + public static int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:headerLayout + */ + public static int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:itemBackground + */ + public static int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:itemIconTint + */ + public static int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:itemTextAppearance + */ + public static int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:itemTextColor + */ + public static int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:menu + */ + public static int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor android.support.v7.recyclerview:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:overlapAnchor + */ + public static int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor android.support.v7.recyclerview:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:state_above_anchor + */ + public static int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager android.support.v7.recyclerview:layoutManager}
{@link #RecyclerView_reverseLayout android.support.v7.recyclerview:reverseLayout}
{@link #RecyclerView_spanCount android.support.v7.recyclerview:spanCount}
{@link #RecyclerView_stackFromEnd android.support.v7.recyclerview:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:layoutManager + */ + public static int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:reverseLayout + */ + public static int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:spanCount + */ + public static int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:stackFromEnd + */ + public static int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground android.support.v7.recyclerview:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name android.support.v7.recyclerview:insetForeground + */ + public static int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop android.support.v7.recyclerview:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:behavior_overlapTop + */ + public static int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon android.support.v7.recyclerview:closeIcon}
{@link #SearchView_commitIcon android.support.v7.recyclerview:commitIcon}
{@link #SearchView_defaultQueryHint android.support.v7.recyclerview:defaultQueryHint}
{@link #SearchView_goIcon android.support.v7.recyclerview:goIcon}
{@link #SearchView_iconifiedByDefault android.support.v7.recyclerview:iconifiedByDefault}
{@link #SearchView_layout android.support.v7.recyclerview:layout}
{@link #SearchView_queryBackground android.support.v7.recyclerview:queryBackground}
{@link #SearchView_queryHint android.support.v7.recyclerview:queryHint}
{@link #SearchView_searchHintIcon android.support.v7.recyclerview:searchHintIcon}
{@link #SearchView_searchIcon android.support.v7.recyclerview:searchIcon}
{@link #SearchView_submitBackground android.support.v7.recyclerview:submitBackground}
{@link #SearchView_suggestionRowLayout android.support.v7.recyclerview:suggestionRowLayout}
{@link #SearchView_voiceIcon android.support.v7.recyclerview:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:closeIcon + */ + public static int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:commitIcon + */ + public static int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:defaultQueryHint + */ + public static int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:goIcon + */ + public static int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:iconifiedByDefault + */ + public static int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:layout + */ + public static int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:queryBackground + */ + public static int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:queryHint + */ + public static int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:searchHintIcon + */ + public static int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:searchIcon + */ + public static int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:submitBackground + */ + public static int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:suggestionRowLayout + */ + public static int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:voiceIcon + */ + public static int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation android.support.v7.recyclerview:elevation}
{@link #SnackbarLayout_maxActionInlineWidth android.support.v7.recyclerview:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:elevation + */ + public static int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:maxActionInlineWidth + */ + public static int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme android.support.v7.recyclerview:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:popupTheme + */ + public static int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText android.support.v7.recyclerview:showText}
{@link #SwitchCompat_splitTrack android.support.v7.recyclerview:splitTrack}
{@link #SwitchCompat_switchMinWidth android.support.v7.recyclerview:switchMinWidth}
{@link #SwitchCompat_switchPadding android.support.v7.recyclerview:switchPadding}
{@link #SwitchCompat_switchTextAppearance android.support.v7.recyclerview:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding android.support.v7.recyclerview:thumbTextPadding}
{@link #SwitchCompat_track android.support.v7.recyclerview:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:showText + */ + public static int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:splitTrack + */ + public static int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:switchMinWidth + */ + public static int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:switchPadding + */ + public static int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:switchTextAppearance + */ + public static int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:thumbTextPadding + */ + public static int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:track + */ + public static int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground android.support.v7.recyclerview:tabBackground}
{@link #TabLayout_tabContentStart android.support.v7.recyclerview:tabContentStart}
{@link #TabLayout_tabGravity android.support.v7.recyclerview:tabGravity}
{@link #TabLayout_tabIndicatorColor android.support.v7.recyclerview:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight android.support.v7.recyclerview:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth android.support.v7.recyclerview:tabMaxWidth}
{@link #TabLayout_tabMinWidth android.support.v7.recyclerview:tabMinWidth}
{@link #TabLayout_tabMode android.support.v7.recyclerview:tabMode}
{@link #TabLayout_tabPadding android.support.v7.recyclerview:tabPadding}
{@link #TabLayout_tabPaddingBottom android.support.v7.recyclerview:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd android.support.v7.recyclerview:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart android.support.v7.recyclerview:tabPaddingStart}
{@link #TabLayout_tabPaddingTop android.support.v7.recyclerview:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor android.support.v7.recyclerview:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance android.support.v7.recyclerview:tabTextAppearance}
{@link #TabLayout_tabTextColor android.support.v7.recyclerview:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:tabBackground + */ + public static int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabContentStart + */ + public static int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name android.support.v7.recyclerview:tabGravity + */ + public static int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabIndicatorColor + */ + public static int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabIndicatorHeight + */ + public static int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabMaxWidth + */ + public static int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabMinWidth + */ + public static int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name android.support.v7.recyclerview:tabMode + */ + public static int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabPadding + */ + public static int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabPaddingBottom + */ + public static int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabPaddingEnd + */ + public static int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabPaddingStart + */ + public static int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabPaddingTop + */ + public static int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabSelectedTextColor + */ + public static int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:tabTextAppearance + */ + public static int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:tabTextColor + */ + public static int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps android.support.v7.recyclerview:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name android.support.v7.recyclerview:textAllCaps + */ + public static int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled android.support.v7.recyclerview:counterEnabled}
{@link #TextInputLayout_counterMaxLength android.support.v7.recyclerview:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance android.support.v7.recyclerview:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance android.support.v7.recyclerview:counterTextAppearance}
{@link #TextInputLayout_errorEnabled android.support.v7.recyclerview:errorEnabled}
{@link #TextInputLayout_errorTextAppearance android.support.v7.recyclerview:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled android.support.v7.recyclerview:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled android.support.v7.recyclerview:hintEnabled}
{@link #TextInputLayout_hintTextAppearance android.support.v7.recyclerview:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:counterEnabled + */ + public static int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:counterMaxLength + */ + public static int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:counterOverflowTextAppearance + */ + public static int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:counterTextAppearance + */ + public static int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:errorEnabled + */ + public static int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:errorTextAppearance + */ + public static int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:hintAnimationEnabled + */ + public static int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:hintEnabled + */ + public static int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:hintTextAppearance + */ + public static int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription android.support.v7.recyclerview:collapseContentDescription}
{@link #Toolbar_collapseIcon android.support.v7.recyclerview:collapseIcon}
{@link #Toolbar_contentInsetEnd android.support.v7.recyclerview:contentInsetEnd}
{@link #Toolbar_contentInsetLeft android.support.v7.recyclerview:contentInsetLeft}
{@link #Toolbar_contentInsetRight android.support.v7.recyclerview:contentInsetRight}
{@link #Toolbar_contentInsetStart android.support.v7.recyclerview:contentInsetStart}
{@link #Toolbar_logo android.support.v7.recyclerview:logo}
{@link #Toolbar_logoDescription android.support.v7.recyclerview:logoDescription}
{@link #Toolbar_maxButtonHeight android.support.v7.recyclerview:maxButtonHeight}
{@link #Toolbar_navigationContentDescription android.support.v7.recyclerview:navigationContentDescription}
{@link #Toolbar_navigationIcon android.support.v7.recyclerview:navigationIcon}
{@link #Toolbar_popupTheme android.support.v7.recyclerview:popupTheme}
{@link #Toolbar_subtitle android.support.v7.recyclerview:subtitle}
{@link #Toolbar_subtitleTextAppearance android.support.v7.recyclerview:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor android.support.v7.recyclerview:subtitleTextColor}
{@link #Toolbar_title android.support.v7.recyclerview:title}
{@link #Toolbar_titleMarginBottom android.support.v7.recyclerview:titleMarginBottom}
{@link #Toolbar_titleMarginEnd android.support.v7.recyclerview:titleMarginEnd}
{@link #Toolbar_titleMarginStart android.support.v7.recyclerview:titleMarginStart}
{@link #Toolbar_titleMarginTop android.support.v7.recyclerview:titleMarginTop}
{@link #Toolbar_titleMargins android.support.v7.recyclerview:titleMargins}
{@link #Toolbar_titleTextAppearance android.support.v7.recyclerview:titleTextAppearance}
{@link #Toolbar_titleTextColor android.support.v7.recyclerview:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:collapseContentDescription + */ + public static int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:collapseIcon + */ + public static int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetEnd + */ + public static int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetLeft + */ + public static int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetRight + */ + public static int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:contentInsetStart + */ + public static int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:logo + */ + public static int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:logoDescription + */ + public static int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:maxButtonHeight + */ + public static int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:navigationContentDescription + */ + public static int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:navigationIcon + */ + public static int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:popupTheme + */ + public static int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:subtitle + */ + public static int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:subtitleTextAppearance + */ + public static int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:subtitleTextColor + */ + public static int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:title + */ + public static int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:titleMarginBottom + */ + public static int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:titleMarginEnd + */ + public static int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:titleMarginStart + */ + public static int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:titleMarginTop + */ + public static int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:titleMargins + */ + public static int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:titleTextAppearance + */ + public static int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:titleTextColor + */ + public static int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd android.support.v7.recyclerview:paddingEnd}
{@link #View_paddingStart android.support.v7.recyclerview:paddingStart}
{@link #View_theme android.support.v7.recyclerview:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static int View_android_theme = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:paddingEnd + */ + public static int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:paddingStart + */ + public static int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name android.support.v7.recyclerview:theme + */ + public static int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint android.support.v7.recyclerview:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode android.support.v7.recyclerview:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name android.support.v7.recyclerview:backgroundTint + */ + public static int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link android.support.v7.recyclerview.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name android.support.v7.recyclerview:backgroundTintMode + */ + public static int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/android/support/v7/widget/Toolbar_NavigationOnClickEventDispatcher.java b/Support/Support.Android/obj/Debug/android/src/android/support/v7/widget/Toolbar_NavigationOnClickEventDispatcher.java new file mode 100644 index 0000000..310eb58 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/android/support/v7/widget/Toolbar_NavigationOnClickEventDispatcher.java @@ -0,0 +1,55 @@ +package android.support.v7.widget; + + +public class Toolbar_NavigationOnClickEventDispatcher + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.view.View.OnClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClick:(Landroid/view/View;)V:GetOnClick_Landroid_view_View_Handler:Android.Views.View/IOnClickListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", Toolbar_NavigationOnClickEventDispatcher.class, __md_methods); + } + + + public Toolbar_NavigationOnClickEventDispatcher () throws java.lang.Throwable + { + super (); + if (getClass () == Toolbar_NavigationOnClickEventDispatcher.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + public Toolbar_NavigationOnClickEventDispatcher (android.support.v7.widget.Toolbar p0) throws java.lang.Throwable + { + super (); + if (getClass () == Toolbar_NavigationOnClickEventDispatcher.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.Toolbar+NavigationOnClickEventDispatcher, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Android.Support.V7.Widget.Toolbar, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", this, new java.lang.Object[] { p0 }); + } + + + public void onClick (android.view.View p0) + { + n_onClick (p0); + } + + private native void n_onClick (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/com/companyname/support/R.java b/Support/Support.Android/obj/Debug/android/src/com/companyname/support/R.java new file mode 100644 index 0000000..eb04bff --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/com/companyname/support/R.java @@ -0,0 +1,9067 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.companyname.support; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f040000; + public static final int abc_fade_out=0x7f040001; + public static final int abc_grow_fade_in_from_bottom=0x7f040002; + public static final int abc_popup_enter=0x7f040003; + public static final int abc_popup_exit=0x7f040004; + public static final int abc_shrink_fade_out_from_bottom=0x7f040005; + public static final int abc_slide_in_bottom=0x7f040006; + public static final int abc_slide_in_top=0x7f040007; + public static final int abc_slide_out_bottom=0x7f040008; + public static final int abc_slide_out_top=0x7f040009; + public static final int design_bottom_sheet_slide_in=0x7f04000a; + public static final int design_bottom_sheet_slide_out=0x7f04000b; + public static final int design_fab_in=0x7f04000c; + public static final int design_fab_out=0x7f04000d; + public static final int design_snackbar_in=0x7f04000e; + public static final int design_snackbar_out=0x7f04000f; + } + public static final class array { + public static final int sections=0x7f0c0000; + } + public static final class attr { + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarDivider=0x7f01004a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarItemBackground=0x7f01004b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarPopupTheme=0x7f010044; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f010049; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarSplitStyle=0x7f010046; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarStyle=0x7f010045; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabBarStyle=0x7f010040; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabStyle=0x7f01003f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTabTextStyle=0x7f010041; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarTheme=0x7f010047; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionBarWidgetTheme=0x7f010048; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionButtonStyle=0x7f010064; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionDropDownStyle=0x7f010060; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionLayout=0x7f0100b2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionMenuTextAppearance=0x7f01004c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f01004d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeBackground=0x7f010050; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseButtonStyle=0x7f01004f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCloseDrawable=0x7f010052; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCopyDrawable=0x7f010054; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeCutDrawable=0x7f010053; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeFindDrawable=0x7f010058; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePasteDrawable=0x7f010055; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModePopupWindowStyle=0x7f01005a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSelectAllDrawable=0x7f010056; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeShareDrawable=0x7f010057; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeSplitBackground=0x7f010051; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeStyle=0x7f01004e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionModeWebSearchDrawable=0x7f010059; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowButtonStyle=0x7f010042; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int actionOverflowMenuStyle=0x7f010043; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionProviderClass=0x7f0100b4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int actionViewClass=0x7f0100b3; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int activityChooserViewStyle=0x7f01006c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogButtonGroupStyle=0x7f01008f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int alertDialogCenterButtons=0x7f010090; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogStyle=0x7f01008e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int alertDialogTheme=0x7f010091; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int allowStacking=0x7f0100a3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowHeadLength=0x7f0100aa; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int arrowShaftLength=0x7f0100ab; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int autoCompleteTextViewStyle=0x7f010096; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int background=0x7f01001b; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundSplit=0x7f01001d; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int backgroundStacked=0x7f01001c; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int backgroundTint=0x7f0100de; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int backgroundTintMode=0x7f0100df; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int barLength=0x7f0100ac; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_hideable=0x7f0100e4; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_overlapTop=0x7f01010a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int behavior_peekHeight=0x7f0100e3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int borderWidth=0x7f010100; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int borderlessButtonStyle=0x7f010069; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetDialogTheme=0x7f0100fa; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int bottomSheetStyle=0x7f0100fb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarButtonStyle=0x7f010066; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f010094; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f010095; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f010093; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonBarStyle=0x7f010065; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonPanelSideLayout=0x7f01002e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyle=0x7f010097; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int buttonStyleSmall=0x7f010098; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int buttonTint=0x7f0100a4; + /**

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ */ + public static final int buttonTintMode=0x7f0100a5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardBackgroundColor=0x7f010004; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardCornerRadius=0x7f010005; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardElevation=0x7f010006; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardMaxElevation=0x7f010007; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardPreventCornerOverlap=0x7f010009; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int cardUseCompatPadding=0x7f010008; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkboxStyle=0x7f010099; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int checkedTextViewStyle=0x7f01009a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeIcon=0x7f0100bc; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int closeItemLayout=0x7f01002b; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int collapseContentDescription=0x7f0100d5; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapseIcon=0x7f0100d4; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int collapsedTitleGravity=0x7f0100f1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int collapsedTitleTextAppearance=0x7f0100ed; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int color=0x7f0100a6; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorAccent=0x7f010087; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorButtonNormal=0x7f01008b; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlActivated=0x7f010089; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlHighlight=0x7f01008a; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorControlNormal=0x7f010088; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimary=0x7f010085; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorPrimaryDark=0x7f010086; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int colorSwitchThumbNormal=0x7f01008c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int commitIcon=0x7f0100c1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetEnd=0x7f010026; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetLeft=0x7f010027; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetRight=0x7f010028; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentInsetStart=0x7f010025; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPadding=0x7f01000a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingBottom=0x7f01000e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingLeft=0x7f01000b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingRight=0x7f01000c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentPaddingTop=0x7f01000d; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int contentScrim=0x7f0100ee; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int controlBackground=0x7f01008d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterEnabled=0x7f010120; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int counterMaxLength=0x7f010121; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterOverflowTextAppearance=0x7f010123; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int counterTextAppearance=0x7f010122; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int customNavigationLayout=0x7f01001e; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int defaultQueryHint=0x7f0100bb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dialogPreferredPadding=0x7f01005e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dialogTheme=0x7f01005d; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ */ + public static final int displayOptions=0x7f010014; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int divider=0x7f01001a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerHorizontal=0x7f01006b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dividerPadding=0x7f0100b0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dividerVertical=0x7f01006a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int drawableSize=0x7f0100a8; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int drawerArrowStyle=0x7f01000f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int dropDownListViewStyle=0x7f01007d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int dropdownListPreferredItemHeight=0x7f010061; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextBackground=0x7f010072; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int editTextColor=0x7f010071; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int editTextStyle=0x7f01009b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int elevation=0x7f010029; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int errorEnabled=0x7f01011e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int errorTextAppearance=0x7f01011f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f01002d; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expanded=0x7f0100e0; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ */ + public static final int expandedTitleGravity=0x7f0100f2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMargin=0x7f0100e7; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginBottom=0x7f0100eb; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginEnd=0x7f0100ea; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginStart=0x7f0100e8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int expandedTitleMarginTop=0x7f0100e9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int expandedTitleTextAppearance=0x7f0100ec; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ */ + public static final int fabSize=0x7f0100fe; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int foregroundInsidePadding=0x7f010102; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int gapBetweenBars=0x7f0100a9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int goIcon=0x7f0100bd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int headerLayout=0x7f010108; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int height=0x7f010010; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hideOnContentScroll=0x7f010024; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintAnimationEnabled=0x7f010124; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int hintEnabled=0x7f01011d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int hintTextAppearance=0x7f01011c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeAsUpIndicator=0x7f010063; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int homeLayout=0x7f01001f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int icon=0x7f010018; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int iconifiedByDefault=0x7f0100b9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int imageButtonStyle=0x7f010073; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int indeterminateProgressStyle=0x7f010021; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int initialActivityCount=0x7f01002c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int insetForeground=0x7f010109; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int isLightTheme=0x7f010011; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemBackground=0x7f010106; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemIconTint=0x7f010104; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemPadding=0x7f010023; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int itemTextAppearance=0x7f010107; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int itemTextColor=0x7f010105; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int keylines=0x7f0100f4; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout=0x7f0100b8; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layoutManager=0x7f010000; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_anchor=0x7f0100f7; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ */ + public static final int layout_anchorGravity=0x7f0100f9; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_behavior=0x7f0100f6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ */ + public static final int layout_collapseMode=0x7f0100e5; + /**

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_collapseParallaxMultiplier=0x7f0100e6; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int layout_keyline=0x7f0100f8; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ */ + public static final int layout_scrollFlags=0x7f0100e1; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int layout_scrollInterpolator=0x7f0100e2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listChoiceBackgroundIndicator=0x7f010084; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listDividerAlertDialog=0x7f01005f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listItemLayout=0x7f010032; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listLayout=0x7f01002f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int listPopupWindowStyle=0x7f01007e; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeight=0x7f010078; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightLarge=0x7f01007a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemHeightSmall=0x7f010079; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingLeft=0x7f01007b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int listPreferredItemPaddingRight=0x7f01007c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int logo=0x7f010019; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int logoDescription=0x7f0100d8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxActionInlineWidth=0x7f01010b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int maxButtonHeight=0x7f0100d3; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int measureWithLargestChild=0x7f0100ae; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int menu=0x7f010103; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int multiChoiceItemLayout=0x7f010030; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int navigationContentDescription=0x7f0100d7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int navigationIcon=0x7f0100d6; + /**

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ */ + public static final int navigationMode=0x7f010013; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int overlapAnchor=0x7f0100b6; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingEnd=0x7f0100dc; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int paddingStart=0x7f0100db; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelBackground=0x7f010081; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int panelMenuListTheme=0x7f010083; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int panelMenuListWidth=0x7f010082; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupMenuStyle=0x7f01006f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupTheme=0x7f01002a; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int popupWindowStyle=0x7f010070; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int preserveIconSpacing=0x7f0100b5; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int pressedTranslationZ=0x7f0100ff; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int progressBarPadding=0x7f010022; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int progressBarStyle=0x7f010020; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int queryBackground=0x7f0100c3; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int queryHint=0x7f0100ba; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int radioButtonStyle=0x7f01009c; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyle=0x7f01009d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleIndicator=0x7f01009e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int ratingBarStyleSmall=0x7f01009f; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int reverseLayout=0x7f010002; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int rippleColor=0x7f0100fd; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchHintIcon=0x7f0100bf; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchIcon=0x7f0100be; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int searchViewStyle=0x7f010077; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int seekBarStyle=0x7f0100a0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackground=0x7f010067; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int selectableItemBackgroundBorderless=0x7f010068; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ */ + public static final int showAsAction=0x7f0100b1; + /**

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ */ + public static final int showDividers=0x7f0100af; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int showText=0x7f0100cb; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int singleChoiceItemLayout=0x7f010031; + /**

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spanCount=0x7f010001; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int spinBars=0x7f0100a7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerDropDownItemStyle=0x7f010062; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int spinnerStyle=0x7f0100a1; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int splitTrack=0x7f0100ca; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int srcCompat=0x7f010033; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int stackFromEnd=0x7f010003; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int state_above_anchor=0x7f0100b7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int statusBarBackground=0x7f0100f5; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int statusBarScrim=0x7f0100ef; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int submitBackground=0x7f0100c4; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitle=0x7f010015; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextAppearance=0x7f0100cd; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int subtitleTextColor=0x7f0100da; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int subtitleTextStyle=0x7f010017; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int suggestionRowLayout=0x7f0100c2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchMinWidth=0x7f0100c8; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int switchPadding=0x7f0100c9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchStyle=0x7f0100a2; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int switchTextAppearance=0x7f0100c7; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabBackground=0x7f01010f; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabContentStart=0x7f01010e; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ */ + public static final int tabGravity=0x7f010111; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorColor=0x7f01010c; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabIndicatorHeight=0x7f01010d; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMaxWidth=0x7f010113; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabMinWidth=0x7f010112; + /**

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ */ + public static final int tabMode=0x7f010110; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPadding=0x7f01011b; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingBottom=0x7f01011a; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingEnd=0x7f010119; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingStart=0x7f010117; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabPaddingTop=0x7f010118; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabSelectedTextColor=0x7f010116; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int tabTextAppearance=0x7f010114; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int tabTextColor=0x7f010115; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + */ + public static final int textAllCaps=0x7f010034; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceLargePopupMenu=0x7f01005b; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItem=0x7f01007f; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceListItemSmall=0x7f010080; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f010075; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSearchResultTitle=0x7f010074; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f01005c; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f010092; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int textColorError=0x7f0100fc; + /**

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f010076; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int theme=0x7f0100dd; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thickness=0x7f0100ad; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int thumbTextPadding=0x7f0100c6; + /**

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int title=0x7f010012; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleEnabled=0x7f0100f3; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginBottom=0x7f0100d2; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginEnd=0x7f0100d0; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginStart=0x7f0100cf; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMarginTop=0x7f0100d1; + /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleMargins=0x7f0100ce; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextAppearance=0x7f0100cc; + /**

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int titleTextColor=0x7f0100d9; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int titleTextStyle=0x7f010016; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarId=0x7f0100f0; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarNavigationButtonStyle=0x7f01006e; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int toolbarStyle=0x7f01006d; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int track=0x7f0100c5; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int useCompatPadding=0x7f010101; + /**

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + */ + public static final int voiceIcon=0x7f0100c0; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBar=0x7f010035; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionBarOverlay=0x7f010037; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowActionModeOverlay=0x7f010038; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMajor=0x7f01003c; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedHeightMinor=0x7f01003a; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMajor=0x7f010039; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowFixedWidthMinor=0x7f01003b; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMajor=0x7f01003d; + /**

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowMinWidthMinor=0x7f01003e; + /**

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + */ + public static final int windowNoTitle=0x7f010036; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f0a0003; + public static final int abc_action_bar_embed_tabs_pre_jb=0x7f0a0001; + public static final int abc_action_bar_expanded_action_views_exclusive=0x7f0a0004; + public static final int abc_allow_stacked_button_bar=0x7f0a0000; + public static final int abc_config_actionMenuItemAllCaps=0x7f0a0005; + public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f0a0002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f0a0006; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f0a0007; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f08004c; + public static final int abc_background_cache_hint_selector_material_light=0x7f08004d; + public static final int abc_color_highlight_material=0x7f08004e; + public static final int abc_input_method_navigation_guard=0x7f080004; + public static final int abc_primary_text_disable_only_material_dark=0x7f08004f; + public static final int abc_primary_text_disable_only_material_light=0x7f080050; + public static final int abc_primary_text_material_dark=0x7f080051; + public static final int abc_primary_text_material_light=0x7f080052; + public static final int abc_search_url_text=0x7f080053; + public static final int abc_search_url_text_normal=0x7f080005; + public static final int abc_search_url_text_pressed=0x7f080006; + public static final int abc_search_url_text_selected=0x7f080007; + public static final int abc_secondary_text_material_dark=0x7f080054; + public static final int abc_secondary_text_material_light=0x7f080055; + public static final int accent=0x7f08004a; + public static final int accent_material_dark=0x7f080008; + public static final int accent_material_light=0x7f080009; + public static final int background_floating_material_dark=0x7f08000a; + public static final int background_floating_material_light=0x7f08000b; + public static final int background_material_dark=0x7f08000c; + public static final int background_material_light=0x7f08000d; + public static final int bright_foreground_disabled_material_dark=0x7f08000e; + public static final int bright_foreground_disabled_material_light=0x7f08000f; + public static final int bright_foreground_inverse_material_dark=0x7f080010; + public static final int bright_foreground_inverse_material_light=0x7f080011; + public static final int bright_foreground_material_dark=0x7f080012; + public static final int bright_foreground_material_light=0x7f080013; + public static final int button_material_dark=0x7f080014; + public static final int button_material_light=0x7f080015; + public static final int cardview_dark_background=0x7f080000; + public static final int cardview_light_background=0x7f080001; + public static final int cardview_shadow_end_color=0x7f080002; + public static final int cardview_shadow_start_color=0x7f080003; + public static final int design_fab_shadow_end_color=0x7f08003e; + public static final int design_fab_shadow_mid_color=0x7f08003f; + public static final int design_fab_shadow_start_color=0x7f080040; + public static final int design_fab_stroke_end_inner_color=0x7f080041; + public static final int design_fab_stroke_end_outer_color=0x7f080042; + public static final int design_fab_stroke_top_inner_color=0x7f080043; + public static final int design_fab_stroke_top_outer_color=0x7f080044; + public static final int design_snackbar_background_color=0x7f080045; + public static final int design_textinput_error_color_dark=0x7f080046; + public static final int design_textinput_error_color_light=0x7f080047; + public static final int dim_foreground_disabled_material_dark=0x7f080016; + public static final int dim_foreground_disabled_material_light=0x7f080017; + public static final int dim_foreground_material_dark=0x7f080018; + public static final int dim_foreground_material_light=0x7f080019; + public static final int foreground_material_dark=0x7f08001a; + public static final int foreground_material_light=0x7f08001b; + public static final int highlighted_text_material_dark=0x7f08001c; + public static final int highlighted_text_material_light=0x7f08001d; + public static final int hint_foreground_material_dark=0x7f08001e; + public static final int hint_foreground_material_light=0x7f08001f; + public static final int material_blue_grey_800=0x7f080020; + public static final int material_blue_grey_900=0x7f080021; + public static final int material_blue_grey_950=0x7f080022; + public static final int material_deep_teal_200=0x7f080023; + public static final int material_deep_teal_500=0x7f080024; + public static final int material_grey_100=0x7f080025; + public static final int material_grey_300=0x7f080026; + public static final int material_grey_50=0x7f080027; + public static final int material_grey_600=0x7f080028; + public static final int material_grey_800=0x7f080029; + public static final int material_grey_850=0x7f08002a; + public static final int material_grey_900=0x7f08002b; + public static final int primary=0x7f080048; + public static final int primaryDark=0x7f080049; + public static final int primary_dark_material_dark=0x7f08002c; + public static final int primary_dark_material_light=0x7f08002d; + public static final int primary_material_dark=0x7f08002e; + public static final int primary_material_light=0x7f08002f; + public static final int primary_text_default_material_dark=0x7f080030; + public static final int primary_text_default_material_light=0x7f080031; + public static final int primary_text_disabled_material_dark=0x7f080032; + public static final int primary_text_disabled_material_light=0x7f080033; + public static final int ripple_material_dark=0x7f080034; + public static final int ripple_material_light=0x7f080035; + public static final int secondary_text_default_material_dark=0x7f080036; + public static final int secondary_text_default_material_light=0x7f080037; + public static final int secondary_text_disabled_material_dark=0x7f080038; + public static final int secondary_text_disabled_material_light=0x7f080039; + public static final int switch_thumb_disabled_material_dark=0x7f08003a; + public static final int switch_thumb_disabled_material_light=0x7f08003b; + public static final int switch_thumb_material_dark=0x7f080056; + public static final int switch_thumb_material_light=0x7f080057; + public static final int switch_thumb_normal_material_dark=0x7f08003c; + public static final int switch_thumb_normal_material_light=0x7f08003d; + public static final int window_background=0x7f08004b; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f050013; + public static final int abc_action_bar_default_height_material=0x7f050007; + public static final int abc_action_bar_default_padding_end_material=0x7f050014; + public static final int abc_action_bar_default_padding_start_material=0x7f050015; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f050017; + public static final int abc_action_bar_overflow_padding_end_material=0x7f050018; + public static final int abc_action_bar_overflow_padding_start_material=0x7f050019; + public static final int abc_action_bar_progress_bar_size=0x7f050008; + public static final int abc_action_bar_stacked_max_height=0x7f05001a; + public static final int abc_action_bar_stacked_tab_max_width=0x7f05001b; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05001c; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f05001d; + public static final int abc_action_button_min_height_material=0x7f05001e; + public static final int abc_action_button_min_width_material=0x7f05001f; + public static final int abc_action_button_min_width_overflow_material=0x7f050020; + public static final int abc_alert_dialog_button_bar_height=0x7f050006; + public static final int abc_button_inset_horizontal_material=0x7f050021; + public static final int abc_button_inset_vertical_material=0x7f050022; + public static final int abc_button_padding_horizontal_material=0x7f050023; + public static final int abc_button_padding_vertical_material=0x7f050024; + public static final int abc_config_prefDialogWidth=0x7f05000b; + public static final int abc_control_corner_material=0x7f050025; + public static final int abc_control_inset_material=0x7f050026; + public static final int abc_control_padding_material=0x7f050027; + public static final int abc_dialog_fixed_height_major=0x7f05000c; + public static final int abc_dialog_fixed_height_minor=0x7f05000d; + public static final int abc_dialog_fixed_width_major=0x7f05000e; + public static final int abc_dialog_fixed_width_minor=0x7f05000f; + public static final int abc_dialog_list_padding_vertical_material=0x7f050028; + public static final int abc_dialog_min_width_major=0x7f050010; + public static final int abc_dialog_min_width_minor=0x7f050011; + public static final int abc_dialog_padding_material=0x7f050029; + public static final int abc_dialog_padding_top_material=0x7f05002a; + public static final int abc_disabled_alpha_material_dark=0x7f05002b; + public static final int abc_disabled_alpha_material_light=0x7f05002c; + public static final int abc_dropdownitem_icon_width=0x7f05002d; + public static final int abc_dropdownitem_text_padding_left=0x7f05002e; + public static final int abc_dropdownitem_text_padding_right=0x7f05002f; + public static final int abc_edit_text_inset_bottom_material=0x7f050030; + public static final int abc_edit_text_inset_horizontal_material=0x7f050031; + public static final int abc_edit_text_inset_top_material=0x7f050032; + public static final int abc_floating_window_z=0x7f050033; + public static final int abc_list_item_padding_horizontal_material=0x7f050034; + public static final int abc_panel_menu_list_width=0x7f050035; + public static final int abc_search_view_preferred_width=0x7f050036; + public static final int abc_search_view_text_min_width=0x7f050012; + public static final int abc_seekbar_track_background_height_material=0x7f050037; + public static final int abc_seekbar_track_progress_height_material=0x7f050038; + public static final int abc_select_dialog_padding_start_material=0x7f050039; + public static final int abc_switch_padding=0x7f050016; + public static final int abc_text_size_body_1_material=0x7f05003a; + public static final int abc_text_size_body_2_material=0x7f05003b; + public static final int abc_text_size_button_material=0x7f05003c; + public static final int abc_text_size_caption_material=0x7f05003d; + public static final int abc_text_size_display_1_material=0x7f05003e; + public static final int abc_text_size_display_2_material=0x7f05003f; + public static final int abc_text_size_display_3_material=0x7f050040; + public static final int abc_text_size_display_4_material=0x7f050041; + public static final int abc_text_size_headline_material=0x7f050042; + public static final int abc_text_size_large_material=0x7f050043; + public static final int abc_text_size_medium_material=0x7f050044; + public static final int abc_text_size_menu_material=0x7f050045; + public static final int abc_text_size_small_material=0x7f050046; + public static final int abc_text_size_subhead_material=0x7f050047; + public static final int abc_text_size_subtitle_material_toolbar=0x7f050009; + public static final int abc_text_size_title_material=0x7f050048; + public static final int abc_text_size_title_material_toolbar=0x7f05000a; + public static final int card_margin=0x7f050072; + public static final int cardview_compat_inset_shadow=0x7f050003; + public static final int cardview_default_elevation=0x7f050004; + public static final int cardview_default_radius=0x7f050005; + public static final int design_appbar_elevation=0x7f050059; + public static final int design_bottom_sheet_modal_elevation=0x7f05005a; + public static final int design_bottom_sheet_modal_peek_height=0x7f05005b; + public static final int design_fab_border_width=0x7f05005c; + public static final int design_fab_elevation=0x7f05005d; + public static final int design_fab_image_size=0x7f05005e; + public static final int design_fab_size_mini=0x7f05005f; + public static final int design_fab_size_normal=0x7f050060; + public static final int design_fab_translation_z_pressed=0x7f050061; + public static final int design_navigation_elevation=0x7f050062; + public static final int design_navigation_icon_padding=0x7f050063; + public static final int design_navigation_icon_size=0x7f050064; + public static final int design_navigation_max_width=0x7f050051; + public static final int design_navigation_padding_bottom=0x7f050065; + public static final int design_navigation_separator_vertical_padding=0x7f050066; + public static final int design_snackbar_action_inline_max_width=0x7f050052; + public static final int design_snackbar_background_corner_radius=0x7f050053; + public static final int design_snackbar_elevation=0x7f050067; + public static final int design_snackbar_extra_spacing_horizontal=0x7f050054; + public static final int design_snackbar_max_width=0x7f050055; + public static final int design_snackbar_min_width=0x7f050056; + public static final int design_snackbar_padding_horizontal=0x7f050068; + public static final int design_snackbar_padding_vertical=0x7f050069; + public static final int design_snackbar_padding_vertical_2lines=0x7f050057; + public static final int design_snackbar_text_size=0x7f05006a; + public static final int design_tab_max_width=0x7f05006b; + public static final int design_tab_scrollable_min_width=0x7f050058; + public static final int design_tab_text_size=0x7f05006c; + public static final int design_tab_text_size_2line=0x7f05006d; + public static final int disabled_alpha_material_dark=0x7f050049; + public static final int disabled_alpha_material_light=0x7f05004a; + public static final int fab_margin=0x7f050073; + public static final int highlight_alpha_material_colored=0x7f05004b; + public static final int highlight_alpha_material_dark=0x7f05004c; + public static final int highlight_alpha_material_light=0x7f05004d; + public static final int image_size=0x7f050071; + public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f050000; + public static final int item_touch_helper_swipe_escape_max_velocity=0x7f050001; + public static final int item_touch_helper_swipe_escape_velocity=0x7f050002; + public static final int notification_large_icon_height=0x7f05004e; + public static final int notification_large_icon_width=0x7f05004f; + public static final int notification_subtext_size=0x7f050050; + public static final int small_margin=0x7f05006f; + /** Default screen margins, per the Android Design guidelines. + */ + public static final int standard_margin=0x7f05006e; + public static final int tiny_margin=0x7f050070; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f020000; + public static final int abc_action_bar_item_background_material=0x7f020001; + public static final int abc_btn_borderless_material=0x7f020002; + public static final int abc_btn_check_material=0x7f020003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f020004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f020005; + public static final int abc_btn_colored_material=0x7f020006; + public static final int abc_btn_default_mtrl_shape=0x7f020007; + public static final int abc_btn_radio_material=0x7f020008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f020009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f02000a; + public static final int abc_btn_rating_star_off_mtrl_alpha=0x7f02000b; + public static final int abc_btn_rating_star_on_mtrl_alpha=0x7f02000c; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f02000d; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f02000e; + public static final int abc_cab_background_internal_bg=0x7f02000f; + public static final int abc_cab_background_top_material=0x7f020010; + public static final int abc_cab_background_top_mtrl_alpha=0x7f020011; + public static final int abc_control_background_material=0x7f020012; + public static final int abc_dialog_material_background_dark=0x7f020013; + public static final int abc_dialog_material_background_light=0x7f020014; + public static final int abc_edit_text_material=0x7f020015; + public static final int abc_ic_ab_back_mtrl_am_alpha=0x7f020016; + public static final int abc_ic_clear_mtrl_alpha=0x7f020017; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f020018; + public static final int abc_ic_go_search_api_mtrl_alpha=0x7f020019; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f02001a; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f02001b; + public static final int abc_ic_menu_moreoverflow_mtrl_alpha=0x7f02001c; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f02001d; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f02001e; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f02001f; + public static final int abc_ic_search_api_mtrl_alpha=0x7f020020; + public static final int abc_ic_star_black_16dp=0x7f020021; + public static final int abc_ic_star_black_36dp=0x7f020022; + public static final int abc_ic_star_half_black_16dp=0x7f020023; + public static final int abc_ic_star_half_black_36dp=0x7f020024; + public static final int abc_ic_voice_search_api_mtrl_alpha=0x7f020025; + public static final int abc_item_background_holo_dark=0x7f020026; + public static final int abc_item_background_holo_light=0x7f020027; + public static final int abc_list_divider_mtrl_alpha=0x7f020028; + public static final int abc_list_focused_holo=0x7f020029; + public static final int abc_list_longpressed_holo=0x7f02002a; + public static final int abc_list_pressed_holo_dark=0x7f02002b; + public static final int abc_list_pressed_holo_light=0x7f02002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f02002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f02002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f02002f; + public static final int abc_list_selector_disabled_holo_light=0x7f020030; + public static final int abc_list_selector_holo_dark=0x7f020031; + public static final int abc_list_selector_holo_light=0x7f020032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f020033; + public static final int abc_popup_background_mtrl_mult=0x7f020034; + public static final int abc_ratingbar_full_material=0x7f020035; + public static final int abc_ratingbar_indicator_material=0x7f020036; + public static final int abc_ratingbar_small_material=0x7f020037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f020038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f020039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f02003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f02003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f02003c; + public static final int abc_seekbar_thumb_material=0x7f02003d; + public static final int abc_seekbar_track_material=0x7f02003e; + public static final int abc_spinner_mtrl_am_alpha=0x7f02003f; + public static final int abc_spinner_textfield_background_material=0x7f020040; + public static final int abc_switch_thumb_material=0x7f020041; + public static final int abc_switch_track_mtrl_alpha=0x7f020042; + public static final int abc_tab_indicator_material=0x7f020043; + public static final int abc_tab_indicator_mtrl_alpha=0x7f020044; + public static final int abc_text_cursor_material=0x7f020045; + public static final int abc_textfield_activated_mtrl_alpha=0x7f020046; + public static final int abc_textfield_default_mtrl_alpha=0x7f020047; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f020048; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f020049; + public static final int abc_textfield_search_material=0x7f02004a; + public static final int background_splash=0x7f02004b; + public static final int circle_background=0x7f02004c; + public static final int design_fab_background=0x7f02004d; + public static final int design_snackbar_background=0x7f02004e; + public static final int heroplaceholder=0x7f02004f; + public static final int ic_save=0x7f020050; + public static final int notification_template_icon_bg=0x7f020053; + public static final int profile_generic=0x7f020051; + public static final int xamarin_logo=0x7f020052; + } + public static final class id { + public static final int action0=0x7f060076; + public static final int action_bar=0x7f06005a; + public static final int action_bar_activity_content=0x7f060001; + public static final int action_bar_container=0x7f060059; + public static final int action_bar_root=0x7f060055; + public static final int action_bar_spinner=0x7f060002; + public static final int action_bar_subtitle=0x7f06003b; + public static final int action_bar_title=0x7f06003a; + public static final int action_context_bar=0x7f06005b; + public static final int action_divider=0x7f06007a; + public static final int action_menu_divider=0x7f060003; + public static final int action_menu_presenter=0x7f060004; + public static final int action_mode_bar=0x7f060057; + public static final int action_mode_bar_stub=0x7f060056; + public static final int action_mode_close_button=0x7f06003c; + public static final int activity_chooser_view_content=0x7f06003d; + public static final int alertTitle=0x7f060049; + public static final int always=0x7f06001e; + public static final int appbar=0x7f06006a; + public static final int beginning=0x7f06001b; + public static final int bottom=0x7f06002a; + public static final int buttonPanel=0x7f060044; + public static final int cancel_action=0x7f060077; + public static final int center=0x7f06002b; + public static final int center_horizontal=0x7f06002c; + public static final int center_vertical=0x7f06002d; + public static final int checkbox=0x7f060052; + public static final int chronometer=0x7f06007d; + public static final int clip_horizontal=0x7f060033; + public static final int clip_vertical=0x7f060034; + public static final int collapseActionView=0x7f06001f; + public static final int contentPanel=0x7f06004a; + public static final int custom=0x7f060050; + public static final int customPanel=0x7f06004f; + public static final int decor_content_parent=0x7f060058; + public static final int default_activity_button=0x7f060040; + public static final int design_bottom_sheet=0x7f06006e; + public static final int design_menu_item_action_area=0x7f060075; + public static final int design_menu_item_action_area_stub=0x7f060074; + public static final int design_menu_item_text=0x7f060073; + public static final int design_navigation_view=0x7f060072; + public static final int disableHome=0x7f06000e; + public static final int edit_query=0x7f06005c; + public static final int end=0x7f06001c; + public static final int end_padder=0x7f060082; + public static final int enterAlways=0x7f060023; + public static final int enterAlwaysCollapsed=0x7f060024; + public static final int exitUntilCollapsed=0x7f060025; + public static final int expand_activities_button=0x7f06003e; + public static final int expanded_menu=0x7f060051; + public static final int fill=0x7f060035; + public static final int fill_horizontal=0x7f060036; + public static final int fill_vertical=0x7f06002e; + public static final int fixed=0x7f060038; + public static final int home=0x7f060005; + public static final int homeAsUp=0x7f06000f; + public static final int icon=0x7f060042; + public static final int ifRoom=0x7f060020; + public static final int image=0x7f06003f; + public static final int info=0x7f060081; + public static final int item_touch_helper_previous_elevation=0x7f060000; + public static final int left=0x7f06002f; + public static final int line1=0x7f06007b; + public static final int line3=0x7f06007f; + public static final int listMode=0x7f06000b; + public static final int list_item=0x7f060041; + public static final int main_content=0x7f060069; + public static final int media_actions=0x7f060079; + public static final int menu_edit=0x7f060083; + public static final int middle=0x7f06001d; + public static final int mini=0x7f060037; + public static final int multiply=0x7f060016; + public static final int navigation_header_container=0x7f060071; + public static final int never=0x7f060021; + public static final int none=0x7f060010; + public static final int normal=0x7f06000c; + public static final int parallax=0x7f060028; + public static final int parentPanel=0x7f060046; + public static final int pin=0x7f060029; + public static final int progress_circular=0x7f060006; + public static final int progress_horizontal=0x7f060007; + public static final int radio=0x7f060054; + public static final int right=0x7f060030; + public static final int screen=0x7f060017; + public static final int scroll=0x7f060026; + public static final int scrollIndicatorDown=0x7f06004e; + public static final int scrollIndicatorUp=0x7f06004b; + public static final int scrollView=0x7f06004c; + public static final int scrollable=0x7f060039; + public static final int search_badge=0x7f06005e; + public static final int search_bar=0x7f06005d; + public static final int search_button=0x7f06005f; + public static final int search_close_btn=0x7f060064; + public static final int search_edit_frame=0x7f060060; + public static final int search_go_btn=0x7f060066; + public static final int search_mag_icon=0x7f060061; + public static final int search_plate=0x7f060062; + public static final int search_src_text=0x7f060063; + public static final int search_voice_btn=0x7f060067; + public static final int select_dialog_listview=0x7f060068; + public static final int shortcut=0x7f060053; + public static final int showCustom=0x7f060011; + public static final int showHome=0x7f060012; + public static final int showTitle=0x7f060013; + public static final int snackbar_action=0x7f060070; + public static final int snackbar_text=0x7f06006f; + public static final int snap=0x7f060027; + public static final int spacer=0x7f060045; + public static final int split_action_bar=0x7f060008; + public static final int src_atop=0x7f060018; + public static final int src_in=0x7f060019; + public static final int src_over=0x7f06001a; + public static final int start=0x7f060031; + public static final int status_bar_latest_event_content=0x7f060078; + public static final int submit_area=0x7f060065; + public static final int tabMode=0x7f06000d; + public static final int text=0x7f060080; + public static final int text2=0x7f06007e; + public static final int textSpacerNoButtons=0x7f06004d; + public static final int time=0x7f06007c; + public static final int title=0x7f060043; + public static final int title_template=0x7f060048; + public static final int toolbar=0x7f06006b; + public static final int top=0x7f060032; + public static final int topPanel=0x7f060047; + public static final int touch_outside=0x7f06006d; + public static final int up=0x7f060009; + public static final int useLogo=0x7f060014; + public static final int view_offset_helper=0x7f06000a; + public static final int viewpager=0x7f06006c; + public static final int withText=0x7f060022; + public static final int wrap_content=0x7f060015; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f0b0001; + public static final int abc_config_activityShortDur=0x7f0b0002; + public static final int abc_max_action_buttons=0x7f0b0000; + public static final int bottom_sheet_slide_duration=0x7f0b0006; + public static final int cancel_button_image_alpha=0x7f0b0003; + public static final int design_snackbar_text_max_lines=0x7f0b0005; + public static final int status_bar_notification_info_maxnum=0x7f0b0004; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f030000; + public static final int abc_action_bar_up_container=0x7f030001; + public static final int abc_action_bar_view_list_nav_layout=0x7f030002; + public static final int abc_action_menu_item_layout=0x7f030003; + public static final int abc_action_menu_layout=0x7f030004; + public static final int abc_action_mode_bar=0x7f030005; + public static final int abc_action_mode_close_item_material=0x7f030006; + public static final int abc_activity_chooser_view=0x7f030007; + public static final int abc_activity_chooser_view_list_item=0x7f030008; + public static final int abc_alert_dialog_button_bar_material=0x7f030009; + public static final int abc_alert_dialog_material=0x7f03000a; + public static final int abc_dialog_title_material=0x7f03000b; + public static final int abc_expanded_menu_layout=0x7f03000c; + public static final int abc_list_menu_item_checkbox=0x7f03000d; + public static final int abc_list_menu_item_icon=0x7f03000e; + public static final int abc_list_menu_item_layout=0x7f03000f; + public static final int abc_list_menu_item_radio=0x7f030010; + public static final int abc_popup_menu_item_layout=0x7f030011; + public static final int abc_screen_content_include=0x7f030012; + public static final int abc_screen_simple=0x7f030013; + public static final int abc_screen_simple_overlay_action_mode=0x7f030014; + public static final int abc_screen_toolbar=0x7f030015; + public static final int abc_search_dropdown_item_icons_2line=0x7f030016; + public static final int abc_search_view=0x7f030017; + public static final int abc_select_dialog_material=0x7f030018; + public static final int activity_main=0x7f030019; + public static final int design_bottom_sheet_dialog=0x7f03001a; + public static final int design_layout_snackbar=0x7f03001b; + public static final int design_layout_snackbar_include=0x7f03001c; + public static final int design_layout_tab_icon=0x7f03001d; + public static final int design_layout_tab_text=0x7f03001e; + public static final int design_menu_item_action_area=0x7f03001f; + public static final int design_navigation_item=0x7f030020; + public static final int design_navigation_item_header=0x7f030021; + public static final int design_navigation_item_separator=0x7f030022; + public static final int design_navigation_item_subheader=0x7f030023; + public static final int design_navigation_menu=0x7f030024; + public static final int design_navigation_menu_item=0x7f030025; + public static final int notification_media_action=0x7f030026; + public static final int notification_media_cancel_action=0x7f030027; + public static final int notification_template_big_media=0x7f030028; + public static final int notification_template_big_media_narrow=0x7f030029; + public static final int notification_template_lines=0x7f03002a; + public static final int notification_template_media=0x7f03002b; + public static final int notification_template_part_chronometer=0x7f03002c; + public static final int notification_template_part_time=0x7f03002d; + public static final int select_dialog_item_material=0x7f03002e; + public static final int select_dialog_multichoice_material=0x7f03002f; + public static final int select_dialog_singlechoice_material=0x7f030030; + public static final int support_simple_spinner_dropdown_item=0x7f030031; + } + public static final class menu { + public static final int top_menus=0x7f0d0000; + } + public static final class string { + public static final int abc_action_bar_home_description=0x7f090000; + public static final int abc_action_bar_home_description_format=0x7f090001; + public static final int abc_action_bar_home_subtitle_description_format=0x7f090002; + public static final int abc_action_bar_up_description=0x7f090003; + public static final int abc_action_menu_overflow_description=0x7f090004; + public static final int abc_action_mode_done=0x7f090005; + public static final int abc_activity_chooser_view_see_all=0x7f090006; + public static final int abc_activitychooserview_choose_application=0x7f090007; + public static final int abc_capital_off=0x7f090008; + public static final int abc_capital_on=0x7f090009; + public static final int abc_search_hint=0x7f09000a; + public static final int abc_searchview_description_clear=0x7f09000b; + public static final int abc_searchview_description_query=0x7f09000c; + public static final int abc_searchview_description_search=0x7f09000d; + public static final int abc_searchview_description_submit=0x7f09000e; + public static final int abc_searchview_description_voice=0x7f09000f; + public static final int abc_shareactionprovider_share_with=0x7f090010; + public static final int abc_shareactionprovider_share_with_application=0x7f090011; + public static final int abc_toolbar_collapse_description=0x7f090012; + public static final int app_description=0x7f090028; + public static final int app_name=0x7f090018; + public static final int appbar_scrolling_view_behavior=0x7f090014; + public static final int bottom_sheet_behavior=0x7f090015; + public static final int character_counter_pattern=0x7f090016; + public static final int description=0x7f090021; + public static final int hello=0x7f090017; + public static final int hint_description=0x7f090027; + public static final int hint_name=0x7f090025; + public static final int info=0x7f090026; + public static final int learn_more=0x7f090020; + public static final int login=0x7f09001f; + public static final int notnow=0x7f09001c; + public static final int quantity=0x7f090024; + public static final int sign_in_text=0x7f090029; + public static final int signin=0x7f09001b; + public static final int signing_in=0x7f09001d; + public static final int status_bar_notification_info_overflow=0x7f090013; + public static final int tab1=0x7f090019; + public static final int tab2=0x7f09001a; + public static final int text=0x7f090023; + public static final int title=0x7f090022; + public static final int version_number=0x7f09001e; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f07008a; + public static final int AlertDialog_AppCompat_Light=0x7f07008b; + public static final int Animation_AppCompat_Dialog=0x7f07008c; + public static final int Animation_AppCompat_DropDownUp=0x7f07008d; + public static final int Animation_Design_BottomSheetDialog=0x7f070143; + public static final int Base_AlertDialog_AppCompat=0x7f07008e; + public static final int Base_AlertDialog_AppCompat_Light=0x7f07008f; + public static final int Base_Animation_AppCompat_Dialog=0x7f070090; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f070091; + public static final int Base_CardView=0x7f070001; + public static final int Base_DialogWindowTitle_AppCompat=0x7f070092; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f070093; + public static final int Base_TextAppearance_AppCompat=0x7f07003a; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f07003b; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f07003c; + public static final int Base_TextAppearance_AppCompat_Button=0x7f070024; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f07003d; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f07003e; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f07003f; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f070040; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f070041; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f070042; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f07000f; + public static final int Base_TextAppearance_AppCompat_Large=0x7f070043; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f070010; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f070044; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f070045; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f070046; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f070011; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f070047; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f070094; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f070048; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f070049; + public static final int Base_TextAppearance_AppCompat_Small=0x7f07004a; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f070012; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f07004b; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f070013; + public static final int Base_TextAppearance_AppCompat_Title=0x7f07004c; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f070014; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f070083; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f07004d; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f07004e; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f07004f; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f070050; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f070051; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f070052; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f070053; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f070084; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f070095; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f070054; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f070055; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f070056; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f070057; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f070096; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f070058; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f070059; + public static final int Base_Theme_AppCompat=0x7f07005a; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f070097; + public static final int Base_Theme_AppCompat_Dialog=0x7f070015; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f070098; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f070099; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f07009a; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f070005; + public static final int Base_Theme_AppCompat_Light=0x7f07005b; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f07009b; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f070016; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f07009c; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f07009d; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f07009e; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f070006; + public static final int Base_ThemeOverlay_AppCompat=0x7f07009f; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0700a0; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0700a1; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700a2; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0700a3; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f070017; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f070018; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f070020; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f070021; + public static final int Base_V21_Theme_AppCompat=0x7f07005c; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f07005d; + public static final int Base_V21_Theme_AppCompat_Light=0x7f07005e; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f07005f; + public static final int Base_V22_Theme_AppCompat=0x7f070081; + public static final int Base_V22_Theme_AppCompat_Light=0x7f070082; + public static final int Base_V23_Theme_AppCompat=0x7f070085; + public static final int Base_V23_Theme_AppCompat_Light=0x7f070086; + public static final int Base_V7_Theme_AppCompat=0x7f0700a4; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0700a5; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0700a6; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0700a7; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0700a8; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0700a9; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0700aa; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0700ab; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0700ac; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f070060; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f070061; + public static final int Base_Widget_AppCompat_ActionButton=0x7f070062; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f070063; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f070064; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0700ad; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0700ae; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f070022; + public static final int Base_Widget_AppCompat_Button=0x7f070065; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f070066; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f070067; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0700af; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f070087; + public static final int Base_Widget_AppCompat_Button_Small=0x7f070068; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f070069; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0700b0; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f07006a; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f07006b; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0700b1; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f070004; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0700b2; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f07006c; + public static final int Base_Widget_AppCompat_EditText=0x7f070023; + public static final int Base_Widget_AppCompat_ImageButton=0x7f07006d; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0700b3; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0700b4; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0700b5; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f07006e; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07006f; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f070070; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f070071; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070072; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f070073; + public static final int Base_Widget_AppCompat_ListView=0x7f070074; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f070075; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f070076; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f070077; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f070078; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0700b6; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f070019; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f07001a; + public static final int Base_Widget_AppCompat_RatingBar=0x7f070079; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f070088; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f070089; + public static final int Base_Widget_AppCompat_SearchView=0x7f0700b7; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0700b8; + public static final int Base_Widget_AppCompat_SeekBar=0x7f07007a; + public static final int Base_Widget_AppCompat_Spinner=0x7f07007b; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f070007; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f07007c; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0700b9; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f07007d; + public static final int Base_Widget_Design_TabLayout=0x7f070144; + public static final int CardView=0x7f070000; + public static final int CardView_Dark=0x7f070002; + public static final int CardView_Light=0x7f070003; + /** If you are using MasterDetailPage you will want to set these, else you can leave them out + true + @android:color/transparent + */ + public static final int MasterDetailTheme=0x7f07015b; + public static final int MasterDetailTheme_Base=0x7f07015c; + public static final int Platform_AppCompat=0x7f07001b; + public static final int Platform_AppCompat_Light=0x7f07001c; + public static final int Platform_ThemeOverlay_AppCompat=0x7f07007e; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f07007f; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f070080; + public static final int Platform_V11_AppCompat=0x7f07001d; + public static final int Platform_V11_AppCompat_Light=0x7f07001e; + public static final int Platform_V14_AppCompat=0x7f070025; + public static final int Platform_V14_AppCompat_Light=0x7f070026; + public static final int Platform_Widget_AppCompat_Spinner=0x7f07001f; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f07002c; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f07002d; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f07002e; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f07002f; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f070030; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f070031; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f070032; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f070033; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f070034; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f070035; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f070036; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f070037; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f070038; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f070039; + public static final int SplashTheme=0x7f07015d; + public static final int SplashTheme_Base=0x7f07015e; + public static final int TextAppearance_AppCompat=0x7f0700ba; + public static final int TextAppearance_AppCompat_Body1=0x7f0700bb; + public static final int TextAppearance_AppCompat_Body2=0x7f0700bc; + public static final int TextAppearance_AppCompat_Button=0x7f0700bd; + public static final int TextAppearance_AppCompat_Caption=0x7f0700be; + public static final int TextAppearance_AppCompat_Display1=0x7f0700bf; + public static final int TextAppearance_AppCompat_Display2=0x7f0700c0; + public static final int TextAppearance_AppCompat_Display3=0x7f0700c1; + public static final int TextAppearance_AppCompat_Display4=0x7f0700c2; + public static final int TextAppearance_AppCompat_Headline=0x7f0700c3; + public static final int TextAppearance_AppCompat_Inverse=0x7f0700c4; + public static final int TextAppearance_AppCompat_Large=0x7f0700c5; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0700c6; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0700c7; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0700c8; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0700c9; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0700ca; + public static final int TextAppearance_AppCompat_Medium=0x7f0700cb; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0700cc; + public static final int TextAppearance_AppCompat_Menu=0x7f0700cd; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0700ce; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0700cf; + public static final int TextAppearance_AppCompat_Small=0x7f0700d0; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0700d1; + public static final int TextAppearance_AppCompat_Subhead=0x7f0700d2; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0700d3; + public static final int TextAppearance_AppCompat_Title=0x7f0700d4; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0700d5; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0700d6; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0700d7; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0700d8; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0700d9; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0700da; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0700db; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0700dc; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0700dd; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0700de; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0700df; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0700e0; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0700e1; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0700e2; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0700e3; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0700e4; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0700e5; + public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f070145; + public static final int TextAppearance_Design_Counter=0x7f070146; + public static final int TextAppearance_Design_Counter_Overflow=0x7f070147; + public static final int TextAppearance_Design_Error=0x7f070148; + public static final int TextAppearance_Design_Hint=0x7f070149; + public static final int TextAppearance_Design_Snackbar_Message=0x7f07014a; + public static final int TextAppearance_Design_Tab=0x7f07014b; + public static final int TextAppearance_StatusBar_EventContent=0x7f070027; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f070028; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f070029; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f07002a; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f07002b; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0700e6; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0700e7; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0700e8; + public static final int Theme_AppCompat=0x7f0700e9; + public static final int Theme_AppCompat_CompactMenu=0x7f0700ea; + public static final int Theme_AppCompat_DayNight=0x7f070008; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f070009; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f07000a; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f07000b; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f07000c; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f07000d; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f07000e; + public static final int Theme_AppCompat_Dialog=0x7f0700eb; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0700ec; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0700ed; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0700ee; + public static final int Theme_AppCompat_Light=0x7f0700ef; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0700f0; + public static final int Theme_AppCompat_Light_Dialog=0x7f0700f1; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0700f2; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0700f3; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0700f4; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0700f5; + public static final int Theme_AppCompat_NoActionBar=0x7f0700f6; + public static final int Theme_Design=0x7f07014c; + public static final int Theme_Design_BottomSheetDialog=0x7f07014d; + public static final int Theme_Design_Light=0x7f07014e; + public static final int Theme_Design_Light_BottomSheetDialog=0x7f07014f; + public static final int Theme_Design_Light_NoActionBar=0x7f070150; + public static final int Theme_Design_NoActionBar=0x7f070151; + public static final int ThemeOverlay_AppCompat=0x7f0700f7; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0700f8; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0700f9; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0700fa; + public static final int ThemeOverlay_AppCompat_Light=0x7f0700fb; + public static final int Widget_AppCompat_ActionBar=0x7f0700fc; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0700fd; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0700fe; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0700ff; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f070100; + public static final int Widget_AppCompat_ActionButton=0x7f070101; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f070102; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f070103; + public static final int Widget_AppCompat_ActionMode=0x7f070104; + public static final int Widget_AppCompat_ActivityChooserView=0x7f070105; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f070106; + public static final int Widget_AppCompat_Button=0x7f070107; + public static final int Widget_AppCompat_Button_Borderless=0x7f070108; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f070109; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f07010a; + public static final int Widget_AppCompat_Button_Colored=0x7f07010b; + public static final int Widget_AppCompat_Button_Small=0x7f07010c; + public static final int Widget_AppCompat_ButtonBar=0x7f07010d; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f07010e; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f07010f; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f070110; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f070111; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f070112; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f070113; + public static final int Widget_AppCompat_EditText=0x7f070114; + public static final int Widget_AppCompat_ImageButton=0x7f070115; + public static final int Widget_AppCompat_Light_ActionBar=0x7f070116; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f070117; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f070118; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f070119; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f07011a; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f07011b; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f07011c; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f07011d; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f07011e; + public static final int Widget_AppCompat_Light_ActionButton=0x7f07011f; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f070120; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f070121; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f070122; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f070123; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f070124; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f070125; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f070126; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f070127; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f070128; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f070129; + public static final int Widget_AppCompat_Light_SearchView=0x7f07012a; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f07012b; + public static final int Widget_AppCompat_ListPopupWindow=0x7f07012c; + public static final int Widget_AppCompat_ListView=0x7f07012d; + public static final int Widget_AppCompat_ListView_DropDown=0x7f07012e; + public static final int Widget_AppCompat_ListView_Menu=0x7f07012f; + public static final int Widget_AppCompat_PopupMenu=0x7f070130; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f070131; + public static final int Widget_AppCompat_PopupWindow=0x7f070132; + public static final int Widget_AppCompat_ProgressBar=0x7f070133; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f070134; + public static final int Widget_AppCompat_RatingBar=0x7f070135; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f070136; + public static final int Widget_AppCompat_RatingBar_Small=0x7f070137; + public static final int Widget_AppCompat_SearchView=0x7f070138; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f070139; + public static final int Widget_AppCompat_SeekBar=0x7f07013a; + public static final int Widget_AppCompat_Spinner=0x7f07013b; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f07013c; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f07013d; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f07013e; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f07013f; + public static final int Widget_AppCompat_Toolbar=0x7f070140; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f070141; + public static final int Widget_CardContent=0x7f070160; + public static final int Widget_Design_AppBarLayout=0x7f070152; + public static final int Widget_Design_BottomSheet_Modal=0x7f070153; + public static final int Widget_Design_CollapsingToolbar=0x7f070154; + public static final int Widget_Design_CoordinatorLayout=0x7f070155; + public static final int Widget_Design_FloatingActionButton=0x7f070156; + public static final int Widget_Design_NavigationView=0x7f070157; + public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f070158; + public static final int Widget_Design_Snackbar=0x7f070159; + public static final int Widget_Design_TabLayout=0x7f070142; + public static final int Widget_Design_TextInputLayout=0x7f07015a; + public static final int button_primary=0x7f07015f; + } + public static final class styleable { + /** Attributes that can be used with a ActionBar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #ActionBar_background com.companyname.Support:background}
{@link #ActionBar_backgroundSplit com.companyname.Support:backgroundSplit}
{@link #ActionBar_backgroundStacked com.companyname.Support:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.companyname.Support:contentInsetEnd}
{@link #ActionBar_contentInsetLeft com.companyname.Support:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.companyname.Support:contentInsetRight}
{@link #ActionBar_contentInsetStart com.companyname.Support:contentInsetStart}
{@link #ActionBar_customNavigationLayout com.companyname.Support:customNavigationLayout}
{@link #ActionBar_displayOptions com.companyname.Support:displayOptions}
{@link #ActionBar_divider com.companyname.Support:divider}
{@link #ActionBar_elevation com.companyname.Support:elevation}
{@link #ActionBar_height com.companyname.Support:height}
{@link #ActionBar_hideOnContentScroll com.companyname.Support:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.companyname.Support:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.companyname.Support:homeLayout}
{@link #ActionBar_icon com.companyname.Support:icon}
{@link #ActionBar_indeterminateProgressStyle com.companyname.Support:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.companyname.Support:itemPadding}
{@link #ActionBar_logo com.companyname.Support:logo}
{@link #ActionBar_navigationMode com.companyname.Support:navigationMode}
{@link #ActionBar_popupTheme com.companyname.Support:popupTheme}
{@link #ActionBar_progressBarPadding com.companyname.Support:progressBarPadding}
{@link #ActionBar_progressBarStyle com.companyname.Support:progressBarStyle}
{@link #ActionBar_subtitle com.companyname.Support:subtitle}
{@link #ActionBar_subtitleTextStyle com.companyname.Support:subtitleTextStyle}
{@link #ActionBar_title com.companyname.Support:title}
{@link #ActionBar_titleTextStyle com.companyname.Support:titleTextStyle}
+ @see #ActionBar_background + @see #ActionBar_backgroundSplit + @see #ActionBar_backgroundStacked + @see #ActionBar_contentInsetEnd + @see #ActionBar_contentInsetLeft + @see #ActionBar_contentInsetRight + @see #ActionBar_contentInsetStart + @see #ActionBar_customNavigationLayout + @see #ActionBar_displayOptions + @see #ActionBar_divider + @see #ActionBar_elevation + @see #ActionBar_height + @see #ActionBar_hideOnContentScroll + @see #ActionBar_homeAsUpIndicator + @see #ActionBar_homeLayout + @see #ActionBar_icon + @see #ActionBar_indeterminateProgressStyle + @see #ActionBar_itemPadding + @see #ActionBar_logo + @see #ActionBar_navigationMode + @see #ActionBar_popupTheme + @see #ActionBar_progressBarPadding + @see #ActionBar_progressBarStyle + @see #ActionBar_subtitle + @see #ActionBar_subtitleTextStyle + @see #ActionBar_title + @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar = { + 0x7f010010, 0x7f010012, 0x7f010013, 0x7f010014, + 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, + 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f01001c, + 0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020, + 0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024, + 0x7f010025, 0x7f010026, 0x7f010027, 0x7f010028, + 0x7f010029, 0x7f01002a, 0x7f010063 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#background} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:background + */ + public static final int ActionBar_background = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:backgroundSplit + */ + public static final int ActionBar_backgroundSplit = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundStacked} + attribute's value can be found in the {@link #ActionBar} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:backgroundStacked + */ + public static final int ActionBar_backgroundStacked = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd = 21; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft = 22; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetRight} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetRight + */ + public static final int ActionBar_contentInsetRight = 23; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetStart} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetStart + */ + public static final int ActionBar_contentInsetStart = 20; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#customNavigationLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#displayOptions} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + +
ConstantValueDescription
none0
useLogo0x1
showHome0x2
homeAsUp0x4
showTitle0x8
showCustom0x10
disableHome0x20
+ @attr name com.companyname.Support:displayOptions + */ + public static final int ActionBar_displayOptions = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#divider} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:divider + */ + public static final int ActionBar_divider = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int ActionBar_elevation = 24; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#height} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:height + */ + public static final int ActionBar_height = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hideOnContentScroll} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll = 19; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator = 26; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#homeLayout} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:homeLayout + */ + public static final int ActionBar_homeLayout = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#icon} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:icon + */ + public static final int ActionBar_icon = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#indeterminateProgressStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:itemPadding + */ + public static final int ActionBar_itemPadding = 18; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#logo} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:logo + */ + public static final int ActionBar_logo = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#navigationMode} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
normal0
listMode1
tabMode2
+ @attr name com.companyname.Support:navigationMode + */ + public static final int ActionBar_navigationMode = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupTheme} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupTheme + */ + public static final int ActionBar_popupTheme = 25; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#progressBarPadding} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:progressBarPadding + */ + public static final int ActionBar_progressBarPadding = 17; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#progressBarStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:progressBarStyle + */ + public static final int ActionBar_progressBarStyle = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:subtitle + */ + public static final int ActionBar_subtitle = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#title} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:title + */ + public static final int ActionBar_title = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionBar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:titleTextStyle + */ + public static final int ActionBar_titleTextStyle = 5; + /** Attributes that can be used with a ActionBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout = { + 0x010100b3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #ActionBarLayout} array. + @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity = 0; + /** Attributes that can be used with a ActionMenuItemView. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView = { + 0x0101013f + }; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #ActionMenuItemView} array. + @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth = 0; + /** Attributes that can be used with a ActionMenuView. + */ + public static final int[] ActionMenuView = { + + }; + /** Attributes that can be used with a ActionMode. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #ActionMode_background com.companyname.Support:background}
{@link #ActionMode_backgroundSplit com.companyname.Support:backgroundSplit}
{@link #ActionMode_closeItemLayout com.companyname.Support:closeItemLayout}
{@link #ActionMode_height com.companyname.Support:height}
{@link #ActionMode_subtitleTextStyle com.companyname.Support:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.companyname.Support:titleTextStyle}
+ @see #ActionMode_background + @see #ActionMode_backgroundSplit + @see #ActionMode_closeItemLayout + @see #ActionMode_height + @see #ActionMode_subtitleTextStyle + @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode = { + 0x7f010010, 0x7f010016, 0x7f010017, 0x7f01001b, + 0x7f01001d, 0x7f01002b + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#background} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:background + */ + public static final int ActionMode_background = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundSplit} + attribute's value can be found in the {@link #ActionMode} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:backgroundSplit + */ + public static final int ActionMode_backgroundSplit = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#closeItemLayout} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:closeItemLayout + */ + public static final int ActionMode_closeItemLayout = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#height} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:height + */ + public static final int ActionMode_height = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextStyle} + attribute's value can be found in the {@link #ActionMode} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:titleTextStyle + */ + public static final int ActionMode_titleTextStyle = 1; + /** Attributes that can be used with a ActivityChooserView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.companyname.Support:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.companyname.Support:initialActivityCount}
+ @see #ActivityChooserView_expandActivityOverflowButtonDrawable + @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView = { + 0x7f01002c, 0x7f01002d + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandActivityOverflowButtonDrawable} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#initialActivityCount} + attribute's value can be found in the {@link #ActivityChooserView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount = 0; + /** Attributes that can be used with a AlertDialog. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.companyname.Support:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.companyname.Support:listItemLayout}
{@link #AlertDialog_listLayout com.companyname.Support:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.companyname.Support:multiChoiceItemLayout}
{@link #AlertDialog_singleChoiceItemLayout com.companyname.Support:singleChoiceItemLayout}
+ @see #AlertDialog_android_layout + @see #AlertDialog_buttonPanelSideLayout + @see #AlertDialog_listItemLayout + @see #AlertDialog_listLayout + @see #AlertDialog_multiChoiceItemLayout + @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog = { + 0x010100f2, 0x7f01002e, 0x7f01002f, 0x7f010030, + 0x7f010031, 0x7f010032 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #AlertDialog} array. + @attr name android:layout + */ + public static final int AlertDialog_android_layout = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonPanelSideLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listItemLayout + */ + public static final int AlertDialog_listItemLayout = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listLayout + */ + public static final int AlertDialog_listLayout = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#multiChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#singleChoiceItemLayout} + attribute's value can be found in the {@link #AlertDialog} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout = 4; + /** Attributes that can be used with a AppBarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #AppBarLayout_android_background android:background}
{@link #AppBarLayout_elevation com.companyname.Support:elevation}
{@link #AppBarLayout_expanded com.companyname.Support:expanded}
+ @see #AppBarLayout_android_background + @see #AppBarLayout_elevation + @see #AppBarLayout_expanded + */ + public static final int[] AppBarLayout = { + 0x010100d4, 0x7f010029, 0x7f0100e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #AppBarLayout} array. + @attr name android:background + */ + public static final int AppBarLayout_android_background = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int AppBarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expanded} + attribute's value can be found in the {@link #AppBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expanded + */ + public static final int AppBarLayout_expanded = 2; + /** Attributes that can be used with a AppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppBarLayout_LayoutParams_layout_scrollFlags com.companyname.Support:layout_scrollFlags}
{@link #AppBarLayout_LayoutParams_layout_scrollInterpolator com.companyname.Support:layout_scrollInterpolator}
+ @see #AppBarLayout_LayoutParams_layout_scrollFlags + @see #AppBarLayout_LayoutParams_layout_scrollInterpolator + */ + public static final int[] AppBarLayout_LayoutParams = { + 0x7f0100e1, 0x7f0100e2 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_scrollFlags} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
scroll0x1
exitUntilCollapsed0x2
enterAlways0x4
enterAlwaysCollapsed0x8
snap0x10
+ @attr name com.companyname.Support:layout_scrollFlags + */ + public static final int AppBarLayout_LayoutParams_layout_scrollFlags = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_scrollInterpolator} + attribute's value can be found in the {@link #AppBarLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:layout_scrollInterpolator + */ + public static final int AppBarLayout_LayoutParams_layout_scrollInterpolator = 1; + /** Attributes that can be used with a AppCompatImageView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.companyname.Support:srcCompat}
+ @see #AppCompatImageView_android_src + @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView = { + 0x01010119, 0x7f010033 + }; + /** +

This symbol is the offset where the {@link android.R.attr#src} + attribute's value can be found in the {@link #AppCompatImageView} array. + @attr name android:src + */ + public static final int AppCompatImageView_android_src = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#srcCompat} + attribute's value can be found in the {@link #AppCompatImageView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:srcCompat + */ + public static final int AppCompatImageView_srcCompat = 1; + /** Attributes that can be used with a AppCompatTextView. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.companyname.Support:textAllCaps}
+ @see #AppCompatTextView_android_textAppearance + @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView = { + 0x01010034, 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#textAppearance} + attribute's value can be found in the {@link #AppCompatTextView} array. + @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAllCaps} + attribute's value can be found in the {@link #AppCompatTextView} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name com.companyname.Support:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps = 1; + /** Attributes that can be used with a AppCompatTheme. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #AppCompatTheme_actionBarDivider com.companyname.Support:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.companyname.Support:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.companyname.Support:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.companyname.Support:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.companyname.Support:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.companyname.Support:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.companyname.Support:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.companyname.Support:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.companyname.Support:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.companyname.Support:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.companyname.Support:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.companyname.Support:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.companyname.Support:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.companyname.Support:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.companyname.Support:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.companyname.Support:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.companyname.Support:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.companyname.Support:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.companyname.Support:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.companyname.Support:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.companyname.Support:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.companyname.Support:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.companyname.Support:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.companyname.Support:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.companyname.Support:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.companyname.Support:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.companyname.Support:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.companyname.Support:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.companyname.Support:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.companyname.Support:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.companyname.Support:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.companyname.Support:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.companyname.Support:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.companyname.Support:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.companyname.Support:alertDialogTheme}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.companyname.Support:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.companyname.Support:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.companyname.Support:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.companyname.Support:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.companyname.Support:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.companyname.Support:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.companyname.Support:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.companyname.Support:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.companyname.Support:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.companyname.Support:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.companyname.Support:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.companyname.Support:colorAccent}
{@link #AppCompatTheme_colorButtonNormal com.companyname.Support:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.companyname.Support:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.companyname.Support:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.companyname.Support:colorControlNormal}
{@link #AppCompatTheme_colorPrimary com.companyname.Support:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.companyname.Support:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.companyname.Support:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.companyname.Support:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.companyname.Support:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.companyname.Support:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.companyname.Support:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.companyname.Support:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.companyname.Support:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.companyname.Support:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.companyname.Support:editTextBackground}
{@link #AppCompatTheme_editTextColor com.companyname.Support:editTextColor}
{@link #AppCompatTheme_editTextStyle com.companyname.Support:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.companyname.Support:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.companyname.Support:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.companyname.Support:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.companyname.Support:listDividerAlertDialog}
{@link #AppCompatTheme_listPopupWindowStyle com.companyname.Support:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.companyname.Support:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.companyname.Support:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.companyname.Support:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.companyname.Support:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.companyname.Support:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.companyname.Support:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.companyname.Support:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.companyname.Support:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.companyname.Support:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.companyname.Support:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.companyname.Support:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.companyname.Support:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.companyname.Support:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.companyname.Support:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.companyname.Support:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.companyname.Support:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.companyname.Support:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.companyname.Support:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.companyname.Support:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.companyname.Support:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.companyname.Support:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.companyname.Support:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.companyname.Support:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall com.companyname.Support:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.companyname.Support:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.companyname.Support:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.companyname.Support:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.companyname.Support:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.companyname.Support:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.companyname.Support:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.companyname.Support:toolbarStyle}
{@link #AppCompatTheme_windowActionBar com.companyname.Support:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.companyname.Support:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.companyname.Support:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.companyname.Support:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.companyname.Support:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.companyname.Support:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.companyname.Support:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.companyname.Support:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.companyname.Support:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.companyname.Support:windowNoTitle}
+ @see #AppCompatTheme_actionBarDivider + @see #AppCompatTheme_actionBarItemBackground + @see #AppCompatTheme_actionBarPopupTheme + @see #AppCompatTheme_actionBarSize + @see #AppCompatTheme_actionBarSplitStyle + @see #AppCompatTheme_actionBarStyle + @see #AppCompatTheme_actionBarTabBarStyle + @see #AppCompatTheme_actionBarTabStyle + @see #AppCompatTheme_actionBarTabTextStyle + @see #AppCompatTheme_actionBarTheme + @see #AppCompatTheme_actionBarWidgetTheme + @see #AppCompatTheme_actionButtonStyle + @see #AppCompatTheme_actionDropDownStyle + @see #AppCompatTheme_actionMenuTextAppearance + @see #AppCompatTheme_actionMenuTextColor + @see #AppCompatTheme_actionModeBackground + @see #AppCompatTheme_actionModeCloseButtonStyle + @see #AppCompatTheme_actionModeCloseDrawable + @see #AppCompatTheme_actionModeCopyDrawable + @see #AppCompatTheme_actionModeCutDrawable + @see #AppCompatTheme_actionModeFindDrawable + @see #AppCompatTheme_actionModePasteDrawable + @see #AppCompatTheme_actionModePopupWindowStyle + @see #AppCompatTheme_actionModeSelectAllDrawable + @see #AppCompatTheme_actionModeShareDrawable + @see #AppCompatTheme_actionModeSplitBackground + @see #AppCompatTheme_actionModeStyle + @see #AppCompatTheme_actionModeWebSearchDrawable + @see #AppCompatTheme_actionOverflowButtonStyle + @see #AppCompatTheme_actionOverflowMenuStyle + @see #AppCompatTheme_activityChooserViewStyle + @see #AppCompatTheme_alertDialogButtonGroupStyle + @see #AppCompatTheme_alertDialogCenterButtons + @see #AppCompatTheme_alertDialogStyle + @see #AppCompatTheme_alertDialogTheme + @see #AppCompatTheme_android_windowAnimationStyle + @see #AppCompatTheme_android_windowIsFloating + @see #AppCompatTheme_autoCompleteTextViewStyle + @see #AppCompatTheme_borderlessButtonStyle + @see #AppCompatTheme_buttonBarButtonStyle + @see #AppCompatTheme_buttonBarNegativeButtonStyle + @see #AppCompatTheme_buttonBarNeutralButtonStyle + @see #AppCompatTheme_buttonBarPositiveButtonStyle + @see #AppCompatTheme_buttonBarStyle + @see #AppCompatTheme_buttonStyle + @see #AppCompatTheme_buttonStyleSmall + @see #AppCompatTheme_checkboxStyle + @see #AppCompatTheme_checkedTextViewStyle + @see #AppCompatTheme_colorAccent + @see #AppCompatTheme_colorButtonNormal + @see #AppCompatTheme_colorControlActivated + @see #AppCompatTheme_colorControlHighlight + @see #AppCompatTheme_colorControlNormal + @see #AppCompatTheme_colorPrimary + @see #AppCompatTheme_colorPrimaryDark + @see #AppCompatTheme_colorSwitchThumbNormal + @see #AppCompatTheme_controlBackground + @see #AppCompatTheme_dialogPreferredPadding + @see #AppCompatTheme_dialogTheme + @see #AppCompatTheme_dividerHorizontal + @see #AppCompatTheme_dividerVertical + @see #AppCompatTheme_dropDownListViewStyle + @see #AppCompatTheme_dropdownListPreferredItemHeight + @see #AppCompatTheme_editTextBackground + @see #AppCompatTheme_editTextColor + @see #AppCompatTheme_editTextStyle + @see #AppCompatTheme_homeAsUpIndicator + @see #AppCompatTheme_imageButtonStyle + @see #AppCompatTheme_listChoiceBackgroundIndicator + @see #AppCompatTheme_listDividerAlertDialog + @see #AppCompatTheme_listPopupWindowStyle + @see #AppCompatTheme_listPreferredItemHeight + @see #AppCompatTheme_listPreferredItemHeightLarge + @see #AppCompatTheme_listPreferredItemHeightSmall + @see #AppCompatTheme_listPreferredItemPaddingLeft + @see #AppCompatTheme_listPreferredItemPaddingRight + @see #AppCompatTheme_panelBackground + @see #AppCompatTheme_panelMenuListTheme + @see #AppCompatTheme_panelMenuListWidth + @see #AppCompatTheme_popupMenuStyle + @see #AppCompatTheme_popupWindowStyle + @see #AppCompatTheme_radioButtonStyle + @see #AppCompatTheme_ratingBarStyle + @see #AppCompatTheme_ratingBarStyleIndicator + @see #AppCompatTheme_ratingBarStyleSmall + @see #AppCompatTheme_searchViewStyle + @see #AppCompatTheme_seekBarStyle + @see #AppCompatTheme_selectableItemBackground + @see #AppCompatTheme_selectableItemBackgroundBorderless + @see #AppCompatTheme_spinnerDropDownItemStyle + @see #AppCompatTheme_spinnerStyle + @see #AppCompatTheme_switchStyle + @see #AppCompatTheme_textAppearanceLargePopupMenu + @see #AppCompatTheme_textAppearanceListItem + @see #AppCompatTheme_textAppearanceListItemSmall + @see #AppCompatTheme_textAppearanceSearchResultSubtitle + @see #AppCompatTheme_textAppearanceSearchResultTitle + @see #AppCompatTheme_textAppearanceSmallPopupMenu + @see #AppCompatTheme_textColorAlertDialogListItem + @see #AppCompatTheme_textColorSearchUrl + @see #AppCompatTheme_toolbarNavigationButtonStyle + @see #AppCompatTheme_toolbarStyle + @see #AppCompatTheme_windowActionBar + @see #AppCompatTheme_windowActionBarOverlay + @see #AppCompatTheme_windowActionModeOverlay + @see #AppCompatTheme_windowFixedHeightMajor + @see #AppCompatTheme_windowFixedHeightMinor + @see #AppCompatTheme_windowFixedWidthMajor + @see #AppCompatTheme_windowFixedWidthMinor + @see #AppCompatTheme_windowMinWidthMajor + @see #AppCompatTheme_windowMinWidthMinor + @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme = { + 0x01010057, 0x010100ae, 0x7f010035, 0x7f010036, + 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, + 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, + 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, + 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, + 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, + 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, + 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, + 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, + 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, + 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, + 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, + 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, + 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, + 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, + 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, + 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, + 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, + 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, + 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, + 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, + 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, + 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, + 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, + 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, + 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, + 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, + 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarDivider} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider = 23; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground = 24; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarPopupTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme = 17; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarSize} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. +

May be one of the following constant values.

+ ++++ + +
ConstantValueDescription
wrap_content0
+ @attr name com.companyname.Support:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize = 22; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarSplitStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle = 19; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle = 18; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTabBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTabStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTabTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme = 20; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionBarWidgetTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme = 21; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle = 49; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionDropDownStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle = 45; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionMenuTextAppearance} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance = 25; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionMenuTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor = 26; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground = 29; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCloseButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle = 28; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCloseDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable = 31; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCopyDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable = 33; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeCutDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable = 32; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeFindDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable = 37; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModePasteDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable = 34; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModePopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle = 39; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeSelectAllDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable = 35; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeShareDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable = 36; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeSplitBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground = 30; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle = 27; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionModeWebSearchDrawable} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable = 38; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionOverflowButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionOverflowMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#activityChooserViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle = 57; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogButtonGroupStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 92; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogCenterButtons} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons = 93; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle = 91; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#alertDialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme = 94; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + /** +

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + attribute's value can be found in the {@link #AppCompatTheme} array. + @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#autoCompleteTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle = 99; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#borderlessButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle = 54; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle = 51; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarNegativeButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 97; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarNeutralButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 98; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarPositiveButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 96; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle = 50; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle = 100; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall = 101; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#checkboxStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle = 102; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#checkedTextViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle = 103; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorAccent} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorAccent + */ + public static final int AppCompatTheme_colorAccent = 84; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorButtonNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal = 88; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorControlActivated} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated = 86; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorControlHighlight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight = 87; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorControlNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal = 85; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorPrimary} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary = 82; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorPrimaryDark} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark = 83; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#colorSwitchThumbNormal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal = 89; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#controlBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:controlBackground + */ + public static final int AppCompatTheme_controlBackground = 90; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dialogPreferredPadding} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding = 43; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dialogTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme = 42; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dividerHorizontal} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal = 56; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dividerVertical} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical = 55; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dropDownListViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle = 74; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dropdownListPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 46; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#editTextBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground = 63; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#editTextColor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:editTextColor + */ + public static final int AppCompatTheme_editTextColor = 62; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#editTextStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle = 104; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#homeAsUpIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator = 48; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#imageButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle = 64; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listChoiceBackgroundIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 81; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listDividerAlertDialog} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog = 44; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPopupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle = 75; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemHeight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight = 69; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemHeightLarge} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge = 71; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemHeightSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall = 70; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemPaddingLeft} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 72; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#listPreferredItemPaddingRight} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight = 73; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#panelBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:panelBackground + */ + public static final int AppCompatTheme_panelBackground = 78; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#panelMenuListTheme} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme = 80; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#panelMenuListWidth} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth = 79; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupMenuStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle = 60; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupWindowStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle = 61; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#radioButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle = 105; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#ratingBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle = 106; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#ratingBarStyleIndicator} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator = 107; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#ratingBarStyleSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall = 108; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#searchViewStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle = 68; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#seekBarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle = 109; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#selectableItemBackground} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground = 52; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#selectableItemBackgroundBorderless} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 53; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spinnerDropDownItemStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle = 47; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spinnerStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle = 110; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:switchStyle + */ + public static final int AppCompatTheme_switchStyle = 111; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceLargePopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 40; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem = 76; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceListItemSmall} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall = 77; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceSearchResultSubtitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 66; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceSearchResultTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 65; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAppearanceSmallPopupMenu} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textColorAlertDialogListItem} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem = 95; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textColorSearchUrl} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl = 67; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#toolbarNavigationButtonStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 59; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#toolbarStyle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle = 58; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowActionBar} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowActionBarOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowActionModeOverlay} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedHeightMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedHeightMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowFixedWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowMinWidthMajor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowMinWidthMinor} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

May be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%". +The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to +some parent container. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#windowNoTitle} + attribute's value can be found in the {@link #AppCompatTheme} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle = 3; + /** Attributes that can be used with a BottomSheetBehavior_Params. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #BottomSheetBehavior_Params_behavior_hideable com.companyname.Support:behavior_hideable}
{@link #BottomSheetBehavior_Params_behavior_peekHeight com.companyname.Support:behavior_peekHeight}
+ @see #BottomSheetBehavior_Params_behavior_hideable + @see #BottomSheetBehavior_Params_behavior_peekHeight + */ + public static final int[] BottomSheetBehavior_Params = { + 0x7f0100e3, 0x7f0100e4 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#behavior_hideable} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:behavior_hideable + */ + public static final int BottomSheetBehavior_Params_behavior_hideable = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#behavior_peekHeight} + attribute's value can be found in the {@link #BottomSheetBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:behavior_peekHeight + */ + public static final int BottomSheetBehavior_Params_behavior_peekHeight = 0; + /** Attributes that can be used with a ButtonBarLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.companyname.Support:allowStacking}
+ @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout = { + 0x7f0100a3 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#allowStacking} + attribute's value can be found in the {@link #ButtonBarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:allowStacking + */ + public static final int ButtonBarLayout_allowStacking = 0; + /** Attributes that can be used with a CardView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CardView_android_minHeight android:minHeight}
{@link #CardView_android_minWidth android:minWidth}
{@link #CardView_cardBackgroundColor com.companyname.Support:cardBackgroundColor}
{@link #CardView_cardCornerRadius com.companyname.Support:cardCornerRadius}
{@link #CardView_cardElevation com.companyname.Support:cardElevation}
{@link #CardView_cardMaxElevation com.companyname.Support:cardMaxElevation}
{@link #CardView_cardPreventCornerOverlap com.companyname.Support:cardPreventCornerOverlap}
{@link #CardView_cardUseCompatPadding com.companyname.Support:cardUseCompatPadding}
{@link #CardView_contentPadding com.companyname.Support:contentPadding}
{@link #CardView_contentPaddingBottom com.companyname.Support:contentPaddingBottom}
{@link #CardView_contentPaddingLeft com.companyname.Support:contentPaddingLeft}
{@link #CardView_contentPaddingRight com.companyname.Support:contentPaddingRight}
{@link #CardView_contentPaddingTop com.companyname.Support:contentPaddingTop}
+ @see #CardView_android_minHeight + @see #CardView_android_minWidth + @see #CardView_cardBackgroundColor + @see #CardView_cardCornerRadius + @see #CardView_cardElevation + @see #CardView_cardMaxElevation + @see #CardView_cardPreventCornerOverlap + @see #CardView_cardUseCompatPadding + @see #CardView_contentPadding + @see #CardView_contentPaddingBottom + @see #CardView_contentPaddingLeft + @see #CardView_contentPaddingRight + @see #CardView_contentPaddingTop + */ + public static final int[] CardView = { + 0x0101013f, 0x01010140, 0x7f010004, 0x7f010005, + 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, + 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, + 0x7f01000e + }; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minHeight + */ + public static final int CardView_android_minHeight = 1; + /** +

This symbol is the offset where the {@link android.R.attr#minWidth} + attribute's value can be found in the {@link #CardView} array. + @attr name android:minWidth + */ + public static final int CardView_android_minWidth = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardBackgroundColor} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardBackgroundColor + */ + public static final int CardView_cardBackgroundColor = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardCornerRadius} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardCornerRadius + */ + public static final int CardView_cardCornerRadius = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardElevation + */ + public static final int CardView_cardElevation = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardMaxElevation} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardMaxElevation + */ + public static final int CardView_cardMaxElevation = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardPreventCornerOverlap} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardPreventCornerOverlap + */ + public static final int CardView_cardPreventCornerOverlap = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#cardUseCompatPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:cardUseCompatPadding + */ + public static final int CardView_cardUseCompatPadding = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPadding} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPadding + */ + public static final int CardView_contentPadding = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingBottom} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingBottom + */ + public static final int CardView_contentPaddingBottom = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingLeft} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingLeft + */ + public static final int CardView_contentPaddingLeft = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingRight} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingRight + */ + public static final int CardView_contentPaddingRight = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentPaddingTop} + attribute's value can be found in the {@link #CardView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentPaddingTop + */ + public static final int CardView_contentPaddingTop = 11; + /** Attributes that can be used with a CollapsingAppBarLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseMode com.companyname.Support:layout_collapseMode}
{@link #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier com.companyname.Support:layout_collapseParallaxMultiplier}
+ @see #CollapsingAppBarLayout_LayoutParams_layout_collapseMode + @see #CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier + */ + public static final int[] CollapsingAppBarLayout_LayoutParams = { + 0x7f0100e5, 0x7f0100e6 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_collapseMode} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be one of the following constant values.

+ ++++ + + + +
ConstantValueDescription
none0
pin1
parallax2
+ @attr name com.companyname.Support:layout_collapseMode + */ + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseMode = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_collapseParallaxMultiplier} + attribute's value can be found in the {@link #CollapsingAppBarLayout_LayoutParams} array. + + +

Must be a floating point value, such as "1.2". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layout_collapseParallaxMultiplier + */ + public static final int CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier = 1; + /** Attributes that can be used with a CollapsingToolbarLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #CollapsingToolbarLayout_collapsedTitleGravity com.companyname.Support:collapsedTitleGravity}
{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance com.companyname.Support:collapsedTitleTextAppearance}
{@link #CollapsingToolbarLayout_contentScrim com.companyname.Support:contentScrim}
{@link #CollapsingToolbarLayout_expandedTitleGravity com.companyname.Support:expandedTitleGravity}
{@link #CollapsingToolbarLayout_expandedTitleMargin com.companyname.Support:expandedTitleMargin}
{@link #CollapsingToolbarLayout_expandedTitleMarginBottom com.companyname.Support:expandedTitleMarginBottom}
{@link #CollapsingToolbarLayout_expandedTitleMarginEnd com.companyname.Support:expandedTitleMarginEnd}
{@link #CollapsingToolbarLayout_expandedTitleMarginStart com.companyname.Support:expandedTitleMarginStart}
{@link #CollapsingToolbarLayout_expandedTitleMarginTop com.companyname.Support:expandedTitleMarginTop}
{@link #CollapsingToolbarLayout_expandedTitleTextAppearance com.companyname.Support:expandedTitleTextAppearance}
{@link #CollapsingToolbarLayout_statusBarScrim com.companyname.Support:statusBarScrim}
{@link #CollapsingToolbarLayout_title com.companyname.Support:title}
{@link #CollapsingToolbarLayout_titleEnabled com.companyname.Support:titleEnabled}
{@link #CollapsingToolbarLayout_toolbarId com.companyname.Support:toolbarId}
+ @see #CollapsingToolbarLayout_collapsedTitleGravity + @see #CollapsingToolbarLayout_collapsedTitleTextAppearance + @see #CollapsingToolbarLayout_contentScrim + @see #CollapsingToolbarLayout_expandedTitleGravity + @see #CollapsingToolbarLayout_expandedTitleMargin + @see #CollapsingToolbarLayout_expandedTitleMarginBottom + @see #CollapsingToolbarLayout_expandedTitleMarginEnd + @see #CollapsingToolbarLayout_expandedTitleMarginStart + @see #CollapsingToolbarLayout_expandedTitleMarginTop + @see #CollapsingToolbarLayout_expandedTitleTextAppearance + @see #CollapsingToolbarLayout_statusBarScrim + @see #CollapsingToolbarLayout_title + @see #CollapsingToolbarLayout_titleEnabled + @see #CollapsingToolbarLayout_toolbarId + */ + public static final int[] CollapsingToolbarLayout = { + 0x7f010012, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, + 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, + 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, + 0x7f0100f2, 0x7f0100f3 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapsedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name com.companyname.Support:collapsedTitleGravity + */ + public static final int CollapsingToolbarLayout_collapsedTitleGravity = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapsedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:collapsedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentScrim + */ + public static final int CollapsingToolbarLayout_contentScrim = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleGravity} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
center0x11
start0x00800003
end0x00800005
+ @attr name com.companyname.Support:expandedTitleGravity + */ + public static final int CollapsingToolbarLayout_expandedTitleGravity = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMargin} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMargin + */ + public static final int CollapsingToolbarLayout_expandedTitleMargin = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginBottom} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginBottom + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginBottom = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginEnd} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginEnd + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginEnd = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginStart} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginStart + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginStart = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleMarginTop} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:expandedTitleMarginTop + */ + public static final int CollapsingToolbarLayout_expandedTitleMarginTop = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#expandedTitleTextAppearance} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:expandedTitleTextAppearance + */ + public static final int CollapsingToolbarLayout_expandedTitleTextAppearance = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#statusBarScrim} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:statusBarScrim + */ + public static final int CollapsingToolbarLayout_statusBarScrim = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#title} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:title + */ + public static final int CollapsingToolbarLayout_title = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleEnabled} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleEnabled + */ + public static final int CollapsingToolbarLayout_titleEnabled = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#toolbarId} + attribute's value can be found in the {@link #CollapsingToolbarLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:toolbarId + */ + public static final int CollapsingToolbarLayout_toolbarId = 10; + /** Attributes that can be used with a CompoundButton. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.companyname.Support:buttonTint}
{@link #CompoundButton_buttonTintMode com.companyname.Support:buttonTintMode}
+ @see #CompoundButton_android_button + @see #CompoundButton_buttonTint + @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton = { + 0x01010107, 0x7f0100a4, 0x7f0100a5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#button} + attribute's value can be found in the {@link #CompoundButton} array. + @attr name android:button + */ + public static final int CompoundButton_android_button = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonTint} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:buttonTint + */ + public static final int CompoundButton_buttonTint = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#buttonTintMode} + attribute's value can be found in the {@link #CompoundButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.companyname.Support:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode = 2; + /** Attributes that can be used with a CoordinatorLayout. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #CoordinatorLayout_keylines com.companyname.Support:keylines}
{@link #CoordinatorLayout_statusBarBackground com.companyname.Support:statusBarBackground}
+ @see #CoordinatorLayout_keylines + @see #CoordinatorLayout_statusBarBackground + */ + public static final int[] CoordinatorLayout = { + 0x7f0100f4, 0x7f0100f5 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#keylines} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:keylines + */ + public static final int CoordinatorLayout_keylines = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#statusBarBackground} + attribute's value can be found in the {@link #CoordinatorLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:statusBarBackground + */ + public static final int CoordinatorLayout_statusBarBackground = 1; + /** Attributes that can be used with a CoordinatorLayout_LayoutParams. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #CoordinatorLayout_LayoutParams_android_layout_gravity android:layout_gravity}
{@link #CoordinatorLayout_LayoutParams_layout_anchor com.companyname.Support:layout_anchor}
{@link #CoordinatorLayout_LayoutParams_layout_anchorGravity com.companyname.Support:layout_anchorGravity}
{@link #CoordinatorLayout_LayoutParams_layout_behavior com.companyname.Support:layout_behavior}
{@link #CoordinatorLayout_LayoutParams_layout_keyline com.companyname.Support:layout_keyline}
+ @see #CoordinatorLayout_LayoutParams_android_layout_gravity + @see #CoordinatorLayout_LayoutParams_layout_anchor + @see #CoordinatorLayout_LayoutParams_layout_anchorGravity + @see #CoordinatorLayout_LayoutParams_layout_behavior + @see #CoordinatorLayout_LayoutParams_layout_keyline + */ + public static final int[] CoordinatorLayout_LayoutParams = { + 0x010100b3, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, + 0x7f0100f9 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + @attr name android:layout_gravity + */ + public static final int CoordinatorLayout_LayoutParams_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_anchor} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:layout_anchor + */ + public static final int CoordinatorLayout_LayoutParams_layout_anchor = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_anchorGravity} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + + + + + + + + + + +
ConstantValueDescription
top0x30
bottom0x50
left0x03
right0x05
center_vertical0x10
fill_vertical0x70
center_horizontal0x01
fill_horizontal0x07
center0x11
fill0x77
clip_vertical0x80
clip_horizontal0x08
start0x00800003
end0x00800005
+ @attr name com.companyname.Support:layout_anchorGravity + */ + public static final int CoordinatorLayout_LayoutParams_layout_anchorGravity = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_behavior} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layout_behavior + */ + public static final int CoordinatorLayout_LayoutParams_layout_behavior = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout_keyline} + attribute's value can be found in the {@link #CoordinatorLayout_LayoutParams} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layout_keyline + */ + public static final int CoordinatorLayout_LayoutParams_layout_keyline = 3; + /** Attributes that can be used with a DesignTheme. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #DesignTheme_bottomSheetDialogTheme com.companyname.Support:bottomSheetDialogTheme}
{@link #DesignTheme_bottomSheetStyle com.companyname.Support:bottomSheetStyle}
{@link #DesignTheme_textColorError com.companyname.Support:textColorError}
+ @see #DesignTheme_bottomSheetDialogTheme + @see #DesignTheme_bottomSheetStyle + @see #DesignTheme_textColorError + */ + public static final int[] DesignTheme = { + 0x7f0100fa, 0x7f0100fb, 0x7f0100fc + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#bottomSheetDialogTheme} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:bottomSheetDialogTheme + */ + public static final int DesignTheme_bottomSheetDialogTheme = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#bottomSheetStyle} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:bottomSheetStyle + */ + public static final int DesignTheme_bottomSheetStyle = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textColorError} + attribute's value can be found in the {@link #DesignTheme} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:textColorError + */ + public static final int DesignTheme_textColorError = 2; + /** Attributes that can be used with a DrawerArrowToggle. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.companyname.Support:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.companyname.Support:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.companyname.Support:barLength}
{@link #DrawerArrowToggle_color com.companyname.Support:color}
{@link #DrawerArrowToggle_drawableSize com.companyname.Support:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.companyname.Support:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.companyname.Support:spinBars}
{@link #DrawerArrowToggle_thickness com.companyname.Support:thickness}
+ @see #DrawerArrowToggle_arrowHeadLength + @see #DrawerArrowToggle_arrowShaftLength + @see #DrawerArrowToggle_barLength + @see #DrawerArrowToggle_color + @see #DrawerArrowToggle_drawableSize + @see #DrawerArrowToggle_gapBetweenBars + @see #DrawerArrowToggle_spinBars + @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle = { + 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9, + 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#arrowHeadLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#arrowShaftLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#barLength} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:barLength + */ + public static final int DrawerArrowToggle_barLength = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#color} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:color + */ + public static final int DrawerArrowToggle_color = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#drawableSize} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#gapBetweenBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spinBars} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:spinBars + */ + public static final int DrawerArrowToggle_spinBars = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#thickness} + attribute's value can be found in the {@link #DrawerArrowToggle} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:thickness + */ + public static final int DrawerArrowToggle_thickness = 7; + /** Attributes that can be used with a FloatingActionButton. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #FloatingActionButton_backgroundTint com.companyname.Support:backgroundTint}
{@link #FloatingActionButton_backgroundTintMode com.companyname.Support:backgroundTintMode}
{@link #FloatingActionButton_borderWidth com.companyname.Support:borderWidth}
{@link #FloatingActionButton_elevation com.companyname.Support:elevation}
{@link #FloatingActionButton_fabSize com.companyname.Support:fabSize}
{@link #FloatingActionButton_pressedTranslationZ com.companyname.Support:pressedTranslationZ}
{@link #FloatingActionButton_rippleColor com.companyname.Support:rippleColor}
{@link #FloatingActionButton_useCompatPadding com.companyname.Support:useCompatPadding}
+ @see #FloatingActionButton_backgroundTint + @see #FloatingActionButton_backgroundTintMode + @see #FloatingActionButton_borderWidth + @see #FloatingActionButton_elevation + @see #FloatingActionButton_fabSize + @see #FloatingActionButton_pressedTranslationZ + @see #FloatingActionButton_rippleColor + @see #FloatingActionButton_useCompatPadding + */ + public static final int[] FloatingActionButton = { + 0x7f010029, 0x7f0100de, 0x7f0100df, 0x7f0100fd, + 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTint} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:backgroundTint + */ + public static final int FloatingActionButton_backgroundTint = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.companyname.Support:backgroundTintMode + */ + public static final int FloatingActionButton_backgroundTintMode = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#borderWidth} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:borderWidth + */ + public static final int FloatingActionButton_borderWidth = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int FloatingActionButton_elevation = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#fabSize} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
normal0
mini1
+ @attr name com.companyname.Support:fabSize + */ + public static final int FloatingActionButton_fabSize = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#pressedTranslationZ} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:pressedTranslationZ + */ + public static final int FloatingActionButton_pressedTranslationZ = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#rippleColor} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:rippleColor + */ + public static final int FloatingActionButton_rippleColor = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#useCompatPadding} + attribute's value can be found in the {@link #FloatingActionButton} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:useCompatPadding + */ + public static final int FloatingActionButton_useCompatPadding = 7; + /** Attributes that can be used with a ForegroundLinearLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ForegroundLinearLayout_android_foreground android:foreground}
{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}
{@link #ForegroundLinearLayout_foregroundInsidePadding com.companyname.Support:foregroundInsidePadding}
+ @see #ForegroundLinearLayout_android_foreground + @see #ForegroundLinearLayout_android_foregroundGravity + @see #ForegroundLinearLayout_foregroundInsidePadding + */ + public static final int[] ForegroundLinearLayout = { + 0x01010109, 0x01010200, 0x7f010102 + }; + /** +

This symbol is the offset where the {@link android.R.attr#foreground} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foreground + */ + public static final int ForegroundLinearLayout_android_foreground = 0; + /** +

This symbol is the offset where the {@link android.R.attr#foregroundGravity} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + @attr name android:foregroundGravity + */ + public static final int ForegroundLinearLayout_android_foregroundGravity = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#foregroundInsidePadding} + attribute's value can be found in the {@link #ForegroundLinearLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:foregroundInsidePadding + */ + public static final int ForegroundLinearLayout_foregroundInsidePadding = 2; + /** Attributes that can be used with a LinearLayoutCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.companyname.Support:divider}
{@link #LinearLayoutCompat_dividerPadding com.companyname.Support:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.companyname.Support:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.companyname.Support:showDividers}
+ @see #LinearLayoutCompat_android_baselineAligned + @see #LinearLayoutCompat_android_baselineAlignedChildIndex + @see #LinearLayoutCompat_android_gravity + @see #LinearLayoutCompat_android_orientation + @see #LinearLayoutCompat_android_weightSum + @see #LinearLayoutCompat_divider + @see #LinearLayoutCompat_dividerPadding + @see #LinearLayoutCompat_measureWithLargestChild + @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat = { + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f01001a, 0x7f0100ae, 0x7f0100af, + 0x7f0100b0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAligned} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned = 2; + /** +

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation = 1; + /** +

This symbol is the offset where the {@link android.R.attr#weightSum} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#divider} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:divider + */ + public static final int LinearLayoutCompat_divider = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#dividerPadding} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#measureWithLargestChild} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#showDividers} + attribute's value can be found in the {@link #LinearLayoutCompat} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + +
ConstantValueDescription
none0
beginning1
middle2
end4
+ @attr name com.companyname.Support:showDividers + */ + public static final int LinearLayoutCompat_showDividers = 7; + /** Attributes that can be used with a LinearLayoutCompat_Layout. +

Includes the following attributes:

+ + + + + + + + +
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
+ @see #LinearLayoutCompat_Layout_android_layout_gravity + @see #LinearLayoutCompat_Layout_android_layout_height + @see #LinearLayoutCompat_Layout_android_layout_weight + @see #LinearLayoutCompat_Layout_android_layout_width + */ + public static final int[] LinearLayoutCompat_Layout = { + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** +

This symbol is the offset where the {@link android.R.attr#layout_gravity} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout_height} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout_weight} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + /** +

This symbol is the offset where the {@link android.R.attr#layout_width} + attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + /** Attributes that can be used with a ListPopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ @see #ListPopupWindow_android_dropDownHorizontalOffset + @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow = { + 0x010102ac, 0x010102ad + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + attribute's value can be found in the {@link #ListPopupWindow} array. + @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + /** Attributes that can be used with a MenuGroup. +

Includes the following attributes:

+ + + + + + + + + + +
AttributeDescription
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_visible android:visible}
+ @see #MenuGroup_android_checkableBehavior + @see #MenuGroup_android_enabled + @see #MenuGroup_android_id + @see #MenuGroup_android_menuCategory + @see #MenuGroup_android_orderInCategory + @see #MenuGroup_android_visible + */ + public static final int[] MenuGroup = { + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** +

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior = 5; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:enabled + */ + public static final int MenuGroup_android_enabled = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:id + */ + public static final int MenuGroup_android_id = 1; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory = 3; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory = 4; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuGroup} array. + @attr name android:visible + */ + public static final int MenuGroup_android_visible = 2; + /** Attributes that can be used with a MenuItem. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #MenuItem_actionLayout com.companyname.Support:actionLayout}
{@link #MenuItem_actionProviderClass com.companyname.Support:actionProviderClass}
{@link #MenuItem_actionViewClass com.companyname.Support:actionViewClass}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_showAsAction com.companyname.Support:showAsAction}
+ @see #MenuItem_actionLayout + @see #MenuItem_actionProviderClass + @see #MenuItem_actionViewClass + @see #MenuItem_android_alphabeticShortcut + @see #MenuItem_android_checkable + @see #MenuItem_android_checked + @see #MenuItem_android_enabled + @see #MenuItem_android_icon + @see #MenuItem_android_id + @see #MenuItem_android_menuCategory + @see #MenuItem_android_numericShortcut + @see #MenuItem_android_onClick + @see #MenuItem_android_orderInCategory + @see #MenuItem_android_title + @see #MenuItem_android_titleCondensed + @see #MenuItem_android_visible + @see #MenuItem_showAsAction + */ + public static final int[] MenuItem = { + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, + 0x7f0100b4 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionLayout} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:actionLayout + */ + public static final int MenuItem_actionLayout = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionProviderClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:actionProviderClass + */ + public static final int MenuItem_actionProviderClass = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#actionViewClass} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:actionViewClass + */ + public static final int MenuItem_actionViewClass = 15; + /** +

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut = 9; + /** +

This symbol is the offset where the {@link android.R.attr#checkable} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checkable + */ + public static final int MenuItem_android_checkable = 11; + /** +

This symbol is the offset where the {@link android.R.attr#checked} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:checked + */ + public static final int MenuItem_android_checked = 3; + /** +

This symbol is the offset where the {@link android.R.attr#enabled} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:enabled + */ + public static final int MenuItem_android_enabled = 1; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:icon + */ + public static final int MenuItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:id + */ + public static final int MenuItem_android_id = 2; + /** +

This symbol is the offset where the {@link android.R.attr#menuCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory = 5; + /** +

This symbol is the offset where the {@link android.R.attr#numericShortcut} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut = 10; + /** +

This symbol is the offset where the {@link android.R.attr#onClick} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:onClick + */ + public static final int MenuItem_android_onClick = 12; + /** +

This symbol is the offset where the {@link android.R.attr#orderInCategory} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory = 6; + /** +

This symbol is the offset where the {@link android.R.attr#title} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:title + */ + public static final int MenuItem_android_title = 7; + /** +

This symbol is the offset where the {@link android.R.attr#titleCondensed} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed = 8; + /** +

This symbol is the offset where the {@link android.R.attr#visible} + attribute's value can be found in the {@link #MenuItem} array. + @attr name android:visible + */ + public static final int MenuItem_android_visible = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#showAsAction} + attribute's value can be found in the {@link #MenuItem} array. + + +

Must be one or more (separated by '|') of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
never0
ifRoom1
always2
withText4
collapseActionView8
+ @attr name com.companyname.Support:showAsAction + */ + public static final int MenuItem_showAsAction = 13; + /** Attributes that can be used with a MenuView. +

Includes the following attributes:

+ + + + + + + + + + + + +
AttributeDescription
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_preserveIconSpacing com.companyname.Support:preserveIconSpacing}
+ @see #MenuView_android_headerBackground + @see #MenuView_android_horizontalDivider + @see #MenuView_android_itemBackground + @see #MenuView_android_itemIconDisabledAlpha + @see #MenuView_android_itemTextAppearance + @see #MenuView_android_verticalDivider + @see #MenuView_android_windowAnimationStyle + @see #MenuView_preserveIconSpacing + */ + public static final int[] MenuView = { + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f0100b5 + }; + /** +

This symbol is the offset where the {@link android.R.attr#headerBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground = 4; + /** +

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider = 2; + /** +

This symbol is the offset where the {@link android.R.attr#itemBackground} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground = 5; + /** +

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha = 6; + /** +

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance = 1; + /** +

This symbol is the offset where the {@link android.R.attr#verticalDivider} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider = 3; + /** +

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + attribute's value can be found in the {@link #MenuView} array. + @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#preserveIconSpacing} + attribute's value can be found in the {@link #MenuView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing = 7; + /** Attributes that can be used with a NavigationView. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #NavigationView_android_background android:background}
{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}
{@link #NavigationView_android_maxWidth android:maxWidth}
{@link #NavigationView_elevation com.companyname.Support:elevation}
{@link #NavigationView_headerLayout com.companyname.Support:headerLayout}
{@link #NavigationView_itemBackground com.companyname.Support:itemBackground}
{@link #NavigationView_itemIconTint com.companyname.Support:itemIconTint}
{@link #NavigationView_itemTextAppearance com.companyname.Support:itemTextAppearance}
{@link #NavigationView_itemTextColor com.companyname.Support:itemTextColor}
{@link #NavigationView_menu com.companyname.Support:menu}
+ @see #NavigationView_android_background + @see #NavigationView_android_fitsSystemWindows + @see #NavigationView_android_maxWidth + @see #NavigationView_elevation + @see #NavigationView_headerLayout + @see #NavigationView_itemBackground + @see #NavigationView_itemIconTint + @see #NavigationView_itemTextAppearance + @see #NavigationView_itemTextColor + @see #NavigationView_menu + */ + public static final int[] NavigationView = { + 0x010100d4, 0x010100dd, 0x0101011f, 0x7f010029, + 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, + 0x7f010107, 0x7f010108 + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:background + */ + public static final int NavigationView_android_background = 0; + /** +

This symbol is the offset where the {@link android.R.attr#fitsSystemWindows} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:fitsSystemWindows + */ + public static final int NavigationView_android_fitsSystemWindows = 1; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #NavigationView} array. + @attr name android:maxWidth + */ + public static final int NavigationView_android_maxWidth = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int NavigationView_elevation = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#headerLayout} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:headerLayout + */ + public static final int NavigationView_headerLayout = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemBackground} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:itemBackground + */ + public static final int NavigationView_itemBackground = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemIconTint} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:itemIconTint + */ + public static final int NavigationView_itemIconTint = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemTextAppearance} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:itemTextAppearance + */ + public static final int NavigationView_itemTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#itemTextColor} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:itemTextColor + */ + public static final int NavigationView_itemTextColor = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#menu} + attribute's value can be found in the {@link #NavigationView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:menu + */ + public static final int NavigationView_menu = 4; + /** Attributes that can be used with a PopupWindow. +

Includes the following attributes:

+ + + + + + +
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_overlapAnchor com.companyname.Support:overlapAnchor}
+ @see #PopupWindow_android_popupBackground + @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow = { + 0x01010176, 0x7f0100b6 + }; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #PopupWindow} array. + @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#overlapAnchor} + attribute's value can be found in the {@link #PopupWindow} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor = 1; + /** Attributes that can be used with a PopupWindowBackgroundState. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.companyname.Support:state_above_anchor}
+ @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState = { + 0x7f0100b7 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#state_above_anchor} + attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + /** Attributes that can be used with a RecyclerView. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #RecyclerView_android_orientation android:orientation}
{@link #RecyclerView_layoutManager com.companyname.Support:layoutManager}
{@link #RecyclerView_reverseLayout com.companyname.Support:reverseLayout}
{@link #RecyclerView_spanCount com.companyname.Support:spanCount}
{@link #RecyclerView_stackFromEnd com.companyname.Support:stackFromEnd}
+ @see #RecyclerView_android_orientation + @see #RecyclerView_layoutManager + @see #RecyclerView_reverseLayout + @see #RecyclerView_spanCount + @see #RecyclerView_stackFromEnd + */ + public static final int[] RecyclerView = { + 0x010100c4, 0x7f010000, 0x7f010001, 0x7f010002, + 0x7f010003 + }; + /** +

This symbol is the offset where the {@link android.R.attr#orientation} + attribute's value can be found in the {@link #RecyclerView} array. + @attr name android:orientation + */ + public static final int RecyclerView_android_orientation = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layoutManager} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:layoutManager + */ + public static final int RecyclerView_layoutManager = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#reverseLayout} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:reverseLayout + */ + public static final int RecyclerView_reverseLayout = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#spanCount} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:spanCount + */ + public static final int RecyclerView_spanCount = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#stackFromEnd} + attribute's value can be found in the {@link #RecyclerView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:stackFromEnd + */ + public static final int RecyclerView_stackFromEnd = 4; + /** Attributes that can be used with a ScrimInsetsFrameLayout. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrimInsetsFrameLayout_insetForeground com.companyname.Support:insetForeground}
+ @see #ScrimInsetsFrameLayout_insetForeground + */ + public static final int[] ScrimInsetsFrameLayout = { + 0x7f010109 + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#insetForeground} + attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". + @attr name com.companyname.Support:insetForeground + */ + public static final int ScrimInsetsFrameLayout_insetForeground = 0; + /** Attributes that can be used with a ScrollingViewBehavior_Params. +

Includes the following attributes:

+ + + + + +
AttributeDescription
{@link #ScrollingViewBehavior_Params_behavior_overlapTop com.companyname.Support:behavior_overlapTop}
+ @see #ScrollingViewBehavior_Params_behavior_overlapTop + */ + public static final int[] ScrollingViewBehavior_Params = { + 0x7f01010a + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#behavior_overlapTop} + attribute's value can be found in the {@link #ScrollingViewBehavior_Params} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:behavior_overlapTop + */ + public static final int ScrollingViewBehavior_Params_behavior_overlapTop = 0; + /** Attributes that can be used with a SearchView. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_closeIcon com.companyname.Support:closeIcon}
{@link #SearchView_commitIcon com.companyname.Support:commitIcon}
{@link #SearchView_defaultQueryHint com.companyname.Support:defaultQueryHint}
{@link #SearchView_goIcon com.companyname.Support:goIcon}
{@link #SearchView_iconifiedByDefault com.companyname.Support:iconifiedByDefault}
{@link #SearchView_layout com.companyname.Support:layout}
{@link #SearchView_queryBackground com.companyname.Support:queryBackground}
{@link #SearchView_queryHint com.companyname.Support:queryHint}
{@link #SearchView_searchHintIcon com.companyname.Support:searchHintIcon}
{@link #SearchView_searchIcon com.companyname.Support:searchIcon}
{@link #SearchView_submitBackground com.companyname.Support:submitBackground}
{@link #SearchView_suggestionRowLayout com.companyname.Support:suggestionRowLayout}
{@link #SearchView_voiceIcon com.companyname.Support:voiceIcon}
+ @see #SearchView_android_focusable + @see #SearchView_android_imeOptions + @see #SearchView_android_inputType + @see #SearchView_android_maxWidth + @see #SearchView_closeIcon + @see #SearchView_commitIcon + @see #SearchView_defaultQueryHint + @see #SearchView_goIcon + @see #SearchView_iconifiedByDefault + @see #SearchView_layout + @see #SearchView_queryBackground + @see #SearchView_queryHint + @see #SearchView_searchHintIcon + @see #SearchView_searchIcon + @see #SearchView_submitBackground + @see #SearchView_suggestionRowLayout + @see #SearchView_voiceIcon + */ + public static final int[] SearchView = { + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, + 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, + 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, + 0x7f0100c4 + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:focusable + */ + public static final int SearchView_android_focusable = 0; + /** +

This symbol is the offset where the {@link android.R.attr#imeOptions} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions = 3; + /** +

This symbol is the offset where the {@link android.R.attr#inputType} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:inputType + */ + public static final int SearchView_android_inputType = 2; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SearchView} array. + @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#closeIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:closeIcon + */ + public static final int SearchView_closeIcon = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#commitIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:commitIcon + */ + public static final int SearchView_commitIcon = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#defaultQueryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#goIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:goIcon + */ + public static final int SearchView_goIcon = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#iconifiedByDefault} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#layout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:layout + */ + public static final int SearchView_layout = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#queryBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:queryBackground + */ + public static final int SearchView_queryBackground = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#queryHint} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:queryHint + */ + public static final int SearchView_queryHint = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#searchHintIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:searchHintIcon + */ + public static final int SearchView_searchHintIcon = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#searchIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:searchIcon + */ + public static final int SearchView_searchIcon = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#submitBackground} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:submitBackground + */ + public static final int SearchView_submitBackground = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#suggestionRowLayout} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#voiceIcon} + attribute's value can be found in the {@link #SearchView} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:voiceIcon + */ + public static final int SearchView_voiceIcon = 12; + /** Attributes that can be used with a SnackbarLayout. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #SnackbarLayout_android_maxWidth android:maxWidth}
{@link #SnackbarLayout_elevation com.companyname.Support:elevation}
{@link #SnackbarLayout_maxActionInlineWidth com.companyname.Support:maxActionInlineWidth}
+ @see #SnackbarLayout_android_maxWidth + @see #SnackbarLayout_elevation + @see #SnackbarLayout_maxActionInlineWidth + */ + public static final int[] SnackbarLayout = { + 0x0101011f, 0x7f010029, 0x7f01010b + }; + /** +

This symbol is the offset where the {@link android.R.attr#maxWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + @attr name android:maxWidth + */ + public static final int SnackbarLayout_android_maxWidth = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#elevation} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:elevation + */ + public static final int SnackbarLayout_elevation = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#maxActionInlineWidth} + attribute's value can be found in the {@link #SnackbarLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:maxActionInlineWidth + */ + public static final int SnackbarLayout_maxActionInlineWidth = 2; + /** Attributes that can be used with a Spinner. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_popupTheme com.companyname.Support:popupTheme}
+ @see #Spinner_android_dropDownWidth + @see #Spinner_android_entries + @see #Spinner_android_popupBackground + @see #Spinner_android_prompt + @see #Spinner_popupTheme + */ + public static final int[] Spinner = { + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f01002a + }; + /** +

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth = 3; + /** +

This symbol is the offset where the {@link android.R.attr#entries} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:entries + */ + public static final int Spinner_android_entries = 0; + /** +

This symbol is the offset where the {@link android.R.attr#popupBackground} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground = 1; + /** +

This symbol is the offset where the {@link android.R.attr#prompt} + attribute's value can be found in the {@link #Spinner} array. + @attr name android:prompt + */ + public static final int Spinner_android_prompt = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupTheme} + attribute's value can be found in the {@link #Spinner} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupTheme + */ + public static final int Spinner_popupTheme = 4; + /** Attributes that can be used with a SwitchCompat. +

Includes the following attributes:

+ + + + + + + + + + + + + + +
AttributeDescription
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.companyname.Support:showText}
{@link #SwitchCompat_splitTrack com.companyname.Support:splitTrack}
{@link #SwitchCompat_switchMinWidth com.companyname.Support:switchMinWidth}
{@link #SwitchCompat_switchPadding com.companyname.Support:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.companyname.Support:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.companyname.Support:thumbTextPadding}
{@link #SwitchCompat_track com.companyname.Support:track}
+ @see #SwitchCompat_android_textOff + @see #SwitchCompat_android_textOn + @see #SwitchCompat_android_thumb + @see #SwitchCompat_showText + @see #SwitchCompat_splitTrack + @see #SwitchCompat_switchMinWidth + @see #SwitchCompat_switchPadding + @see #SwitchCompat_switchTextAppearance + @see #SwitchCompat_thumbTextPadding + @see #SwitchCompat_track + */ + public static final int[] SwitchCompat = { + 0x01010124, 0x01010125, 0x01010142, 0x7f0100c5, + 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, + 0x7f0100ca, 0x7f0100cb + }; + /** +

This symbol is the offset where the {@link android.R.attr#textOff} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textOn} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn = 0; + /** +

This symbol is the offset where the {@link android.R.attr#thumb} + attribute's value can be found in the {@link #SwitchCompat} array. + @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#showText} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:showText + */ + public static final int SwitchCompat_showText = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#splitTrack} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:splitTrack + */ + public static final int SwitchCompat_splitTrack = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchMinWidth} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:switchPadding + */ + public static final int SwitchCompat_switchPadding = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#switchTextAppearance} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#thumbTextPadding} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#track} + attribute's value can be found in the {@link #SwitchCompat} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:track + */ + public static final int SwitchCompat_track = 3; + /** Attributes that can be used with a TabItem. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #TabItem_android_icon android:icon}
{@link #TabItem_android_layout android:layout}
{@link #TabItem_android_text android:text}
+ @see #TabItem_android_icon + @see #TabItem_android_layout + @see #TabItem_android_text + */ + public static final int[] TabItem = { + 0x01010002, 0x010100f2, 0x0101014f + }; + /** +

This symbol is the offset where the {@link android.R.attr#icon} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:icon + */ + public static final int TabItem_android_icon = 0; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:layout + */ + public static final int TabItem_android_layout = 1; + /** +

This symbol is the offset where the {@link android.R.attr#text} + attribute's value can be found in the {@link #TabItem} array. + @attr name android:text + */ + public static final int TabItem_android_text = 2; + /** Attributes that can be used with a TabLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #TabLayout_tabBackground com.companyname.Support:tabBackground}
{@link #TabLayout_tabContentStart com.companyname.Support:tabContentStart}
{@link #TabLayout_tabGravity com.companyname.Support:tabGravity}
{@link #TabLayout_tabIndicatorColor com.companyname.Support:tabIndicatorColor}
{@link #TabLayout_tabIndicatorHeight com.companyname.Support:tabIndicatorHeight}
{@link #TabLayout_tabMaxWidth com.companyname.Support:tabMaxWidth}
{@link #TabLayout_tabMinWidth com.companyname.Support:tabMinWidth}
{@link #TabLayout_tabMode com.companyname.Support:tabMode}
{@link #TabLayout_tabPadding com.companyname.Support:tabPadding}
{@link #TabLayout_tabPaddingBottom com.companyname.Support:tabPaddingBottom}
{@link #TabLayout_tabPaddingEnd com.companyname.Support:tabPaddingEnd}
{@link #TabLayout_tabPaddingStart com.companyname.Support:tabPaddingStart}
{@link #TabLayout_tabPaddingTop com.companyname.Support:tabPaddingTop}
{@link #TabLayout_tabSelectedTextColor com.companyname.Support:tabSelectedTextColor}
{@link #TabLayout_tabTextAppearance com.companyname.Support:tabTextAppearance}
{@link #TabLayout_tabTextColor com.companyname.Support:tabTextColor}
+ @see #TabLayout_tabBackground + @see #TabLayout_tabContentStart + @see #TabLayout_tabGravity + @see #TabLayout_tabIndicatorColor + @see #TabLayout_tabIndicatorHeight + @see #TabLayout_tabMaxWidth + @see #TabLayout_tabMinWidth + @see #TabLayout_tabMode + @see #TabLayout_tabPadding + @see #TabLayout_tabPaddingBottom + @see #TabLayout_tabPaddingEnd + @see #TabLayout_tabPaddingStart + @see #TabLayout_tabPaddingTop + @see #TabLayout_tabSelectedTextColor + @see #TabLayout_tabTextAppearance + @see #TabLayout_tabTextColor + */ + public static final int[] TabLayout = { + 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, + 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, + 0x7f010114, 0x7f010115, 0x7f010116, 0x7f010117, + 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b + }; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabBackground} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:tabBackground + */ + public static final int TabLayout_tabBackground = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabContentStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabContentStart + */ + public static final int TabLayout_tabContentStart = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabGravity} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
fill0
center1
+ @attr name com.companyname.Support:tabGravity + */ + public static final int TabLayout_tabGravity = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabIndicatorColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabIndicatorColor + */ + public static final int TabLayout_tabIndicatorColor = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabIndicatorHeight} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabIndicatorHeight + */ + public static final int TabLayout_tabIndicatorHeight = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabMaxWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabMaxWidth + */ + public static final int TabLayout_tabMaxWidth = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabMinWidth} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabMinWidth + */ + public static final int TabLayout_tabMinWidth = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabMode} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be one of the following constant values.

+ ++++ + + +
ConstantValueDescription
scrollable0
fixed1
+ @attr name com.companyname.Support:tabMode + */ + public static final int TabLayout_tabMode = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPadding} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPadding + */ + public static final int TabLayout_tabPadding = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingBottom} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingBottom + */ + public static final int TabLayout_tabPaddingBottom = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingEnd} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingEnd + */ + public static final int TabLayout_tabPaddingEnd = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingStart} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingStart + */ + public static final int TabLayout_tabPaddingStart = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabPaddingTop} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabPaddingTop + */ + public static final int TabLayout_tabPaddingTop = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabSelectedTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabSelectedTextColor + */ + public static final int TabLayout_tabSelectedTextColor = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabTextAppearance} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:tabTextAppearance + */ + public static final int TabLayout_tabTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#tabTextColor} + attribute's value can be found in the {@link #TabLayout} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:tabTextColor + */ + public static final int TabLayout_tabTextColor = 9; + /** Attributes that can be used with a TextAppearance. +

Includes the following attributes:

+ + + + + + + + + + + + + +
AttributeDescription
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.companyname.Support:textAllCaps}
+ @see #TextAppearance_android_shadowColor + @see #TextAppearance_android_shadowDx + @see #TextAppearance_android_shadowDy + @see #TextAppearance_android_shadowRadius + @see #TextAppearance_android_textColor + @see #TextAppearance_android_textSize + @see #TextAppearance_android_textStyle + @see #TextAppearance_android_typeface + @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance = { + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x01010161, 0x01010162, 0x01010163, 0x01010164, + 0x7f010034 + }; + /** +

This symbol is the offset where the {@link android.R.attr#shadowColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor = 4; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDx} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx = 5; + /** +

This symbol is the offset where the {@link android.R.attr#shadowDy} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy = 6; + /** +

This symbol is the offset where the {@link android.R.attr#shadowRadius} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius = 7; + /** +

This symbol is the offset where the {@link android.R.attr#textColor} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textColor + */ + public static final int TextAppearance_android_textColor = 3; + /** +

This symbol is the offset where the {@link android.R.attr#textSize} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textSize + */ + public static final int TextAppearance_android_textSize = 0; + /** +

This symbol is the offset where the {@link android.R.attr#textStyle} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle = 2; + /** +

This symbol is the offset where the {@link android.R.attr#typeface} + attribute's value can be found in the {@link #TextAppearance} array. + @attr name android:typeface + */ + public static final int TextAppearance_android_typeface = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#textAllCaps} + attribute's value can be found in the {@link #TextAppearance} array. + + +

May be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". +

May be a boolean value, either "true" or "false". + @attr name com.companyname.Support:textAllCaps + */ + public static final int TextAppearance_textAllCaps = 8; + /** Attributes that can be used with a TextInputLayout. +

Includes the following attributes:

+ + + + + + + + + + + + + + + +
AttributeDescription
{@link #TextInputLayout_android_hint android:hint}
{@link #TextInputLayout_android_textColorHint android:textColorHint}
{@link #TextInputLayout_counterEnabled com.companyname.Support:counterEnabled}
{@link #TextInputLayout_counterMaxLength com.companyname.Support:counterMaxLength}
{@link #TextInputLayout_counterOverflowTextAppearance com.companyname.Support:counterOverflowTextAppearance}
{@link #TextInputLayout_counterTextAppearance com.companyname.Support:counterTextAppearance}
{@link #TextInputLayout_errorEnabled com.companyname.Support:errorEnabled}
{@link #TextInputLayout_errorTextAppearance com.companyname.Support:errorTextAppearance}
{@link #TextInputLayout_hintAnimationEnabled com.companyname.Support:hintAnimationEnabled}
{@link #TextInputLayout_hintEnabled com.companyname.Support:hintEnabled}
{@link #TextInputLayout_hintTextAppearance com.companyname.Support:hintTextAppearance}
+ @see #TextInputLayout_android_hint + @see #TextInputLayout_android_textColorHint + @see #TextInputLayout_counterEnabled + @see #TextInputLayout_counterMaxLength + @see #TextInputLayout_counterOverflowTextAppearance + @see #TextInputLayout_counterTextAppearance + @see #TextInputLayout_errorEnabled + @see #TextInputLayout_errorTextAppearance + @see #TextInputLayout_hintAnimationEnabled + @see #TextInputLayout_hintEnabled + @see #TextInputLayout_hintTextAppearance + */ + public static final int[] TextInputLayout = { + 0x0101009a, 0x01010150, 0x7f01011c, 0x7f01011d, + 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, + 0x7f010122, 0x7f010123, 0x7f010124 + }; + /** +

This symbol is the offset where the {@link android.R.attr#hint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:hint + */ + public static final int TextInputLayout_android_hint = 1; + /** +

This symbol is the offset where the {@link android.R.attr#textColorHint} + attribute's value can be found in the {@link #TextInputLayout} array. + @attr name android:textColorHint + */ + public static final int TextInputLayout_android_textColorHint = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:counterEnabled + */ + public static final int TextInputLayout_counterEnabled = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterMaxLength} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be an integer value, such as "100". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:counterMaxLength + */ + public static final int TextInputLayout_counterMaxLength = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterOverflowTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:counterOverflowTextAppearance + */ + public static final int TextInputLayout_counterOverflowTextAppearance = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#counterTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:counterTextAppearance + */ + public static final int TextInputLayout_counterTextAppearance = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#errorEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:errorEnabled + */ + public static final int TextInputLayout_errorEnabled = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#errorTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:errorTextAppearance + */ + public static final int TextInputLayout_errorTextAppearance = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hintAnimationEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:hintAnimationEnabled + */ + public static final int TextInputLayout_hintAnimationEnabled = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hintEnabled} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a boolean value, either "true" or "false". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:hintEnabled + */ + public static final int TextInputLayout_hintEnabled = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#hintTextAppearance} + attribute's value can be found in the {@link #TextInputLayout} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:hintTextAppearance + */ + public static final int TextInputLayout_hintTextAppearance = 2; + /** Attributes that can be used with a Toolbar. +

Includes the following attributes:

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_collapseContentDescription com.companyname.Support:collapseContentDescription}
{@link #Toolbar_collapseIcon com.companyname.Support:collapseIcon}
{@link #Toolbar_contentInsetEnd com.companyname.Support:contentInsetEnd}
{@link #Toolbar_contentInsetLeft com.companyname.Support:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.companyname.Support:contentInsetRight}
{@link #Toolbar_contentInsetStart com.companyname.Support:contentInsetStart}
{@link #Toolbar_logo com.companyname.Support:logo}
{@link #Toolbar_logoDescription com.companyname.Support:logoDescription}
{@link #Toolbar_maxButtonHeight com.companyname.Support:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.companyname.Support:navigationContentDescription}
{@link #Toolbar_navigationIcon com.companyname.Support:navigationIcon}
{@link #Toolbar_popupTheme com.companyname.Support:popupTheme}
{@link #Toolbar_subtitle com.companyname.Support:subtitle}
{@link #Toolbar_subtitleTextAppearance com.companyname.Support:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.companyname.Support:subtitleTextColor}
{@link #Toolbar_title com.companyname.Support:title}
{@link #Toolbar_titleMarginBottom com.companyname.Support:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.companyname.Support:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.companyname.Support:titleMarginStart}
{@link #Toolbar_titleMarginTop com.companyname.Support:titleMarginTop}
{@link #Toolbar_titleMargins com.companyname.Support:titleMargins}
{@link #Toolbar_titleTextAppearance com.companyname.Support:titleTextAppearance}
{@link #Toolbar_titleTextColor com.companyname.Support:titleTextColor}
+ @see #Toolbar_android_gravity + @see #Toolbar_android_minHeight + @see #Toolbar_collapseContentDescription + @see #Toolbar_collapseIcon + @see #Toolbar_contentInsetEnd + @see #Toolbar_contentInsetLeft + @see #Toolbar_contentInsetRight + @see #Toolbar_contentInsetStart + @see #Toolbar_logo + @see #Toolbar_logoDescription + @see #Toolbar_maxButtonHeight + @see #Toolbar_navigationContentDescription + @see #Toolbar_navigationIcon + @see #Toolbar_popupTheme + @see #Toolbar_subtitle + @see #Toolbar_subtitleTextAppearance + @see #Toolbar_subtitleTextColor + @see #Toolbar_title + @see #Toolbar_titleMarginBottom + @see #Toolbar_titleMarginEnd + @see #Toolbar_titleMarginStart + @see #Toolbar_titleMarginTop + @see #Toolbar_titleMargins + @see #Toolbar_titleTextAppearance + @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar = { + 0x010100af, 0x01010140, 0x7f010012, 0x7f010015, + 0x7f010019, 0x7f010025, 0x7f010026, 0x7f010027, + 0x7f010028, 0x7f01002a, 0x7f0100cc, 0x7f0100cd, + 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, + 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, + 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, + 0x7f0100da + }; + /** +

This symbol is the offset where the {@link android.R.attr#gravity} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:gravity + */ + public static final int Toolbar_android_gravity = 0; + /** +

This symbol is the offset where the {@link android.R.attr#minHeight} + attribute's value can be found in the {@link #Toolbar} array. + @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapseContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription = 19; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#collapseIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:collapseIcon + */ + public static final int Toolbar_collapseIcon = 18; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd = 6; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetLeft} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft = 7; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetRight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetRight + */ + public static final int Toolbar_contentInsetRight = 8; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#contentInsetStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:contentInsetStart + */ + public static final int Toolbar_contentInsetStart = 5; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#logo} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:logo + */ + public static final int Toolbar_logo = 4; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#logoDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:logoDescription + */ + public static final int Toolbar_logoDescription = 22; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#maxButtonHeight} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight = 17; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#navigationContentDescription} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription = 21; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#navigationIcon} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:navigationIcon + */ + public static final int Toolbar_navigationIcon = 20; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#popupTheme} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:popupTheme + */ + public static final int Toolbar_popupTheme = 9; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitle} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:subtitle + */ + public static final int Toolbar_subtitle = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance = 11; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#subtitleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor = 24; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#title} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character. +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:title + */ + public static final int Toolbar_title = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginBottom} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom = 16; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginEnd} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd = 14; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginStart} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginStart + */ + public static final int Toolbar_titleMarginStart = 13; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMarginTop} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMarginTop + */ + public static final int Toolbar_titleMarginTop = 15; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleMargins} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleMargins + */ + public static final int Toolbar_titleMargins = 12; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextAppearance} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance = 10; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#titleTextColor} + attribute's value can be found in the {@link #Toolbar} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:titleTextColor + */ + public static final int Toolbar_titleTextColor = 23; + /** Attributes that can be used with a View. +

Includes the following attributes:

+ + + + + + + + + +
AttributeDescription
{@link #View_android_focusable android:focusable}
{@link #View_android_theme android:theme}
{@link #View_paddingEnd com.companyname.Support:paddingEnd}
{@link #View_paddingStart com.companyname.Support:paddingStart}
{@link #View_theme com.companyname.Support:theme}
+ @see #View_android_focusable + @see #View_android_theme + @see #View_paddingEnd + @see #View_paddingStart + @see #View_theme + */ + public static final int[] View = { + 0x01010000, 0x010100da, 0x7f0100db, 0x7f0100dc, + 0x7f0100dd + }; + /** +

This symbol is the offset where the {@link android.R.attr#focusable} + attribute's value can be found in the {@link #View} array. + @attr name android:focusable + */ + public static final int View_android_focusable = 1; + /** +

This symbol is the offset where the {@link android.R.attr#theme} + attribute's value can be found in the {@link #View} array. + @attr name android:theme + */ + public static final int View_android_theme = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#paddingEnd} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:paddingEnd + */ + public static final int View_paddingEnd = 3; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#paddingStart} + attribute's value can be found in the {@link #View} array. + + +

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". +Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), +in (inches), mm (millimeters). +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:paddingStart + */ + public static final int View_paddingStart = 2; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#theme} + attribute's value can be found in the {@link #View} array. + + +

Must be a reference to another resource, in the form "@[+][package:]type:name" +or to a theme attribute in the form "?[package:][type:]name". + @attr name com.companyname.Support:theme + */ + public static final int View_theme = 4; + /** Attributes that can be used with a ViewBackgroundHelper. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.companyname.Support:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.companyname.Support:backgroundTintMode}
+ @see #ViewBackgroundHelper_android_background + @see #ViewBackgroundHelper_backgroundTint + @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper = { + 0x010100d4, 0x7f0100de, 0x7f0100df + }; + /** +

This symbol is the offset where the {@link android.R.attr#background} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background = 0; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTint} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be a color value, in the form of "#rgb", "#argb", +"#rrggbb", or "#aarrggbb". +

This may also be a reference to a resource (in the form +"@[package:]type:name") or +theme attribute (in the form +"?[package:][type:]name") +containing a value of this type. + @attr name com.companyname.Support:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint = 1; + /** +

This symbol is the offset where the {@link com.companyname.Support.R.attr#backgroundTintMode} + attribute's value can be found in the {@link #ViewBackgroundHelper} array. + + +

Must be one of the following constant values.

+ ++++ + + + + + +
ConstantValueDescription
src_over3
src_in5
src_atop9
multiply14
screen15
+ @attr name com.companyname.Support:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + /** Attributes that can be used with a ViewStubCompat. +

Includes the following attributes:

+ + + + + + + +
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
{@link #ViewStubCompat_android_layout android:layout}
+ @see #ViewStubCompat_android_id + @see #ViewStubCompat_android_inflatedId + @see #ViewStubCompat_android_layout + */ + public static final int[] ViewStubCompat = { + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** +

This symbol is the offset where the {@link android.R.attr#id} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:id + */ + public static final int ViewStubCompat_android_id = 0; + /** +

This symbol is the offset where the {@link android.R.attr#inflatedId} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId = 2; + /** +

This symbol is the offset where the {@link android.R.attr#layout} + attribute's value can be found in the {@link #ViewStubCompat} array. + @attr name android:layout + */ + public static final int ViewStubCompat_android_layout = 1; + }; +} diff --git a/Support/Support.Android/obj/Debug/android/src/md59f70a99687498e7ba187118950981d26/CustomTabsServiceConnectionImpl.java b/Support/Support.Android/obj/Debug/android/src/md59f70a99687498e7ba187118950981d26/CustomTabsServiceConnectionImpl.java new file mode 100644 index 0000000..16ceb9b --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md59f70a99687498e7ba187118950981d26/CustomTabsServiceConnectionImpl.java @@ -0,0 +1,56 @@ +package md59f70a99687498e7ba187118950981d26; + + +public class CustomTabsServiceConnectionImpl + extends android.support.customtabs.CustomTabsServiceConnection + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCustomTabsServiceConnected:(Landroid/content/ComponentName;Landroid/support/customtabs/CustomTabsClient;)V:GetOnCustomTabsServiceConnected_Landroid_content_ComponentName_Landroid_support_customtabs_CustomTabsClient_Handler\n" + + "n_onServiceDisconnected:(Landroid/content/ComponentName;)V:GetOnServiceDisconnected_Landroid_content_ComponentName_Handler\n" + + ""; + mono.android.Runtime.register ("Android.Support.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", CustomTabsServiceConnectionImpl.class, __md_methods); + } + + + public CustomTabsServiceConnectionImpl () throws java.lang.Throwable + { + super (); + if (getClass () == CustomTabsServiceConnectionImpl.class) + mono.android.TypeManager.Activate ("Android.Support.CustomTabs.CustomTabsServiceConnectionImpl, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCustomTabsServiceConnected (android.content.ComponentName p0, android.support.customtabs.CustomTabsClient p1) + { + n_onCustomTabsServiceConnected (p0, p1); + } + + private native void n_onCustomTabsServiceConnected (android.content.ComponentName p0, android.support.customtabs.CustomTabsClient p1); + + + public void onServiceDisconnected (android.content.ComponentName p0) + { + n_onServiceDisconnected (p0); + } + + private native void n_onServiceDisconnected (android.content.ComponentName p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md59f70a99687498e7ba187118950981d26/KeepAliveService.java b/Support/Support.Android/obj/Debug/android/src/md59f70a99687498e7ba187118950981d26/KeepAliveService.java new file mode 100644 index 0000000..4b28068 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md59f70a99687498e7ba187118950981d26/KeepAliveService.java @@ -0,0 +1,47 @@ +package md59f70a99687498e7ba187118950981d26; + + +public class KeepAliveService + extends android.app.Service + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBind:(Landroid/content/Intent;)Landroid/os/IBinder;:GetOnBind_Landroid_content_Intent_Handler\n" + + ""; + mono.android.Runtime.register ("Android.Support.CustomTabs.KeepAliveService, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", KeepAliveService.class, __md_methods); + } + + + public KeepAliveService () throws java.lang.Throwable + { + super (); + if (getClass () == KeepAliveService.class) + mono.android.TypeManager.Activate ("Android.Support.CustomTabs.KeepAliveService, Xamarin.Android.Support.CustomTabs, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public android.os.IBinder onBind (android.content.Intent p0) + { + return n_onBind (p0); + } + + private native android.os.IBinder n_onBind (android.content.Intent p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/AboutFragment.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/AboutFragment.java new file mode 100644 index 0000000..98156a6 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/AboutFragment.java @@ -0,0 +1,74 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class AboutFragment + extends android.support.v4.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onStart:()V:GetOnStartHandler\n" + + "n_onStop:()V:GetOnStopHandler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.AboutFragment, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", AboutFragment.class, __md_methods); + } + + + public AboutFragment () throws java.lang.Throwable + { + super (); + if (getClass () == AboutFragment.class) + mono.android.TypeManager.Activate ("Support.Droid.AboutFragment, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + + public void onStart () + { + n_onStart (); + } + + private native void n_onStart (); + + + public void onStop () + { + n_onStop (); + } + + private native void n_onStop (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/AddItemActivity.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/AddItemActivity.java new file mode 100644 index 0000000..3265f85 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/AddItemActivity.java @@ -0,0 +1,47 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class AddItemActivity + extends android.app.Activity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.AddItemActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", AddItemActivity.class, __md_methods); + } + + + public AddItemActivity () throws java.lang.Throwable + { + super (); + if (getClass () == AddItemActivity.class) + mono.android.TypeManager.Activate ("Support.Droid.AddItemActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BaseActivity.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BaseActivity.java new file mode 100644 index 0000000..06bf6c7 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BaseActivity.java @@ -0,0 +1,47 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class BaseActivity + extends android.support.v7.app.AppCompatActivity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.BaseActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", BaseActivity.class, __md_methods); + } + + + public BaseActivity () throws java.lang.Throwable + { + super (); + if (getClass () == BaseActivity.class) + mono.android.TypeManager.Activate ("Support.Droid.BaseActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BaseRecycleViewAdapter.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BaseRecycleViewAdapter.java new file mode 100644 index 0000000..5963cf2 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BaseRecycleViewAdapter.java @@ -0,0 +1,65 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class BaseRecycleViewAdapter + extends android.support.v7.widget.RecyclerView.Adapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBindViewHolder:(Landroid/support/v7/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroid_support_v7_widget_RecyclerView_ViewHolder_IHandler\n" + + "n_onCreateViewHolder:(Landroid/view/ViewGroup;I)Landroid/support/v7/widget/RecyclerView$ViewHolder;:GetOnCreateViewHolder_Landroid_view_ViewGroup_IHandler\n" + + "n_getItemCount:()I:GetGetItemCountHandler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.BaseRecycleViewAdapter, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", BaseRecycleViewAdapter.class, __md_methods); + } + + + public BaseRecycleViewAdapter () throws java.lang.Throwable + { + super (); + if (getClass () == BaseRecycleViewAdapter.class) + mono.android.TypeManager.Activate ("Support.Droid.BaseRecycleViewAdapter, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onBindViewHolder (android.support.v7.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (android.support.v7.widget.RecyclerView.ViewHolder p0, int p1); + + + public android.support.v7.widget.RecyclerView.ViewHolder onCreateViewHolder (android.view.ViewGroup p0, int p1) + { + return n_onCreateViewHolder (p0, p1); + } + + private native android.support.v7.widget.RecyclerView.ViewHolder n_onCreateViewHolder (android.view.ViewGroup p0, int p1); + + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseFragment.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseFragment.java new file mode 100644 index 0000000..f32ec6b --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseFragment.java @@ -0,0 +1,83 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class BrowseFragment + extends android.support.v4.app.Fragment + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_onCreateView:(Landroid/view/LayoutInflater;Landroid/view/ViewGroup;Landroid/os/Bundle;)Landroid/view/View;:GetOnCreateView_Landroid_view_LayoutInflater_Landroid_view_ViewGroup_Landroid_os_Bundle_Handler\n" + + "n_onStart:()V:GetOnStartHandler\n" + + "n_onStop:()V:GetOnStopHandler\n" + + "n_onDestroy:()V:GetOnDestroyHandler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.BrowseFragment, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", BrowseFragment.class, __md_methods); + } + + + public BrowseFragment () throws java.lang.Throwable + { + super (); + if (getClass () == BrowseFragment.class) + mono.android.TypeManager.Activate ("Support.Droid.BrowseFragment, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + + public android.view.View onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2) + { + return n_onCreateView (p0, p1, p2); + } + + private native android.view.View n_onCreateView (android.view.LayoutInflater p0, android.view.ViewGroup p1, android.os.Bundle p2); + + + public void onStart () + { + n_onStart (); + } + + private native void n_onStart (); + + + public void onStop () + { + n_onStop (); + } + + private native void n_onStop (); + + + public void onDestroy () + { + n_onDestroy (); + } + + private native void n_onDestroy (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemDetailActivity.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemDetailActivity.java new file mode 100644 index 0000000..86f3dae --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemDetailActivity.java @@ -0,0 +1,65 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class BrowseItemDetailActivity + extends md5c90de87aed1de882a3163dd2fdbbbd51.BaseActivity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_onStart:()V:GetOnStartHandler\n" + + "n_onStop:()V:GetOnStopHandler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.BrowseItemDetailActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", BrowseItemDetailActivity.class, __md_methods); + } + + + public BrowseItemDetailActivity () throws java.lang.Throwable + { + super (); + if (getClass () == BrowseItemDetailActivity.class) + mono.android.TypeManager.Activate ("Support.Droid.BrowseItemDetailActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + + public void onStart () + { + n_onStart (); + } + + private native void n_onStart (); + + + public void onStop () + { + n_onStop (); + } + + private native void n_onStop (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemsAdapter.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemsAdapter.java new file mode 100644 index 0000000..21d88fd --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/BrowseItemsAdapter.java @@ -0,0 +1,65 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class BrowseItemsAdapter + extends md5c90de87aed1de882a3163dd2fdbbbd51.BaseRecycleViewAdapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreateViewHolder:(Landroid/view/ViewGroup;I)Landroid/support/v7/widget/RecyclerView$ViewHolder;:GetOnCreateViewHolder_Landroid_view_ViewGroup_IHandler\n" + + "n_onBindViewHolder:(Landroid/support/v7/widget/RecyclerView$ViewHolder;I)V:GetOnBindViewHolder_Landroid_support_v7_widget_RecyclerView_ViewHolder_IHandler\n" + + "n_getItemCount:()I:GetGetItemCountHandler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.BrowseItemsAdapter, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", BrowseItemsAdapter.class, __md_methods); + } + + + public BrowseItemsAdapter () throws java.lang.Throwable + { + super (); + if (getClass () == BrowseItemsAdapter.class) + mono.android.TypeManager.Activate ("Support.Droid.BrowseItemsAdapter, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public android.support.v7.widget.RecyclerView.ViewHolder onCreateViewHolder (android.view.ViewGroup p0, int p1) + { + return n_onCreateViewHolder (p0, p1); + } + + private native android.support.v7.widget.RecyclerView.ViewHolder n_onCreateViewHolder (android.view.ViewGroup p0, int p1); + + + public void onBindViewHolder (android.support.v7.widget.RecyclerView.ViewHolder p0, int p1) + { + n_onBindViewHolder (p0, p1); + } + + private native void n_onBindViewHolder (android.support.v7.widget.RecyclerView.ViewHolder p0, int p1); + + + public int getItemCount () + { + return n_getItemCount (); + } + + private native int n_getItemCount (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MainActivity.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MainActivity.java new file mode 100644 index 0000000..85eda05 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MainActivity.java @@ -0,0 +1,56 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class MainActivity + extends md5c90de87aed1de882a3163dd2fdbbbd51.BaseActivity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + "n_onCreateOptionsMenu:(Landroid/view/Menu;)Z:GetOnCreateOptionsMenu_Landroid_view_Menu_Handler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.MainActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", MainActivity.class, __md_methods); + } + + + public MainActivity () throws java.lang.Throwable + { + super (); + if (getClass () == MainActivity.class) + mono.android.TypeManager.Activate ("Support.Droid.MainActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + + public boolean onCreateOptionsMenu (android.view.Menu p0) + { + return n_onCreateOptionsMenu (p0); + } + + private native boolean n_onCreateOptionsMenu (android.view.Menu p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MainApplication.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MainApplication.java new file mode 100644 index 0000000..c192765 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MainApplication.java @@ -0,0 +1,116 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class MainApplication + extends android.app.Application + implements + mono.android.IGCUserPeer, + android.app.Application.ActivityLifecycleCallbacks +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:()V:GetOnCreateHandler\n" + + "n_onTerminate:()V:GetOnTerminateHandler\n" + + "n_onActivityCreated:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivityCreated_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityDestroyed:(Landroid/app/Activity;)V:GetOnActivityDestroyed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityPaused:(Landroid/app/Activity;)V:GetOnActivityPaused_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityResumed:(Landroid/app/Activity;)V:GetOnActivityResumed_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivitySaveInstanceState:(Landroid/app/Activity;Landroid/os/Bundle;)V:GetOnActivitySaveInstanceState_Landroid_app_Activity_Landroid_os_Bundle_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityStarted:(Landroid/app/Activity;)V:GetOnActivityStarted_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + "n_onActivityStopped:(Landroid/app/Activity;)V:GetOnActivityStopped_Landroid_app_Activity_Handler:Android.App.Application/IActivityLifecycleCallbacksInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null\n" + + ""; + } + + public MainApplication () + { + mono.MonoPackageManager.setContext (this); + } + + + public void onCreate () + { + n_onCreate (); + } + + private native void n_onCreate (); + + + public void onTerminate () + { + n_onTerminate (); + } + + private native void n_onTerminate (); + + + public void onActivityCreated (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivityCreated (p0, p1); + } + + private native void n_onActivityCreated (android.app.Activity p0, android.os.Bundle p1); + + + public void onActivityDestroyed (android.app.Activity p0) + { + n_onActivityDestroyed (p0); + } + + private native void n_onActivityDestroyed (android.app.Activity p0); + + + public void onActivityPaused (android.app.Activity p0) + { + n_onActivityPaused (p0); + } + + private native void n_onActivityPaused (android.app.Activity p0); + + + public void onActivityResumed (android.app.Activity p0) + { + n_onActivityResumed (p0); + } + + private native void n_onActivityResumed (android.app.Activity p0); + + + public void onActivitySaveInstanceState (android.app.Activity p0, android.os.Bundle p1) + { + n_onActivitySaveInstanceState (p0, p1); + } + + private native void n_onActivitySaveInstanceState (android.app.Activity p0, android.os.Bundle p1); + + + public void onActivityStarted (android.app.Activity p0) + { + n_onActivityStarted (p0); + } + + private native void n_onActivityStarted (android.app.Activity p0); + + + public void onActivityStopped (android.app.Activity p0) + { + n_onActivityStopped (p0); + } + + private native void n_onActivityStopped (android.app.Activity p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MyViewHolder.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MyViewHolder.java new file mode 100644 index 0000000..a1be562 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/MyViewHolder.java @@ -0,0 +1,38 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class MyViewHolder + extends android.support.v7.widget.RecyclerView.ViewHolder + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + ""; + mono.android.Runtime.register ("Support.Droid.MyViewHolder, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", MyViewHolder.class, __md_methods); + } + + + public MyViewHolder (android.view.View p0) throws java.lang.Throwable + { + super (p0); + if (getClass () == MyViewHolder.class) + mono.android.TypeManager.Activate ("Support.Droid.MyViewHolder, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Android.Views.View, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065", this, new java.lang.Object[] { p0 }); + } + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/SplashActivity.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/SplashActivity.java new file mode 100644 index 0000000..1decf90 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/SplashActivity.java @@ -0,0 +1,47 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class SplashActivity + extends android.support.v7.app.AppCompatActivity + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCreate:(Landroid/os/Bundle;)V:GetOnCreate_Landroid_os_Bundle_Handler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.SplashActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SplashActivity.class, __md_methods); + } + + + public SplashActivity () throws java.lang.Throwable + { + super (); + if (getClass () == SplashActivity.class) + mono.android.TypeManager.Activate ("Support.Droid.SplashActivity, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCreate (android.os.Bundle p0) + { + n_onCreate (p0); + } + + private native void n_onCreate (android.os.Bundle p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/TabsAdapter.java b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/TabsAdapter.java new file mode 100644 index 0000000..e555a08 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/md5c90de87aed1de882a3163dd2fdbbbd51/TabsAdapter.java @@ -0,0 +1,74 @@ +package md5c90de87aed1de882a3163dd2fdbbbd51; + + +public class TabsAdapter + extends android.support.v4.app.FragmentStatePagerAdapter + implements + mono.android.IGCUserPeer +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_getCount:()I:GetGetCountHandler\n" + + "n_getPageTitle:(I)Ljava/lang/CharSequence;:GetGetPageTitle_IHandler\n" + + "n_getItem:(I)Landroid/support/v4/app/Fragment;:GetGetItem_IHandler\n" + + "n_getItemPosition:(Ljava/lang/Object;)I:GetGetItemPosition_Ljava_lang_Object_Handler\n" + + ""; + mono.android.Runtime.register ("Support.Droid.TabsAdapter, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", TabsAdapter.class, __md_methods); + } + + + public TabsAdapter (android.support.v4.app.FragmentManager p0) throws java.lang.Throwable + { + super (p0); + if (getClass () == TabsAdapter.class) + mono.android.TypeManager.Activate ("Support.Droid.TabsAdapter, Support.Android, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "Android.Support.V4.App.FragmentManager, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", this, new java.lang.Object[] { p0 }); + } + + + public int getCount () + { + return n_getCount (); + } + + private native int n_getCount (); + + + public java.lang.CharSequence getPageTitle (int p0) + { + return n_getPageTitle (p0); + } + + private native java.lang.CharSequence n_getPageTitle (int p0); + + + public android.support.v4.app.Fragment getItem (int p0) + { + return n_getItem (p0); + } + + private native android.support.v4.app.Fragment n_getItem (int p0); + + + public int getItemPosition (java.lang.Object p0) + { + return n_getItemPosition (p0); + } + + private native int n_getItemPosition (java.lang.Object p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/MonoPackageManager.java b/Support/Support.Android/obj/Debug/android/src/mono/MonoPackageManager.java new file mode 100644 index 0000000..4919689 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/MonoPackageManager.java @@ -0,0 +1,118 @@ +package mono; + +import java.io.*; +import java.lang.String; +import java.util.Locale; +import java.util.HashSet; +import java.util.zip.*; +import android.content.Context; +import android.content.Intent; +import android.content.pm.ApplicationInfo; +import android.content.res.AssetManager; +import android.util.Log; +import mono.android.Runtime; + +public class MonoPackageManager { + + static Object lock = new Object (); + static boolean initialized; + + static android.content.Context Context; + + public static void LoadApplication (Context context, ApplicationInfo runtimePackage, String[] apks) + { + synchronized (lock) { + if (context instanceof android.app.Application) { + Context = context; + } + if (!initialized) { + android.content.IntentFilter timezoneChangedFilter = new android.content.IntentFilter ( + android.content.Intent.ACTION_TIMEZONE_CHANGED + ); + context.registerReceiver (new mono.android.app.NotifyTimeZoneChanges (), timezoneChangedFilter); + + System.loadLibrary("monodroid"); + Locale locale = Locale.getDefault (); + String language = locale.getLanguage () + "-" + locale.getCountry (); + String filesDir = context.getFilesDir ().getAbsolutePath (); + String cacheDir = context.getCacheDir ().getAbsolutePath (); + String dataDir = getNativeLibraryPath (context); + ClassLoader loader = context.getClassLoader (); + + Runtime.init ( + language, + apks, + getNativeLibraryPath (runtimePackage), + new String[]{ + filesDir, + cacheDir, + dataDir, + }, + loader, + new java.io.File ( + android.os.Environment.getExternalStorageDirectory (), + "Android/data/" + context.getPackageName () + "/files/.__override__").getAbsolutePath (), + MonoPackageManager_Resources.Assemblies, + context.getPackageName ()); + + mono.android.app.ApplicationRegistration.registerApplications (); + + initialized = true; + } + } + } + + public static void setContext (Context context) + { + // Ignore; vestigial + } + + static String getNativeLibraryPath (Context context) + { + return getNativeLibraryPath (context.getApplicationInfo ()); + } + + static String getNativeLibraryPath (ApplicationInfo ainfo) + { + if (android.os.Build.VERSION.SDK_INT >= 9) + return ainfo.nativeLibraryDir; + return ainfo.dataDir + "/lib"; + } + + public static String[] getAssemblies () + { + return MonoPackageManager_Resources.Assemblies; + } + + public static String[] getDependencies () + { + return MonoPackageManager_Resources.Dependencies; + } + + public static String getApiPackageName () + { + return MonoPackageManager_Resources.ApiPackageName; + } +} + +class MonoPackageManager_Resources { + public static final String[] Assemblies = new String[]{ + /* We need to ensure that "Support.Android.dll" comes first in this list. */ + "Support.Android.dll", + "Newtonsoft.Json.dll", + "Plugin.CurrentActivity.dll", + "Plugin.Share.Abstractions.dll", + "Plugin.Share.dll", + "Xamarin.Android.Support.Animated.Vector.Drawable.dll", + "Xamarin.Android.Support.CustomTabs.dll", + "Xamarin.Android.Support.Design.dll", + "Xamarin.Android.Support.v4.dll", + "Xamarin.Android.Support.v7.AppCompat.dll", + "Xamarin.Android.Support.v7.CardView.dll", + "Xamarin.Android.Support.v7.RecyclerView.dll", + "Xamarin.Android.Support.Vector.Drawable.dll", + }; + public static final String[] Dependencies = new String[]{ + }; + public static final String ApiPackageName = "Mono.Android.Platform.ApiLevel_23"; +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/MonoRuntimeProvider.java b/Support/Support.Android/obj/Debug/android/src/mono/MonoRuntimeProvider.java new file mode 100644 index 0000000..c006006 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/MonoRuntimeProvider.java @@ -0,0 +1,83 @@ +package mono; + +public class MonoRuntimeProvider + extends android.content.ContentProvider +{ + public MonoRuntimeProvider () + { + } + + @Override + public boolean onCreate () + { + return true; + } + + @Override + public void attachInfo (android.content.Context context, android.content.pm.ProviderInfo info) + { + // Mono Runtime Initialization {{{ + android.content.pm.ApplicationInfo apiInfo = null; + + String platformPackage = mono.MonoPackageManager.getApiPackageName (); + if (platformPackage != null) { + Throwable t = null; + try { + apiInfo = context.getPackageManager ().getApplicationInfo (platformPackage, 0); + } catch (android.content.pm.PackageManager.NameNotFoundException e) { + // ignore + } + if (apiInfo == null) { + try { + apiInfo = context.getPackageManager ().getApplicationInfo ("Xamarin.Android.Platform", 0); + } catch (android.content.pm.PackageManager.NameNotFoundException e) { + t = e; + } + } + if (apiInfo == null) + throw new RuntimeException ("Unable to find application " + platformPackage + " or Xamarin.Android.Platform!", t); + } + try { + android.content.pm.ApplicationInfo runtimeInfo = context.getPackageManager ().getApplicationInfo ("Mono.Android.DebugRuntime", 0); + mono.MonoPackageManager.LoadApplication (context, runtimeInfo, + apiInfo != null + ? new String[]{runtimeInfo.sourceDir, apiInfo.sourceDir, context.getApplicationInfo ().sourceDir} + : new String[]{runtimeInfo.sourceDir, context.getApplicationInfo ().sourceDir}); + } catch (android.content.pm.PackageManager.NameNotFoundException e) { + throw new RuntimeException ("Unable to find application Mono.Android.DebugRuntime!", e); + } + // }}} + super.attachInfo (context, info); + } + + @Override + public android.database.Cursor query (android.net.Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public String getType (android.net.Uri uri) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public android.net.Uri insert (android.net.Uri uri, android.content.ContentValues initialValues) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public int delete (android.net.Uri uri, String where, String[] whereArgs) + { + throw new RuntimeException ("This operation is not supported."); + } + + @Override + public int update (android.net.Uri uri, android.content.ContentValues values, String where, String[] whereArgs) + { + throw new RuntimeException ("This operation is not supported."); + } +} + diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/Seppuku.java b/Support/Support.Android/obj/Debug/android/src/mono/android/Seppuku.java new file mode 100644 index 0000000..539c874 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/Seppuku.java @@ -0,0 +1,19 @@ +package mono.android; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.util.Log; + +public class Seppuku extends BroadcastReceiver { + @Override + public void onReceive (Context context, Intent intent) + { + Intent startMain = new Intent (Intent.ACTION_MAIN); + startMain.addCategory (Intent.CATEGORY_HOME); + startMain.setFlags (Intent.FLAG_ACTIVITY_NEW_TASK); + context.startActivity (startMain); + + java.lang.Runtime.getRuntime ().exit (-1); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/app/ApplicationRegistration.java b/Support/Support.Android/obj/Debug/android/src/mono/android/app/ApplicationRegistration.java new file mode 100644 index 0000000..b150f3d --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/app/ApplicationRegistration.java @@ -0,0 +1,10 @@ +package mono.android.app; + +public class ApplicationRegistration { + + public static void registerApplications () + { + // Application and Instrumentation ACWs must be registered first. + + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/app/NotifyTimeZoneChanges.java b/Support/Support.Android/obj/Debug/android/src/mono/android/app/NotifyTimeZoneChanges.java new file mode 100644 index 0000000..21896a0 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/app/NotifyTimeZoneChanges.java @@ -0,0 +1,8 @@ +package mono.android.app; + +public class NotifyTimeZoneChanges extends android.content.BroadcastReceiver { + @Override + public void onReceive (android.content.Context context, android.content.Intent intent) { + mono.android.Runtime.notifyTimeZoneChanged (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/AppBarLayout_OnOffsetChangedListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/AppBarLayout_OnOffsetChangedListenerImplementor.java new file mode 100644 index 0000000..57395ac --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/AppBarLayout_OnOffsetChangedListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.design.widget; + + +public class AppBarLayout_OnOffsetChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.design.widget.AppBarLayout.OnOffsetChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onOffsetChanged:(Landroid/support/design/widget/AppBarLayout;I)V:GetOnOffsetChanged_Landroid_support_design_widget_AppBarLayout_IHandler:Android.Support.Design.Widget.AppBarLayout/IOnOffsetChangedListenerInvoker, Xamarin.Android.Support.Design\n" + + ""; + mono.android.Runtime.register ("Android.Support.Design.Widget.AppBarLayout+IOnOffsetChangedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", AppBarLayout_OnOffsetChangedListenerImplementor.class, __md_methods); + } + + + public AppBarLayout_OnOffsetChangedListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == AppBarLayout_OnOffsetChangedListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.Design.Widget.AppBarLayout+IOnOffsetChangedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onOffsetChanged (android.support.design.widget.AppBarLayout p0, int p1) + { + n_onOffsetChanged (p0, p1); + } + + private native void n_onOffsetChanged (android.support.design.widget.AppBarLayout p0, int p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/NavigationView_OnNavigationItemSelectedListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/NavigationView_OnNavigationItemSelectedListenerImplementor.java new file mode 100644 index 0000000..194bfee --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/NavigationView_OnNavigationItemSelectedListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.design.widget; + + +public class NavigationView_OnNavigationItemSelectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.design.widget.NavigationView.OnNavigationItemSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigationItemSelected:(Landroid/view/MenuItem;)Z:GetOnNavigationItemSelected_Landroid_view_MenuItem_Handler:Android.Support.Design.Widget.NavigationView/IOnNavigationItemSelectedListenerInvoker, Xamarin.Android.Support.Design\n" + + ""; + mono.android.Runtime.register ("Android.Support.Design.Widget.NavigationView+IOnNavigationItemSelectedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", NavigationView_OnNavigationItemSelectedListenerImplementor.class, __md_methods); + } + + + public NavigationView_OnNavigationItemSelectedListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == NavigationView_OnNavigationItemSelectedListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.Design.Widget.NavigationView+IOnNavigationItemSelectedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onNavigationItemSelected (android.view.MenuItem p0) + { + return n_onNavigationItemSelected (p0); + } + + private native boolean n_onNavigationItemSelected (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/SwipeDismissBehavior_OnDismissListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/SwipeDismissBehavior_OnDismissListenerImplementor.java new file mode 100644 index 0000000..6facb3f --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/SwipeDismissBehavior_OnDismissListenerImplementor.java @@ -0,0 +1,57 @@ +package mono.android.support.design.widget; + + +public class SwipeDismissBehavior_OnDismissListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.design.widget.SwipeDismissBehavior.OnDismissListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDismiss:(Landroid/view/View;)V:GetOnDismiss_Landroid_view_View_Handler:Android.Support.Design.Widget.SwipeDismissBehavior/IOnDismissListenerInvoker, Xamarin.Android.Support.Design\n" + + "n_onDragStateChanged:(I)V:GetOnDragStateChanged_IHandler:Android.Support.Design.Widget.SwipeDismissBehavior/IOnDismissListenerInvoker, Xamarin.Android.Support.Design\n" + + ""; + mono.android.Runtime.register ("Android.Support.Design.Widget.SwipeDismissBehavior+IOnDismissListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SwipeDismissBehavior_OnDismissListenerImplementor.class, __md_methods); + } + + + public SwipeDismissBehavior_OnDismissListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == SwipeDismissBehavior_OnDismissListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.Design.Widget.SwipeDismissBehavior+IOnDismissListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onDismiss (android.view.View p0) + { + n_onDismiss (p0); + } + + private native void n_onDismiss (android.view.View p0); + + + public void onDragStateChanged (int p0) + { + n_onDragStateChanged (p0); + } + + private native void n_onDragStateChanged (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/TabLayout_OnTabSelectedListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/TabLayout_OnTabSelectedListenerImplementor.java new file mode 100644 index 0000000..00333cf --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/design/widget/TabLayout_OnTabSelectedListenerImplementor.java @@ -0,0 +1,66 @@ +package mono.android.support.design.widget; + + +public class TabLayout_OnTabSelectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.design.widget.TabLayout.OnTabSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTabReselected:(Landroid/support/design/widget/TabLayout$Tab;)V:GetOnTabReselected_Landroid_support_design_widget_TabLayout_Tab_Handler:Android.Support.Design.Widget.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Android.Support.Design\n" + + "n_onTabSelected:(Landroid/support/design/widget/TabLayout$Tab;)V:GetOnTabSelected_Landroid_support_design_widget_TabLayout_Tab_Handler:Android.Support.Design.Widget.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Android.Support.Design\n" + + "n_onTabUnselected:(Landroid/support/design/widget/TabLayout$Tab;)V:GetOnTabUnselected_Landroid_support_design_widget_TabLayout_Tab_Handler:Android.Support.Design.Widget.TabLayout/IOnTabSelectedListenerInvoker, Xamarin.Android.Support.Design\n" + + ""; + mono.android.Runtime.register ("Android.Support.Design.Widget.TabLayout+IOnTabSelectedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", TabLayout_OnTabSelectedListenerImplementor.class, __md_methods); + } + + + public TabLayout_OnTabSelectedListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == TabLayout_OnTabSelectedListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.Design.Widget.TabLayout+IOnTabSelectedListenerImplementor, Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onTabReselected (android.support.design.widget.TabLayout.Tab p0) + { + n_onTabReselected (p0); + } + + private native void n_onTabReselected (android.support.design.widget.TabLayout.Tab p0); + + + public void onTabSelected (android.support.design.widget.TabLayout.Tab p0) + { + n_onTabSelected (p0); + } + + private native void n_onTabSelected (android.support.design.widget.TabLayout.Tab p0); + + + public void onTabUnselected (android.support.design.widget.TabLayout.Tab p0) + { + n_onTabUnselected (p0); + } + + private native void n_onTabUnselected (android.support.design.widget.TabLayout.Tab p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/app/FragmentManager_OnBackStackChangedListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/app/FragmentManager_OnBackStackChangedListenerImplementor.java new file mode 100644 index 0000000..8f55e21 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/app/FragmentManager_OnBackStackChangedListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.app; + + +public class FragmentManager_OnBackStackChangedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.app.FragmentManager.OnBackStackChangedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onBackStackChanged:()V:GetOnBackStackChangedHandler:Android.Support.V4.App.FragmentManager/IOnBackStackChangedListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.App.FragmentManager+IOnBackStackChangedListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", FragmentManager_OnBackStackChangedListenerImplementor.class, __md_methods); + } + + + public FragmentManager_OnBackStackChangedListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == FragmentManager_OnBackStackChangedListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.App.FragmentManager+IOnBackStackChangedListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onBackStackChanged () + { + n_onBackStackChanged (); + } + + private native void n_onBackStackChanged (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/content/Loader_OnLoadCanceledListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/content/Loader_OnLoadCanceledListenerImplementor.java new file mode 100644 index 0000000..9676cec --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/content/Loader_OnLoadCanceledListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.content; + + +public class Loader_OnLoadCanceledListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.content.Loader.OnLoadCanceledListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLoadCanceled:(Landroid/support/v4/content/Loader;)V:GetOnLoadCanceled_Landroid_support_v4_content_Loader_Handler:Android.Support.V4.Content.Loader/IOnLoadCanceledListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.Content.Loader+IOnLoadCanceledListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", Loader_OnLoadCanceledListenerImplementor.class, __md_methods); + } + + + public Loader_OnLoadCanceledListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == Loader_OnLoadCanceledListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.Content.Loader+IOnLoadCanceledListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onLoadCanceled (android.support.v4.content.Loader p0) + { + n_onLoadCanceled (p0); + } + + private native void n_onLoadCanceled (android.support.v4.content.Loader p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/content/Loader_OnLoadCompleteListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/content/Loader_OnLoadCompleteListenerImplementor.java new file mode 100644 index 0000000..ad12006 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/content/Loader_OnLoadCompleteListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.content; + + +public class Loader_OnLoadCompleteListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.content.Loader.OnLoadCompleteListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onLoadComplete:(Landroid/support/v4/content/Loader;Ljava/lang/Object;)V:GetOnLoadComplete_Landroid_support_v4_content_Loader_Ljava_lang_Object_Handler:Android.Support.V4.Content.Loader/IOnLoadCompleteListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.Content.Loader+IOnLoadCompleteListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", Loader_OnLoadCompleteListenerImplementor.class, __md_methods); + } + + + public Loader_OnLoadCompleteListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == Loader_OnLoadCompleteListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.Content.Loader+IOnLoadCompleteListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onLoadComplete (android.support.v4.content.Loader p0, java.lang.Object p1) + { + n_onLoadComplete (p0, p1); + } + + private native void n_onLoadComplete (android.support.v4.content.Loader p0, java.lang.Object p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/media/session/MediaSessionCompat_OnActiveChangeListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/media/session/MediaSessionCompat_OnActiveChangeListenerImplementor.java new file mode 100644 index 0000000..bd375e5 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/media/session/MediaSessionCompat_OnActiveChangeListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.media.session; + + +public class MediaSessionCompat_OnActiveChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.media.session.MediaSessionCompat.OnActiveChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onActiveChanged:()V:GetOnActiveChangedHandler:Android.Support.V4.Media.Session.MediaSessionCompat/IOnActiveChangeListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.Media.Session.MediaSessionCompat+IOnActiveChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", MediaSessionCompat_OnActiveChangeListenerImplementor.class, __md_methods); + } + + + public MediaSessionCompat_OnActiveChangeListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == MediaSessionCompat_OnActiveChangeListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.Media.Session.MediaSessionCompat+IOnActiveChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onActiveChanged () + { + n_onActiveChanged (); + } + + private native void n_onActiveChanged (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/os/CancellationSignal_OnCancelListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/os/CancellationSignal_OnCancelListenerImplementor.java new file mode 100644 index 0000000..2045454 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/os/CancellationSignal_OnCancelListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.os; + + +public class CancellationSignal_OnCancelListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.os.CancellationSignal.OnCancelListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onCancel:()V:GetOnCancelHandler:Android.Support.V4.OS.CancellationSignal/IOnCancelListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.OS.CancellationSignal+IOnCancelListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", CancellationSignal_OnCancelListenerImplementor.class, __md_methods); + } + + + public CancellationSignal_OnCancelListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == CancellationSignal_OnCancelListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.OS.CancellationSignal+IOnCancelListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onCancel () + { + n_onCancel (); + } + + private native void n_onCancel (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ActionProvider_SubUiVisibilityListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ActionProvider_SubUiVisibilityListenerImplementor.java new file mode 100644 index 0000000..669b415 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ActionProvider_SubUiVisibilityListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.view; + + +public class ActionProvider_SubUiVisibilityListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.view.ActionProvider.SubUiVisibilityListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onSubUiVisibilityChanged:(Z)V:GetOnSubUiVisibilityChanged_ZHandler:Android.Support.V4.View.ActionProvider/ISubUiVisibilityListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.View.ActionProvider+ISubUiVisibilityListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ActionProvider_SubUiVisibilityListenerImplementor.class, __md_methods); + } + + + public ActionProvider_SubUiVisibilityListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ActionProvider_SubUiVisibilityListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.View.ActionProvider+ISubUiVisibilityListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onSubUiVisibilityChanged (boolean p0) + { + n_onSubUiVisibilityChanged (p0); + } + + private native void n_onSubUiVisibilityChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ActionProvider_VisibilityListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ActionProvider_VisibilityListenerImplementor.java new file mode 100644 index 0000000..9ede1f2 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ActionProvider_VisibilityListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.view; + + +public class ActionProvider_VisibilityListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.view.ActionProvider.VisibilityListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onActionProviderVisibilityChanged:(Z)V:GetOnActionProviderVisibilityChanged_ZHandler:Android.Support.V4.View.ActionProvider/IVisibilityListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.View.ActionProvider+IVisibilityListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ActionProvider_VisibilityListenerImplementor.class, __md_methods); + } + + + public ActionProvider_VisibilityListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ActionProvider_VisibilityListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.View.ActionProvider+IVisibilityListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onActionProviderVisibilityChanged (boolean p0) + { + n_onActionProviderVisibilityChanged (p0); + } + + private native void n_onActionProviderVisibilityChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/MenuItemCompat_OnActionExpandListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/MenuItemCompat_OnActionExpandListenerImplementor.java new file mode 100644 index 0000000..842a8ee --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/MenuItemCompat_OnActionExpandListenerImplementor.java @@ -0,0 +1,57 @@ +package mono.android.support.v4.view; + + +public class MenuItemCompat_OnActionExpandListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.view.MenuItemCompat.OnActionExpandListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemActionCollapse:(Landroid/view/MenuItem;)Z:GetOnMenuItemActionCollapse_Landroid_view_MenuItem_Handler:Android.Support.V4.View.MenuItemCompat/IOnActionExpandListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onMenuItemActionExpand:(Landroid/view/MenuItem;)Z:GetOnMenuItemActionExpand_Landroid_view_MenuItem_Handler:Android.Support.V4.View.MenuItemCompat/IOnActionExpandListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.View.MenuItemCompat+IOnActionExpandListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", MenuItemCompat_OnActionExpandListenerImplementor.class, __md_methods); + } + + + public MenuItemCompat_OnActionExpandListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == MenuItemCompat_OnActionExpandListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.View.MenuItemCompat+IOnActionExpandListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onMenuItemActionCollapse (android.view.MenuItem p0) + { + return n_onMenuItemActionCollapse (p0); + } + + private native boolean n_onMenuItemActionCollapse (android.view.MenuItem p0); + + + public boolean onMenuItemActionExpand (android.view.MenuItem p0) + { + return n_onMenuItemActionExpand (p0); + } + + private native boolean n_onMenuItemActionExpand (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/OnApplyWindowInsetsListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/OnApplyWindowInsetsListenerImplementor.java new file mode 100644 index 0000000..1bfd37b --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/OnApplyWindowInsetsListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.view; + + +public class OnApplyWindowInsetsListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.view.OnApplyWindowInsetsListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onApplyWindowInsets:(Landroid/view/View;Landroid/support/v4/view/WindowInsetsCompat;)Landroid/support/v4/view/WindowInsetsCompat;:GetOnApplyWindowInsets_Landroid_view_View_Landroid_support_v4_view_WindowInsetsCompat_Handler:Android.Support.V4.View.IOnApplyWindowInsetsListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", OnApplyWindowInsetsListenerImplementor.class, __md_methods); + } + + + public OnApplyWindowInsetsListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == OnApplyWindowInsetsListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.View.IOnApplyWindowInsetsListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public android.support.v4.view.WindowInsetsCompat onApplyWindowInsets (android.view.View p0, android.support.v4.view.WindowInsetsCompat p1) + { + return n_onApplyWindowInsets (p0, p1); + } + + private native android.support.v4.view.WindowInsetsCompat n_onApplyWindowInsets (android.view.View p0, android.support.v4.view.WindowInsetsCompat p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPager_OnPageChangeListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPager_OnPageChangeListenerImplementor.java new file mode 100644 index 0000000..81660a1 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPager_OnPageChangeListenerImplementor.java @@ -0,0 +1,66 @@ +package mono.android.support.v4.view; + + +public class ViewPager_OnPageChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.view.ViewPager.OnPageChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPageScrollStateChanged:(I)V:GetOnPageScrollStateChanged_IHandler:Android.Support.V4.View.ViewPager/IOnPageChangeListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onPageScrolled:(IFI)V:GetOnPageScrolled_IFIHandler:Android.Support.V4.View.ViewPager/IOnPageChangeListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onPageSelected:(I)V:GetOnPageSelected_IHandler:Android.Support.V4.View.ViewPager/IOnPageChangeListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.View.ViewPager+IOnPageChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ViewPager_OnPageChangeListenerImplementor.class, __md_methods); + } + + + public ViewPager_OnPageChangeListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ViewPager_OnPageChangeListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.View.ViewPager+IOnPageChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onPageScrollStateChanged (int p0) + { + n_onPageScrollStateChanged (p0); + } + + private native void n_onPageScrollStateChanged (int p0); + + + public void onPageScrolled (int p0, float p1, int p2) + { + n_onPageScrolled (p0, p1, p2); + } + + private native void n_onPageScrolled (int p0, float p1, int p2); + + + public void onPageSelected (int p0) + { + n_onPageSelected (p0); + } + + private native void n_onPageSelected (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPropertyAnimatorListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPropertyAnimatorListenerImplementor.java new file mode 100644 index 0000000..64ca380 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPropertyAnimatorListenerImplementor.java @@ -0,0 +1,66 @@ +package mono.android.support.v4.view; + + +public class ViewPropertyAnimatorListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.view.ViewPropertyAnimatorListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationCancel:(Landroid/view/View;)V:GetOnAnimationCancel_Landroid_view_View_Handler:Android.Support.V4.View.IViewPropertyAnimatorListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onAnimationEnd:(Landroid/view/View;)V:GetOnAnimationEnd_Landroid_view_View_Handler:Android.Support.V4.View.IViewPropertyAnimatorListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onAnimationStart:(Landroid/view/View;)V:GetOnAnimationStart_Landroid_view_View_Handler:Android.Support.V4.View.IViewPropertyAnimatorListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.View.IViewPropertyAnimatorListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ViewPropertyAnimatorListenerImplementor.class, __md_methods); + } + + + public ViewPropertyAnimatorListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ViewPropertyAnimatorListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.View.IViewPropertyAnimatorListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onAnimationCancel (android.view.View p0) + { + n_onAnimationCancel (p0); + } + + private native void n_onAnimationCancel (android.view.View p0); + + + public void onAnimationEnd (android.view.View p0) + { + n_onAnimationEnd (p0); + } + + private native void n_onAnimationEnd (android.view.View p0); + + + public void onAnimationStart (android.view.View p0) + { + n_onAnimationStart (p0); + } + + private native void n_onAnimationStart (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPropertyAnimatorUpdateListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPropertyAnimatorUpdateListenerImplementor.java new file mode 100644 index 0000000..c30c390 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/view/ViewPropertyAnimatorUpdateListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.view; + + +public class ViewPropertyAnimatorUpdateListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.view.ViewPropertyAnimatorUpdateListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationUpdate:(Landroid/view/View;)V:GetOnAnimationUpdate_Landroid_view_View_Handler:Android.Support.V4.View.IViewPropertyAnimatorUpdateListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ViewPropertyAnimatorUpdateListenerImplementor.class, __md_methods); + } + + + public ViewPropertyAnimatorUpdateListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ViewPropertyAnimatorUpdateListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.View.IViewPropertyAnimatorUpdateListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onAnimationUpdate (android.view.View p0) + { + n_onAnimationUpdate (p0); + } + + private native void n_onAnimationUpdate (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/DrawerLayout_DrawerListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/DrawerLayout_DrawerListenerImplementor.java new file mode 100644 index 0000000..b8dd2ea --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/DrawerLayout_DrawerListenerImplementor.java @@ -0,0 +1,75 @@ +package mono.android.support.v4.widget; + + +public class DrawerLayout_DrawerListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.widget.DrawerLayout.DrawerListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDrawerClosed:(Landroid/view/View;)V:GetOnDrawerClosed_Landroid_view_View_Handler:Android.Support.V4.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onDrawerOpened:(Landroid/view/View;)V:GetOnDrawerOpened_Landroid_view_View_Handler:Android.Support.V4.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onDrawerSlide:(Landroid/view/View;F)V:GetOnDrawerSlide_Landroid_view_View_FHandler:Android.Support.V4.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onDrawerStateChanged:(I)V:GetOnDrawerStateChanged_IHandler:Android.Support.V4.Widget.DrawerLayout/IDrawerListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.Widget.DrawerLayout+IDrawerListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", DrawerLayout_DrawerListenerImplementor.class, __md_methods); + } + + + public DrawerLayout_DrawerListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == DrawerLayout_DrawerListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.Widget.DrawerLayout+IDrawerListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onDrawerClosed (android.view.View p0) + { + n_onDrawerClosed (p0); + } + + private native void n_onDrawerClosed (android.view.View p0); + + + public void onDrawerOpened (android.view.View p0) + { + n_onDrawerOpened (p0); + } + + private native void n_onDrawerOpened (android.view.View p0); + + + public void onDrawerSlide (android.view.View p0, float p1) + { + n_onDrawerSlide (p0, p1); + } + + private native void n_onDrawerSlide (android.view.View p0, float p1); + + + public void onDrawerStateChanged (int p0) + { + n_onDrawerStateChanged (p0); + } + + private native void n_onDrawerStateChanged (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/NestedScrollView_OnScrollChangeListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/NestedScrollView_OnScrollChangeListenerImplementor.java new file mode 100644 index 0000000..a5e177c --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/NestedScrollView_OnScrollChangeListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.widget; + + +public class NestedScrollView_OnScrollChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.widget.NestedScrollView.OnScrollChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onScrollChange:(Landroid/support/v4/widget/NestedScrollView;IIII)V:GetOnScrollChange_Landroid_support_v4_widget_NestedScrollView_IIIIHandler:Android.Support.V4.Widget.NestedScrollView/IOnScrollChangeListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.Widget.NestedScrollView+IOnScrollChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", NestedScrollView_OnScrollChangeListenerImplementor.class, __md_methods); + } + + + public NestedScrollView_OnScrollChangeListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == NestedScrollView_OnScrollChangeListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.Widget.NestedScrollView+IOnScrollChangeListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onScrollChange (android.support.v4.widget.NestedScrollView p0, int p1, int p2, int p3, int p4) + { + n_onScrollChange (p0, p1, p2, p3, p4); + } + + private native void n_onScrollChange (android.support.v4.widget.NestedScrollView p0, int p1, int p2, int p3, int p4); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/SlidingPaneLayout_PanelSlideListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/SlidingPaneLayout_PanelSlideListenerImplementor.java new file mode 100644 index 0000000..9bc235b --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/SlidingPaneLayout_PanelSlideListenerImplementor.java @@ -0,0 +1,66 @@ +package mono.android.support.v4.widget; + + +public class SlidingPaneLayout_PanelSlideListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.widget.SlidingPaneLayout.PanelSlideListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onPanelClosed:(Landroid/view/View;)V:GetOnPanelClosed_Landroid_view_View_Handler:Android.Support.V4.Widget.SlidingPaneLayout/IPanelSlideListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onPanelOpened:(Landroid/view/View;)V:GetOnPanelOpened_Landroid_view_View_Handler:Android.Support.V4.Widget.SlidingPaneLayout/IPanelSlideListenerInvoker, Xamarin.Android.Support.v4\n" + + "n_onPanelSlide:(Landroid/view/View;F)V:GetOnPanelSlide_Landroid_view_View_FHandler:Android.Support.V4.Widget.SlidingPaneLayout/IPanelSlideListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.Widget.SlidingPaneLayout+IPanelSlideListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SlidingPaneLayout_PanelSlideListenerImplementor.class, __md_methods); + } + + + public SlidingPaneLayout_PanelSlideListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == SlidingPaneLayout_PanelSlideListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.Widget.SlidingPaneLayout+IPanelSlideListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onPanelClosed (android.view.View p0) + { + n_onPanelClosed (p0); + } + + private native void n_onPanelClosed (android.view.View p0); + + + public void onPanelOpened (android.view.View p0) + { + n_onPanelOpened (p0); + } + + private native void n_onPanelOpened (android.view.View p0); + + + public void onPanelSlide (android.view.View p0, float p1) + { + n_onPanelSlide (p0, p1); + } + + private native void n_onPanelSlide (android.view.View p0, float p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.java new file mode 100644 index 0000000..393dd45 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v4/widget/SwipeRefreshLayout_OnRefreshListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v4.widget; + + +public class SwipeRefreshLayout_OnRefreshListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v4.widget.SwipeRefreshLayout.OnRefreshListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onRefresh:()V:GetOnRefreshHandler:Android.Support.V4.Widget.SwipeRefreshLayout/IOnRefreshListenerInvoker, Xamarin.Android.Support.v4\n" + + ""; + mono.android.Runtime.register ("Android.Support.V4.Widget.SwipeRefreshLayout+IOnRefreshListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SwipeRefreshLayout_OnRefreshListenerImplementor.class, __md_methods); + } + + + public SwipeRefreshLayout_OnRefreshListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == SwipeRefreshLayout_OnRefreshListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V4.Widget.SwipeRefreshLayout+IOnRefreshListenerImplementor, Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onRefresh () + { + n_onRefresh (); + } + + private native void n_onRefresh (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_OnMenuVisibilityListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_OnMenuVisibilityListenerImplementor.java new file mode 100644 index 0000000..89e0226 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_OnMenuVisibilityListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.app; + + +public class ActionBar_OnMenuVisibilityListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.app.ActionBar.OnMenuVisibilityListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuVisibilityChanged:(Z)V:GetOnMenuVisibilityChanged_ZHandler:Android.Support.V7.App.ActionBar/IOnMenuVisibilityListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.App.ActionBar+IOnMenuVisibilityListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ActionBar_OnMenuVisibilityListenerImplementor.class, __md_methods); + } + + + public ActionBar_OnMenuVisibilityListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ActionBar_OnMenuVisibilityListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.App.ActionBar+IOnMenuVisibilityListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onMenuVisibilityChanged (boolean p0) + { + n_onMenuVisibilityChanged (p0); + } + + private native void n_onMenuVisibilityChanged (boolean p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_OnNavigationListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_OnNavigationListenerImplementor.java new file mode 100644 index 0000000..2b549cd --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_OnNavigationListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.app; + + +public class ActionBar_OnNavigationListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.app.ActionBar.OnNavigationListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onNavigationItemSelected:(IJ)Z:GetOnNavigationItemSelected_IJHandler:Android.Support.V7.App.ActionBar/IOnNavigationListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.App.ActionBar+IOnNavigationListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ActionBar_OnNavigationListenerImplementor.class, __md_methods); + } + + + public ActionBar_OnNavigationListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ActionBar_OnNavigationListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.App.ActionBar+IOnNavigationListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onNavigationItemSelected (int p0, long p1) + { + return n_onNavigationItemSelected (p0, p1); + } + + private native boolean n_onNavigationItemSelected (int p0, long p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_TabListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_TabListenerImplementor.java new file mode 100644 index 0000000..19a613e --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/app/ActionBar_TabListenerImplementor.java @@ -0,0 +1,66 @@ +package mono.android.support.v7.app; + + +public class ActionBar_TabListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.app.ActionBar.TabListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onTabReselected:(Landroid/support/v7/app/ActionBar$Tab;Landroid/support/v4/app/FragmentTransaction;)V:GetOnTabReselected_Landroid_support_v7_app_ActionBar_Tab_Landroid_support_v4_app_FragmentTransaction_Handler:Android.Support.V7.App.ActionBar/ITabListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + "n_onTabSelected:(Landroid/support/v7/app/ActionBar$Tab;Landroid/support/v4/app/FragmentTransaction;)V:GetOnTabSelected_Landroid_support_v7_app_ActionBar_Tab_Landroid_support_v4_app_FragmentTransaction_Handler:Android.Support.V7.App.ActionBar/ITabListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + "n_onTabUnselected:(Landroid/support/v7/app/ActionBar$Tab;Landroid/support/v4/app/FragmentTransaction;)V:GetOnTabUnselected_Landroid_support_v7_app_ActionBar_Tab_Landroid_support_v4_app_FragmentTransaction_Handler:Android.Support.V7.App.ActionBar/ITabListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.App.ActionBar+ITabListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ActionBar_TabListenerImplementor.class, __md_methods); + } + + + public ActionBar_TabListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ActionBar_TabListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.App.ActionBar+ITabListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onTabReselected (android.support.v7.app.ActionBar.Tab p0, android.support.v4.app.FragmentTransaction p1) + { + n_onTabReselected (p0, p1); + } + + private native void n_onTabReselected (android.support.v7.app.ActionBar.Tab p0, android.support.v4.app.FragmentTransaction p1); + + + public void onTabSelected (android.support.v7.app.ActionBar.Tab p0, android.support.v4.app.FragmentTransaction p1) + { + n_onTabSelected (p0, p1); + } + + private native void n_onTabSelected (android.support.v7.app.ActionBar.Tab p0, android.support.v4.app.FragmentTransaction p1); + + + public void onTabUnselected (android.support.v7.app.ActionBar.Tab p0, android.support.v4.app.FragmentTransaction p1) + { + n_onTabUnselected (p0, p1); + } + + private native void n_onTabUnselected (android.support.v7.app.ActionBar.Tab p0, android.support.v4.app.FragmentTransaction p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ActionMenuView_OnMenuItemClickListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ActionMenuView_OnMenuItemClickListenerImplementor.java new file mode 100644 index 0000000..f4ac392 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ActionMenuView_OnMenuItemClickListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class ActionMenuView_OnMenuItemClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.ActionMenuView.OnMenuItemClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemClick:(Landroid/view/MenuItem;)Z:GetOnMenuItemClick_Landroid_view_MenuItem_Handler:Android.Support.V7.Widget.ActionMenuView/IOnMenuItemClickListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ActionMenuView_OnMenuItemClickListenerImplementor.class, __md_methods); + } + + + public ActionMenuView_OnMenuItemClickListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ActionMenuView_OnMenuItemClickListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.ActionMenuView+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onMenuItemClick (android.view.MenuItem p0) + { + return n_onMenuItemClick (p0); + } + + private native boolean n_onMenuItemClick (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ContentFrameLayout_OnAttachListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ContentFrameLayout_OnAttachListenerImplementor.java new file mode 100644 index 0000000..13421b6 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ContentFrameLayout_OnAttachListenerImplementor.java @@ -0,0 +1,57 @@ +package mono.android.support.v7.widget; + + +public class ContentFrameLayout_OnAttachListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.ContentFrameLayout.OnAttachListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAttachedFromWindow:()V:GetOnAttachedFromWindowHandler:Android.Support.V7.Widget.ContentFrameLayout/IOnAttachListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + "n_onDetachedFromWindow:()V:GetOnDetachedFromWindowHandler:Android.Support.V7.Widget.ContentFrameLayout/IOnAttachListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.ContentFrameLayout+IOnAttachListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ContentFrameLayout_OnAttachListenerImplementor.class, __md_methods); + } + + + public ContentFrameLayout_OnAttachListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ContentFrameLayout_OnAttachListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.ContentFrameLayout+IOnAttachListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onAttachedFromWindow () + { + n_onAttachedFromWindow (); + } + + private native void n_onAttachedFromWindow (); + + + public void onDetachedFromWindow () + { + n_onDetachedFromWindow (); + } + + private native void n_onDetachedFromWindow (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java new file mode 100644 index 0000000..1a5a868 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.FitWindowsViewGroup.OnFitSystemWindowsListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onFitSystemWindows:(Landroid/graphics/Rect;)V:GetOnFitSystemWindows_Landroid_graphics_Rect_Handler:Android.Support.V7.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class, __md_methods); + } + + + public FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == FitWindowsViewGroup_OnFitSystemWindowsListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.IFitWindowsViewGroupOnFitSystemWindowsListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onFitSystemWindows (android.graphics.Rect p0) + { + n_onFitSystemWindows (p0); + } + + private native void n_onFitSystemWindows (android.graphics.Rect p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/PopupMenu_OnDismissListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/PopupMenu_OnDismissListenerImplementor.java new file mode 100644 index 0000000..72e4704 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/PopupMenu_OnDismissListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class PopupMenu_OnDismissListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.PopupMenu.OnDismissListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onDismiss:(Landroid/support/v7/widget/PopupMenu;)V:GetOnDismiss_Landroid_support_v7_widget_PopupMenu_Handler:Android.Support.V7.Widget.PopupMenu/IOnDismissListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.PopupMenu+IOnDismissListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", PopupMenu_OnDismissListenerImplementor.class, __md_methods); + } + + + public PopupMenu_OnDismissListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == PopupMenu_OnDismissListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.PopupMenu+IOnDismissListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onDismiss (android.support.v7.widget.PopupMenu p0) + { + n_onDismiss (p0); + } + + private native void n_onDismiss (android.support.v7.widget.PopupMenu p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/PopupMenu_OnMenuItemClickListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/PopupMenu_OnMenuItemClickListenerImplementor.java new file mode 100644 index 0000000..7a99af8 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/PopupMenu_OnMenuItemClickListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class PopupMenu_OnMenuItemClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.PopupMenu.OnMenuItemClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemClick:(Landroid/view/MenuItem;)Z:GetOnMenuItemClick_Landroid_view_MenuItem_Handler:Android.Support.V7.Widget.PopupMenu/IOnMenuItemClickListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", PopupMenu_OnMenuItemClickListenerImplementor.class, __md_methods); + } + + + public PopupMenu_OnMenuItemClickListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == PopupMenu_OnMenuItemClickListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.PopupMenu+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onMenuItemClick (android.view.MenuItem p0) + { + return n_onMenuItemClick (p0); + } + + private native boolean n_onMenuItemClick (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java new file mode 100644 index 0000000..17b261d --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.RecyclerView.ItemAnimator.ItemAnimatorFinishedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onAnimationsFinished:()V:GetOnAnimationsFinishedHandler:Android.Support.V7.Widget.RecyclerView/ItemAnimator/IItemAnimatorFinishedListenerInvoker, Xamarin.Android.Support.v7.RecyclerView\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class, __md_methods); + } + + + public RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == RecyclerView_ItemAnimator_ItemAnimatorFinishedListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.RecyclerView+ItemAnimator+IItemAnimatorFinishedListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onAnimationsFinished () + { + n_onAnimationsFinished (); + } + + private native void n_onAnimationsFinished (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.java new file mode 100644 index 0000000..a2d565f --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_OnChildAttachStateChangeListenerImplementor.java @@ -0,0 +1,57 @@ +package mono.android.support.v7.widget; + + +public class RecyclerView_OnChildAttachStateChangeListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.RecyclerView.OnChildAttachStateChangeListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onChildViewAttachedToWindow:(Landroid/view/View;)V:GetOnChildViewAttachedToWindow_Landroid_view_View_Handler:Android.Support.V7.Widget.RecyclerView/IOnChildAttachStateChangeListenerInvoker, Xamarin.Android.Support.v7.RecyclerView\n" + + "n_onChildViewDetachedFromWindow:(Landroid/view/View;)V:GetOnChildViewDetachedFromWindow_Landroid_view_View_Handler:Android.Support.V7.Widget.RecyclerView/IOnChildAttachStateChangeListenerInvoker, Xamarin.Android.Support.v7.RecyclerView\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.RecyclerView+IOnChildAttachStateChangeListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", RecyclerView_OnChildAttachStateChangeListenerImplementor.class, __md_methods); + } + + + public RecyclerView_OnChildAttachStateChangeListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == RecyclerView_OnChildAttachStateChangeListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.RecyclerView+IOnChildAttachStateChangeListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onChildViewAttachedToWindow (android.view.View p0) + { + n_onChildViewAttachedToWindow (p0); + } + + private native void n_onChildViewAttachedToWindow (android.view.View p0); + + + public void onChildViewDetachedFromWindow (android.view.View p0) + { + n_onChildViewDetachedFromWindow (p0); + } + + private native void n_onChildViewDetachedFromWindow (android.view.View p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_OnItemTouchListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_OnItemTouchListenerImplementor.java new file mode 100644 index 0000000..07f5fc3 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_OnItemTouchListenerImplementor.java @@ -0,0 +1,66 @@ +package mono.android.support.v7.widget; + + +public class RecyclerView_OnItemTouchListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.RecyclerView.OnItemTouchListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInterceptTouchEvent:(Landroid/support/v7/widget/RecyclerView;Landroid/view/MotionEvent;)Z:GetOnInterceptTouchEvent_Landroid_support_v7_widget_RecyclerView_Landroid_view_MotionEvent_Handler:Android.Support.V7.Widget.RecyclerView/IOnItemTouchListenerInvoker, Xamarin.Android.Support.v7.RecyclerView\n" + + "n_onRequestDisallowInterceptTouchEvent:(Z)V:GetOnRequestDisallowInterceptTouchEvent_ZHandler:Android.Support.V7.Widget.RecyclerView/IOnItemTouchListenerInvoker, Xamarin.Android.Support.v7.RecyclerView\n" + + "n_onTouchEvent:(Landroid/support/v7/widget/RecyclerView;Landroid/view/MotionEvent;)V:GetOnTouchEvent_Landroid_support_v7_widget_RecyclerView_Landroid_view_MotionEvent_Handler:Android.Support.V7.Widget.RecyclerView/IOnItemTouchListenerInvoker, Xamarin.Android.Support.v7.RecyclerView\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.RecyclerView+IOnItemTouchListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", RecyclerView_OnItemTouchListenerImplementor.class, __md_methods); + } + + + public RecyclerView_OnItemTouchListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == RecyclerView_OnItemTouchListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.RecyclerView+IOnItemTouchListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onInterceptTouchEvent (android.support.v7.widget.RecyclerView p0, android.view.MotionEvent p1) + { + return n_onInterceptTouchEvent (p0, p1); + } + + private native boolean n_onInterceptTouchEvent (android.support.v7.widget.RecyclerView p0, android.view.MotionEvent p1); + + + public void onRequestDisallowInterceptTouchEvent (boolean p0) + { + n_onRequestDisallowInterceptTouchEvent (p0); + } + + private native void n_onRequestDisallowInterceptTouchEvent (boolean p0); + + + public void onTouchEvent (android.support.v7.widget.RecyclerView p0, android.view.MotionEvent p1) + { + n_onTouchEvent (p0, p1); + } + + private native void n_onTouchEvent (android.support.v7.widget.RecyclerView p0, android.view.MotionEvent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_RecyclerListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_RecyclerListenerImplementor.java new file mode 100644 index 0000000..226e1ac --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/RecyclerView_RecyclerListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class RecyclerView_RecyclerListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.RecyclerView.RecyclerListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onViewRecycled:(Landroid/support/v7/widget/RecyclerView$ViewHolder;)V:GetOnViewRecycled_Landroid_support_v7_widget_RecyclerView_ViewHolder_Handler:Android.Support.V7.Widget.RecyclerView/IRecyclerListenerInvoker, Xamarin.Android.Support.v7.RecyclerView\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.RecyclerView+IRecyclerListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", RecyclerView_RecyclerListenerImplementor.class, __md_methods); + } + + + public RecyclerView_RecyclerListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == RecyclerView_RecyclerListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.RecyclerView+IRecyclerListenerImplementor, Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onViewRecycled (android.support.v7.widget.RecyclerView.ViewHolder p0) + { + n_onViewRecycled (p0); + } + + private native void n_onViewRecycled (android.support.v7.widget.RecyclerView.ViewHolder p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnCloseListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnCloseListenerImplementor.java new file mode 100644 index 0000000..1c5d4d5 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnCloseListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class SearchView_OnCloseListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.SearchView.OnCloseListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onClose:()Z:GetOnCloseHandler:Android.Support.V7.Widget.SearchView/IOnCloseListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.SearchView+IOnCloseListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SearchView_OnCloseListenerImplementor.class, __md_methods); + } + + + public SearchView_OnCloseListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == SearchView_OnCloseListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.SearchView+IOnCloseListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onClose () + { + return n_onClose (); + } + + private native boolean n_onClose (); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnQueryTextListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnQueryTextListenerImplementor.java new file mode 100644 index 0000000..79f7364 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnQueryTextListenerImplementor.java @@ -0,0 +1,57 @@ +package mono.android.support.v7.widget; + + +public class SearchView_OnQueryTextListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.SearchView.OnQueryTextListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onQueryTextChange:(Ljava/lang/String;)Z:GetOnQueryTextChange_Ljava_lang_String_Handler:Android.Support.V7.Widget.SearchView/IOnQueryTextListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + "n_onQueryTextSubmit:(Ljava/lang/String;)Z:GetOnQueryTextSubmit_Ljava_lang_String_Handler:Android.Support.V7.Widget.SearchView/IOnQueryTextListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.SearchView+IOnQueryTextListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SearchView_OnQueryTextListenerImplementor.class, __md_methods); + } + + + public SearchView_OnQueryTextListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == SearchView_OnQueryTextListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.SearchView+IOnQueryTextListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onQueryTextChange (java.lang.String p0) + { + return n_onQueryTextChange (p0); + } + + private native boolean n_onQueryTextChange (java.lang.String p0); + + + public boolean onQueryTextSubmit (java.lang.String p0) + { + return n_onQueryTextSubmit (p0); + } + + private native boolean n_onQueryTextSubmit (java.lang.String p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnSuggestionListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnSuggestionListenerImplementor.java new file mode 100644 index 0000000..b38aca6 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/SearchView_OnSuggestionListenerImplementor.java @@ -0,0 +1,57 @@ +package mono.android.support.v7.widget; + + +public class SearchView_OnSuggestionListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.SearchView.OnSuggestionListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onSuggestionClick:(I)Z:GetOnSuggestionClick_IHandler:Android.Support.V7.Widget.SearchView/IOnSuggestionListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + "n_onSuggestionSelect:(I)Z:GetOnSuggestionSelect_IHandler:Android.Support.V7.Widget.SearchView/IOnSuggestionListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.SearchView+IOnSuggestionListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", SearchView_OnSuggestionListenerImplementor.class, __md_methods); + } + + + public SearchView_OnSuggestionListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == SearchView_OnSuggestionListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.SearchView+IOnSuggestionListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onSuggestionClick (int p0) + { + return n_onSuggestionClick (p0); + } + + private native boolean n_onSuggestionClick (int p0); + + + public boolean onSuggestionSelect (int p0) + { + return n_onSuggestionSelect (p0); + } + + private native boolean n_onSuggestionSelect (int p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.java new file mode 100644 index 0000000..c4d7bac --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ShareActionProvider_OnShareTargetSelectedListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class ShareActionProvider_OnShareTargetSelectedListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.ShareActionProvider.OnShareTargetSelectedListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onShareTargetSelected:(Landroid/support/v7/widget/ShareActionProvider;Landroid/content/Intent;)Z:GetOnShareTargetSelected_Landroid_support_v7_widget_ShareActionProvider_Landroid_content_Intent_Handler:Android.Support.V7.Widget.ShareActionProvider/IOnShareTargetSelectedListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ShareActionProvider_OnShareTargetSelectedListenerImplementor.class, __md_methods); + } + + + public ShareActionProvider_OnShareTargetSelectedListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ShareActionProvider_OnShareTargetSelectedListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.ShareActionProvider+IOnShareTargetSelectedListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onShareTargetSelected (android.support.v7.widget.ShareActionProvider p0, android.content.Intent p1) + { + return n_onShareTargetSelected (p0, p1); + } + + private native boolean n_onShareTargetSelected (android.support.v7.widget.ShareActionProvider p0, android.content.Intent p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/Toolbar_OnMenuItemClickListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/Toolbar_OnMenuItemClickListenerImplementor.java new file mode 100644 index 0000000..cf34d82 --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/Toolbar_OnMenuItemClickListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class Toolbar_OnMenuItemClickListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.Toolbar.OnMenuItemClickListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onMenuItemClick:(Landroid/view/MenuItem;)Z:GetOnMenuItemClick_Landroid_view_MenuItem_Handler:Android.Support.V7.Widget.Toolbar/IOnMenuItemClickListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", Toolbar_OnMenuItemClickListenerImplementor.class, __md_methods); + } + + + public Toolbar_OnMenuItemClickListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == Toolbar_OnMenuItemClickListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.Toolbar+IOnMenuItemClickListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public boolean onMenuItemClick (android.view.MenuItem p0) + { + return n_onMenuItemClick (p0); + } + + private native boolean n_onMenuItemClick (android.view.MenuItem p0); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ViewStubCompat_OnInflateListenerImplementor.java b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ViewStubCompat_OnInflateListenerImplementor.java new file mode 100644 index 0000000..0496fad --- /dev/null +++ b/Support/Support.Android/obj/Debug/android/src/mono/android/support/v7/widget/ViewStubCompat_OnInflateListenerImplementor.java @@ -0,0 +1,48 @@ +package mono.android.support.v7.widget; + + +public class ViewStubCompat_OnInflateListenerImplementor + extends java.lang.Object + implements + mono.android.IGCUserPeer, + android.support.v7.widget.ViewStubCompat.OnInflateListener +{ +/** @hide */ + public static final String __md_methods; + static { + __md_methods = + "n_onInflate:(Landroid/support/v7/widget/ViewStubCompat;Landroid/view/View;)V:GetOnInflate_Landroid_support_v7_widget_ViewStubCompat_Landroid_view_View_Handler:Android.Support.V7.Widget.ViewStubCompat/IOnInflateListenerInvoker, Xamarin.Android.Support.v7.AppCompat\n" + + ""; + mono.android.Runtime.register ("Android.Support.V7.Widget.ViewStubCompat+IOnInflateListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", ViewStubCompat_OnInflateListenerImplementor.class, __md_methods); + } + + + public ViewStubCompat_OnInflateListenerImplementor () throws java.lang.Throwable + { + super (); + if (getClass () == ViewStubCompat_OnInflateListenerImplementor.class) + mono.android.TypeManager.Activate ("Android.Support.V7.Widget.ViewStubCompat+IOnInflateListenerImplementor, Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null", "", this, new java.lang.Object[] { }); + } + + + public void onInflate (android.support.v7.widget.ViewStubCompat p0, android.view.View p1) + { + n_onInflate (p0, p1); + } + + private native void n_onInflate (android.support.v7.widget.ViewStubCompat p0, android.view.View p1); + + private java.util.ArrayList refList; + public void monodroidAddReference (java.lang.Object obj) + { + if (refList == null) + refList = new java.util.ArrayList (); + refList.add (obj); + } + + public void monodroidClearReferences () + { + if (refList != null) + refList.clear (); + } +} diff --git a/Support/Support.Android/obj/Debug/android/typemap.jm b/Support/Support.Android/obj/Debug/android/typemap.jm new file mode 100644 index 0000000..59eeb60 Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/typemap.jm differ diff --git a/Support/Support.Android/obj/Debug/android/typemap.mj b/Support/Support.Android/obj/Debug/android/typemap.mj new file mode 100644 index 0000000..e74569b Binary files /dev/null and b/Support/Support.Android/obj/Debug/android/typemap.mj differ diff --git a/Support/Support.Android/obj/Debug/android_debug_keystore.flag b/Support/Support.Android/obj/Debug/android_debug_keystore.flag new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/build.props b/Support/Support.Android/obj/Debug/build.props new file mode 100644 index 0000000..d379102 --- /dev/null +++ b/Support/Support.Android/obj/Debug/build.props @@ -0,0 +1,19 @@ +BundleAssemblies=False +AotAssemblies=False +AndroidAotMode= +ExplicitCrunch=False +EnableProguard= +UseSharedRuntime=true +EmbedAssembliesIntoApk=False +AndroidLinkMode=None +AndroidLinkSkip= +AndroidSdkBuildToolsVersion=23.0.0 +AndroidSdkPath= +AndroidNdkPath= +JavaSdkPath= +AndroidSequencePointsMode=None +XamarinAndroidVersion=7.1.0-41 +MonoSymbolArchive=False +AndroidUseLatestPlatformSdk=true +TargetFrameworkVersion=v6.0 +AndroidCreatePackagePerAbi= diff --git a/Support/Support.Android/obj/Debug/devices.cache b/Support/Support.Android/obj/Debug/devices.cache new file mode 100644 index 0000000..50102c2 --- /dev/null +++ b/Support/Support.Android/obj/Debug/devices.cache @@ -0,0 +1,7 @@ + + + + + 23 + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/libraryimports.cache b/Support/Support.Android/obj/Debug/libraryimports.cache new file mode 100644 index 0000000..d74d7c0 --- /dev/null +++ b/Support/Support.Android/obj/Debug/libraryimports.cache @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/libraryprojectimports.cache b/Support/Support.Android/obj/Debug/libraryprojectimports.cache new file mode 100644 index 0000000..97f06ad --- /dev/null +++ b/Support/Support.Android/obj/Debug/libraryprojectimports.cache @@ -0,0 +1,17 @@ + + + + + C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\__library_projects__\Plugin.CurrentActivity\library_project_imports\res + C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\__library_projects__\Plugin.Share\library_project_imports\res + + + obj\Debug\__library_projects__\Plugin.CurrentActivity\library_project_imports\assets + obj\Debug\__library_projects__\Plugin.Share\library_project_imports\assets + + + + C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\__library_projects__\Plugin.CurrentActivity.stamp + C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\__library_projects__\Plugin.Share.stamp + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/link.flag b/Support/Support.Android/obj/Debug/link.flag new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll b/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll new file mode 100644 index 0000000..910a9dc Binary files /dev/null and b/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll differ diff --git a/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll.config b/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll.config new file mode 100644 index 0000000..374bc7c --- /dev/null +++ b/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll.mdb b/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll.mdb new file mode 100644 index 0000000..f6c1f59 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linkdst/Support.Android.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Java.Interop.dll b/Support/Support.Android/obj/Debug/linksrc/Java.Interop.dll new file mode 100644 index 0000000..bf5c744 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Java.Interop.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Java.Interop.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Java.Interop.dll.mdb new file mode 100644 index 0000000..8b5baf4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Java.Interop.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Microsoft.CSharp.dll b/Support/Support.Android/obj/Debug/linksrc/Microsoft.CSharp.dll new file mode 100644 index 0000000..1543953 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Microsoft.CSharp.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Microsoft.CSharp.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Microsoft.CSharp.dll.mdb new file mode 100644 index 0000000..231ecd9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Microsoft.CSharp.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Mono.Android.dll b/Support/Support.Android/obj/Debug/linksrc/Mono.Android.dll new file mode 100644 index 0000000..ba7e3bb Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Mono.Android.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Mono.Android.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Mono.Android.dll.mdb new file mode 100644 index 0000000..81cae99 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Mono.Android.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Mono.CSharp.dll b/Support/Support.Android/obj/Debug/linksrc/Mono.CSharp.dll new file mode 100644 index 0000000..03e9d4a Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Mono.CSharp.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Mono.CSharp.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Mono.CSharp.dll.mdb new file mode 100644 index 0000000..f676bf0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Mono.CSharp.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Newtonsoft.Json.dll b/Support/Support.Android/obj/Debug/linksrc/Newtonsoft.Json.dll new file mode 100644 index 0000000..8289274 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Newtonsoft.Json.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Plugin.CurrentActivity.dll b/Support/Support.Android/obj/Debug/linksrc/Plugin.CurrentActivity.dll new file mode 100644 index 0000000..9c155d9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Plugin.CurrentActivity.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.Abstractions.dll b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.Abstractions.dll new file mode 100644 index 0000000..0f69ba8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.Abstractions.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.Abstractions.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.Abstractions.dll.mdb new file mode 100644 index 0000000..9db5b85 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.Abstractions.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.dll b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.dll new file mode 100644 index 0000000..59435fd Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.dll.mdb new file mode 100644 index 0000000..e338b68 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Plugin.Share.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Support.Android.dll b/Support/Support.Android/obj/Debug/linksrc/Support.Android.dll new file mode 100644 index 0000000..910a9dc Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Support.Android.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Support.Android.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Support.Android.dll.mdb new file mode 100644 index 0000000..f6c1f59 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Support.Android.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Support.dll b/Support/Support.Android/obj/Debug/linksrc/Support.dll new file mode 100644 index 0000000..25cad7a Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Support.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Support.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/Support.dll.mdb new file mode 100644 index 0000000..24e3fd0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Support.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Collections.Concurrent.dll b/Support/Support.Android/obj/Debug/linksrc/System.Collections.Concurrent.dll new file mode 100644 index 0000000..fcfc851 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Collections.Concurrent.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Collections.dll b/Support/Support.Android/obj/Debug/linksrc/System.Collections.dll new file mode 100644 index 0000000..b4557ca Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Collections.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.ComponentModel.Composition.dll b/Support/Support.Android/obj/Debug/linksrc/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..f835753 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.ComponentModel.Composition.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.ComponentModel.Composition.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.ComponentModel.Composition.dll.mdb new file mode 100644 index 0000000..6289810 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.ComponentModel.Composition.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Core.dll b/Support/Support.Android/obj/Debug/linksrc/System.Core.dll new file mode 100644 index 0000000..ca6a2ec Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Core.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Core.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.Core.dll.mdb new file mode 100644 index 0000000..fb5a5c0 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Core.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Diagnostics.Debug.dll b/Support/Support.Android/obj/Debug/linksrc/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..68ab8c4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Diagnostics.Debug.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Dynamic.Runtime.dll b/Support/Support.Android/obj/Debug/linksrc/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..022685b Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Dynamic.Runtime.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Globalization.dll b/Support/Support.Android/obj/Debug/linksrc/System.Globalization.dll new file mode 100644 index 0000000..adc80c1 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Globalization.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.IO.dll b/Support/Support.Android/obj/Debug/linksrc/System.IO.dll new file mode 100644 index 0000000..a4c9129 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.IO.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Linq.Expressions.dll b/Support/Support.Android/obj/Debug/linksrc/System.Linq.Expressions.dll new file mode 100644 index 0000000..fa63a09 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Linq.Expressions.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Linq.dll b/Support/Support.Android/obj/Debug/linksrc/System.Linq.dll new file mode 100644 index 0000000..0c0f400 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Linq.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Net.Http.dll b/Support/Support.Android/obj/Debug/linksrc/System.Net.Http.dll new file mode 100644 index 0000000..3c9c330 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Net.Http.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Net.Http.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.Net.Http.dll.mdb new file mode 100644 index 0000000..675b784 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Net.Http.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.ObjectModel.dll b/Support/Support.Android/obj/Debug/linksrc/System.ObjectModel.dll new file mode 100644 index 0000000..cfafe99 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.ObjectModel.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Reflection.Extensions.dll b/Support/Support.Android/obj/Debug/linksrc/System.Reflection.Extensions.dll new file mode 100644 index 0000000..91566bd Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Reflection.Extensions.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Reflection.dll b/Support/Support.Android/obj/Debug/linksrc/System.Reflection.dll new file mode 100644 index 0000000..d643358 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Reflection.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Resources.ResourceManager.dll b/Support/Support.Android/obj/Debug/linksrc/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..cdae85f Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Resources.ResourceManager.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Extensions.dll b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Extensions.dll new file mode 100644 index 0000000..feb9c66 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Extensions.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Runtime.InteropServices.dll b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..82b37d5 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.InteropServices.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.Primitives.dll b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..7c19005 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.Primitives.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.Primitives.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.Primitives.dll.mdb new file mode 100644 index 0000000..bf70bb8 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.Primitives.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.dll b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.dll new file mode 100644 index 0000000..5c600dc Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.dll.mdb new file mode 100644 index 0000000..c0c8eca Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.Serialization.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Runtime.dll b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.dll new file mode 100644 index 0000000..8a9370a Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Runtime.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.ServiceModel.Internals.dll b/Support/Support.Android/obj/Debug/linksrc/System.ServiceModel.Internals.dll new file mode 100644 index 0000000..4a93e39 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.ServiceModel.Internals.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.ServiceModel.Internals.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.ServiceModel.Internals.dll.mdb new file mode 100644 index 0000000..5970bcf Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.ServiceModel.Internals.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Text.Encoding.Extensions.dll b/Support/Support.Android/obj/Debug/linksrc/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..24de028 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Text.Encoding.Extensions.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Text.Encoding.dll b/Support/Support.Android/obj/Debug/linksrc/System.Text.Encoding.dll new file mode 100644 index 0000000..2863253 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Text.Encoding.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Text.RegularExpressions.dll b/Support/Support.Android/obj/Debug/linksrc/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..f62b872 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Text.RegularExpressions.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Threading.Tasks.dll b/Support/Support.Android/obj/Debug/linksrc/System.Threading.Tasks.dll new file mode 100644 index 0000000..b46f343 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Threading.Tasks.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Threading.dll b/Support/Support.Android/obj/Debug/linksrc/System.Threading.dll new file mode 100644 index 0000000..efe849e Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Threading.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Xml.Linq.dll b/Support/Support.Android/obj/Debug/linksrc/System.Xml.Linq.dll new file mode 100644 index 0000000..a96c883 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Xml.Linq.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Xml.Linq.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.Xml.Linq.dll.mdb new file mode 100644 index 0000000..09e1862 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Xml.Linq.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Xml.ReaderWriter.dll b/Support/Support.Android/obj/Debug/linksrc/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..09adacd Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Xml.ReaderWriter.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Xml.XDocument.dll b/Support/Support.Android/obj/Debug/linksrc/System.Xml.XDocument.dll new file mode 100644 index 0000000..0dca660 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Xml.XDocument.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Xml.dll b/Support/Support.Android/obj/Debug/linksrc/System.Xml.dll new file mode 100644 index 0000000..1e7c16b Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Xml.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.Xml.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.Xml.dll.mdb new file mode 100644 index 0000000..4b4499f Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.Xml.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.dll b/Support/Support.Android/obj/Debug/linksrc/System.dll new file mode 100644 index 0000000..0c08c9d Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/System.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/System.dll.mdb new file mode 100644 index 0000000..89e35f2 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/System.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Animated.Vector.Drawable.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Animated.Vector.Drawable.dll new file mode 100644 index 0000000..7e8f124 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Animated.Vector.Drawable.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.CustomTabs.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.CustomTabs.dll new file mode 100644 index 0000000..69349d4 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.CustomTabs.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Design.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Design.dll new file mode 100644 index 0000000..39815e9 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Design.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Vector.Drawable.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Vector.Drawable.dll new file mode 100644 index 0000000..125d2da Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.Vector.Drawable.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v4.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v4.dll new file mode 100644 index 0000000..fa14c84 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v4.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.AppCompat.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.AppCompat.dll new file mode 100644 index 0000000..39fa7d1 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.AppCompat.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.CardView.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.CardView.dll new file mode 100644 index 0000000..116d42c Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.CardView.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.RecyclerView.dll b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.RecyclerView.dll new file mode 100644 index 0000000..5874bdd Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/Xamarin.Android.Support.v7.RecyclerView.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/mscorlib.dll b/Support/Support.Android/obj/Debug/linksrc/mscorlib.dll new file mode 100644 index 0000000..f763a72 Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/mscorlib.dll differ diff --git a/Support/Support.Android/obj/Debug/linksrc/mscorlib.dll.mdb b/Support/Support.Android/obj/Debug/linksrc/mscorlib.dll.mdb new file mode 100644 index 0000000..09b990e Binary files /dev/null and b/Support/Support.Android/obj/Debug/linksrc/mscorlib.dll.mdb differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-hdpi/ic_save.png b/Support/Support.Android/obj/Debug/res/drawable-hdpi/ic_save.png new file mode 100644 index 0000000..324ae5e Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-hdpi/ic_save.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-hdpi/profile_generic.png b/Support/Support.Android/obj/Debug/res/drawable-hdpi/profile_generic.png new file mode 100644 index 0000000..05e8a93 Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-hdpi/profile_generic.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-mdpi/ic_save.png b/Support/Support.Android/obj/Debug/res/drawable-mdpi/ic_save.png new file mode 100644 index 0000000..478b020 Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-mdpi/ic_save.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-mdpi/profile_generic.png b/Support/Support.Android/obj/Debug/res/drawable-mdpi/profile_generic.png new file mode 100644 index 0000000..878354c Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-mdpi/profile_generic.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-xhdpi/ic_save.png b/Support/Support.Android/obj/Debug/res/drawable-xhdpi/ic_save.png new file mode 100644 index 0000000..1b8bdbf Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-xhdpi/ic_save.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-xhdpi/profile_generic.png b/Support/Support.Android/obj/Debug/res/drawable-xhdpi/profile_generic.png new file mode 100644 index 0000000..9527b6f Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-xhdpi/profile_generic.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-xxhdpi/ic_save.png b/Support/Support.Android/obj/Debug/res/drawable-xxhdpi/ic_save.png new file mode 100644 index 0000000..9c4930c Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-xxhdpi/ic_save.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-xxhdpi/profile_generic.png b/Support/Support.Android/obj/Debug/res/drawable-xxhdpi/profile_generic.png new file mode 100644 index 0000000..770c94f Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-xxhdpi/profile_generic.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-xxxhdpi/ic_save.png b/Support/Support.Android/obj/Debug/res/drawable-xxxhdpi/ic_save.png new file mode 100644 index 0000000..db41d31 Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-xxxhdpi/ic_save.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable-xxxhdpi/profile_generic.png b/Support/Support.Android/obj/Debug/res/drawable-xxxhdpi/profile_generic.png new file mode 100644 index 0000000..0acad46 Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable-xxxhdpi/profile_generic.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable/background_splash.xml b/Support/Support.Android/obj/Debug/res/drawable/background_splash.xml new file mode 100644 index 0000000..7196284 --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/drawable/background_splash.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/drawable/circle_background.xml b/Support/Support.Android/obj/Debug/res/drawable/circle_background.xml new file mode 100644 index 0000000..9e06625 --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/drawable/circle_background.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/drawable/heroplaceholder.png b/Support/Support.Android/obj/Debug/res/drawable/heroplaceholder.png new file mode 100644 index 0000000..a014aae Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable/heroplaceholder.png differ diff --git a/Support/Support.Android/obj/Debug/res/drawable/xamarin_logo.png b/Support/Support.Android/obj/Debug/res/drawable/xamarin_logo.png new file mode 100644 index 0000000..b36d00e Binary files /dev/null and b/Support/Support.Android/obj/Debug/res/drawable/xamarin_logo.png differ diff --git a/Support/Support.Android/obj/Debug/res/layout/activity_main.xml b/Support/Support.Android/obj/Debug/res/layout/activity_main.xml new file mode 100644 index 0000000..833d37b --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/layout/activity_main.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/menu/top_menus.xml b/Support/Support.Android/obj/Debug/res/menu/top_menus.xml new file mode 100644 index 0000000..57fb356 --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/menu/top_menus.xml @@ -0,0 +1 @@ +

\ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/values-v19/styles.xml b/Support/Support.Android/obj/Debug/res/values-v19/styles.xml new file mode 100644 index 0000000..3e9f232 --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/values-v19/styles.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/values-v21/styles.xml b/Support/Support.Android/obj/Debug/res/values-v21/styles.xml new file mode 100644 index 0000000..64d9169 --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/values-v21/styles.xml @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/values/arrays.xml b/Support/Support.Android/obj/Debug/res/values/arrays.xml new file mode 100644 index 0000000..b4f4dcf --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/values/arrays.xml @@ -0,0 +1 @@ +@string/tab1@string/tab2 \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/values/colors.xml b/Support/Support.Android/obj/Debug/res/values/colors.xml new file mode 100644 index 0000000..34fc820 --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/values/colors.xml @@ -0,0 +1 @@ +#2196F3#1976D2#96d1ff#F5F5F5 \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/values/dimens.xml b/Support/Support.Android/obj/Debug/res/values/dimens.xml new file mode 100644 index 0000000..d5c222b --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/values/dimens.xml @@ -0,0 +1 @@ +16dp8dp4dp120dp16dp16dp \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/values/strings.xml b/Support/Support.Android/obj/Debug/res/values/strings.xml new file mode 100644 index 0000000..79f0e6e --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/values/strings.xml @@ -0,0 +1 @@ +Hello World, Click Me!SupportBrowseAboutSign InNot NowSigning in...Version 1.0LoginLearn MoreDescription:Title:Text:Quantity:NameInformationDescriptionThis app is written in C# and native APIs using the Xamarin Platform. It shares code with its iOS, Android, & Windows versions.Sign in with your account to save and sync items \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/res/values/styles.xml b/Support/Support.Android/obj/Debug/res/values/styles.xml new file mode 100644 index 0000000..1a89d76 --- /dev/null +++ b/Support/Support.Android/obj/Debug/res/values/styles.xml @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resolved_assemblies.txt b/Support/Support.Android/obj/Debug/resolved_assemblies.txt new file mode 100644 index 0000000..ca7c31c --- /dev/null +++ b/Support/Support.Android/obj/Debug/resolved_assemblies.txt @@ -0,0 +1,49 @@ +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Support.Android.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Java.Interop.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Mono.Android.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Core.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Net.Http.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Xml.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\mscorlib.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Newtonsoft.Json.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Plugin.CurrentActivity.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Plugin.Share.Abstractions.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Plugin.Share.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.Animated.Vector.Drawable.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.CustomTabs.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.Design.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.v4.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.v7.AppCompat.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.v7.CardView.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.v7.RecyclerView.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Xamarin.Android.Support.Vector.Drawable.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Threading.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Runtime.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.ComponentModel.Composition.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Collections.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Collections.Concurrent.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Diagnostics.Debug.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Reflection.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Linq.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Runtime.InteropServices.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Runtime.Extensions.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Reflection.Extensions.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Runtime.Serialization.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.ServiceModel.Internals.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.IO.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Threading.Tasks.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Xml.XDocument.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Xml.Linq.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Globalization.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Runtime.Serialization.Primitives.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Linq.Expressions.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Dynamic.Runtime.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.ObjectModel.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Text.RegularExpressions.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Xml.ReaderWriter.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Text.Encoding.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Text.Encoding.Extensions.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Microsoft.CSharp.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\Mono.CSharp.dll +C:\Users\Admin\Desktop\Github\Sharif-Support\Support\Support.Android\obj\Debug\android\assets\System.Resources.ResourceManager.dll diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/AndroidManifest.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/AndroidManifest.xml new file mode 100644 index 0000000..6c078ef --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/R.txt b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/R.txt new file mode 100644 index 0000000..2d8b3e1 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/R.txt @@ -0,0 +1,1558 @@ +int anim abc_fade_in 0x7f040000 +int anim abc_fade_out 0x7f040001 +int anim abc_grow_fade_in_from_bottom 0x7f040002 +int anim abc_popup_enter 0x7f040003 +int anim abc_popup_exit 0x7f040004 +int anim abc_shrink_fade_out_from_bottom 0x7f040005 +int anim abc_slide_in_bottom 0x7f040006 +int anim abc_slide_in_top 0x7f040007 +int anim abc_slide_out_bottom 0x7f040008 +int anim abc_slide_out_top 0x7f040009 +int anim design_bottom_sheet_slide_in 0x7f04000a +int anim design_bottom_sheet_slide_out 0x7f04000b +int anim design_fab_in 0x7f04000c +int anim design_fab_out 0x7f04000d +int anim design_snackbar_in 0x7f04000e +int anim design_snackbar_out 0x7f04000f +int attr actionBarDivider 0x7f01003e +int attr actionBarItemBackground 0x7f01003f +int attr actionBarPopupTheme 0x7f010038 +int attr actionBarSize 0x7f01003d +int attr actionBarSplitStyle 0x7f01003a +int attr actionBarStyle 0x7f010039 +int attr actionBarTabBarStyle 0x7f010034 +int attr actionBarTabStyle 0x7f010033 +int attr actionBarTabTextStyle 0x7f010035 +int attr actionBarTheme 0x7f01003b +int attr actionBarWidgetTheme 0x7f01003c +int attr actionButtonStyle 0x7f010058 +int attr actionDropDownStyle 0x7f010054 +int attr actionLayout 0x7f0100c6 +int attr actionMenuTextAppearance 0x7f010040 +int attr actionMenuTextColor 0x7f010041 +int attr actionModeBackground 0x7f010044 +int attr actionModeCloseButtonStyle 0x7f010043 +int attr actionModeCloseDrawable 0x7f010046 +int attr actionModeCopyDrawable 0x7f010048 +int attr actionModeCutDrawable 0x7f010047 +int attr actionModeFindDrawable 0x7f01004c +int attr actionModePasteDrawable 0x7f010049 +int attr actionModePopupWindowStyle 0x7f01004e +int attr actionModeSelectAllDrawable 0x7f01004a +int attr actionModeShareDrawable 0x7f01004b +int attr actionModeSplitBackground 0x7f010045 +int attr actionModeStyle 0x7f010042 +int attr actionModeWebSearchDrawable 0x7f01004d +int attr actionOverflowButtonStyle 0x7f010036 +int attr actionOverflowMenuStyle 0x7f010037 +int attr actionProviderClass 0x7f0100c8 +int attr actionViewClass 0x7f0100c7 +int attr activityChooserViewStyle 0x7f010060 +int attr alertDialogButtonGroupStyle 0x7f010083 +int attr alertDialogCenterButtons 0x7f010084 +int attr alertDialogStyle 0x7f010082 +int attr alertDialogTheme 0x7f010085 +int attr allowStacking 0x7f010099 +int attr arrowHeadLength 0x7f0100b8 +int attr arrowShaftLength 0x7f0100b9 +int attr autoCompleteTextViewStyle 0x7f01008a +int attr background 0x7f01000c +int attr backgroundSplit 0x7f01000e +int attr backgroundStacked 0x7f01000d +int attr backgroundTint 0x7f010118 +int attr backgroundTintMode 0x7f010119 +int attr barLength 0x7f0100ba +int attr behavior_hideable 0x7f010098 +int attr behavior_overlapTop 0x7f0100d7 +int attr behavior_peekHeight 0x7f010097 +int attr borderWidth 0x7f0100bf +int attr borderlessButtonStyle 0x7f01005d +int attr bottomSheetDialogTheme 0x7f0100b1 +int attr bottomSheetStyle 0x7f0100b2 +int attr buttonBarButtonStyle 0x7f01005a +int attr buttonBarNegativeButtonStyle 0x7f010088 +int attr buttonBarNeutralButtonStyle 0x7f010089 +int attr buttonBarPositiveButtonStyle 0x7f010087 +int attr buttonBarStyle 0x7f010059 +int attr buttonPanelSideLayout 0x7f01001f +int attr buttonStyle 0x7f01008b +int attr buttonStyleSmall 0x7f01008c +int attr buttonTint 0x7f0100a9 +int attr buttonTintMode 0x7f0100aa +int attr checkboxStyle 0x7f01008d +int attr checkedTextViewStyle 0x7f01008e +int attr closeIcon 0x7f0100dc +int attr closeItemLayout 0x7f01001c +int attr collapseContentDescription 0x7f01010f +int attr collapseIcon 0x7f01010e +int attr collapsedTitleGravity 0x7f0100a6 +int attr collapsedTitleTextAppearance 0x7f0100a2 +int attr color 0x7f0100b4 +int attr colorAccent 0x7f01007b +int attr colorButtonNormal 0x7f01007f +int attr colorControlActivated 0x7f01007d +int attr colorControlHighlight 0x7f01007e +int attr colorControlNormal 0x7f01007c +int attr colorPrimary 0x7f010079 +int attr colorPrimaryDark 0x7f01007a +int attr colorSwitchThumbNormal 0x7f010080 +int attr commitIcon 0x7f0100e1 +int attr contentInsetEnd 0x7f010017 +int attr contentInsetLeft 0x7f010018 +int attr contentInsetRight 0x7f010019 +int attr contentInsetStart 0x7f010016 +int attr contentScrim 0x7f0100a3 +int attr controlBackground 0x7f010081 +int attr counterEnabled 0x7f010101 +int attr counterMaxLength 0x7f010102 +int attr counterOverflowTextAppearance 0x7f010104 +int attr counterTextAppearance 0x7f010103 +int attr customNavigationLayout 0x7f01000f +int attr defaultQueryHint 0x7f0100db +int attr dialogPreferredPadding 0x7f010052 +int attr dialogTheme 0x7f010051 +int attr displayOptions 0x7f010005 +int attr divider 0x7f01000b +int attr dividerHorizontal 0x7f01005f +int attr dividerPadding 0x7f0100c4 +int attr dividerVertical 0x7f01005e +int attr drawableSize 0x7f0100b6 +int attr drawerArrowStyle 0x7f010000 +int attr dropDownListViewStyle 0x7f010071 +int attr dropdownListPreferredItemHeight 0x7f010055 +int attr editTextBackground 0x7f010066 +int attr editTextColor 0x7f010065 +int attr editTextStyle 0x7f01008f +int attr elevation 0x7f01001a +int attr errorEnabled 0x7f0100ff +int attr errorTextAppearance 0x7f010100 +int attr expandActivityOverflowButtonDrawable 0x7f01001e +int attr expanded 0x7f010024 +int attr expandedTitleGravity 0x7f0100a7 +int attr expandedTitleMargin 0x7f01009c +int attr expandedTitleMarginBottom 0x7f0100a0 +int attr expandedTitleMarginEnd 0x7f01009f +int attr expandedTitleMarginStart 0x7f01009d +int attr expandedTitleMarginTop 0x7f01009e +int attr expandedTitleTextAppearance 0x7f0100a1 +int attr fabSize 0x7f0100bd +int attr foregroundInsidePadding 0x7f0100c1 +int attr gapBetweenBars 0x7f0100b7 +int attr goIcon 0x7f0100dd +int attr headerLayout 0x7f0100cf +int attr height 0x7f010001 +int attr hideOnContentScroll 0x7f010015 +int attr hintAnimationEnabled 0x7f010105 +int attr hintEnabled 0x7f0100fe +int attr hintTextAppearance 0x7f0100fd +int attr homeAsUpIndicator 0x7f010057 +int attr homeLayout 0x7f010010 +int attr icon 0x7f010009 +int attr iconifiedByDefault 0x7f0100d9 +int attr imageButtonStyle 0x7f010067 +int attr indeterminateProgressStyle 0x7f010012 +int attr initialActivityCount 0x7f01001d +int attr insetForeground 0x7f0100d6 +int attr isLightTheme 0x7f010002 +int attr itemBackground 0x7f0100cd +int attr itemIconTint 0x7f0100cb +int attr itemPadding 0x7f010014 +int attr itemTextAppearance 0x7f0100ce +int attr itemTextColor 0x7f0100cc +int attr keylines 0x7f0100ab +int attr layout 0x7f0100d8 +int attr layoutManager 0x7f0100d2 +int attr layout_anchor 0x7f0100ae +int attr layout_anchorGravity 0x7f0100b0 +int attr layout_behavior 0x7f0100ad +int attr layout_collapseMode 0x7f01009a +int attr layout_collapseParallaxMultiplier 0x7f01009b +int attr layout_keyline 0x7f0100af +int attr layout_scrollFlags 0x7f010025 +int attr layout_scrollInterpolator 0x7f010026 +int attr listChoiceBackgroundIndicator 0x7f010078 +int attr listDividerAlertDialog 0x7f010053 +int attr listItemLayout 0x7f010023 +int attr listLayout 0x7f010020 +int attr listPopupWindowStyle 0x7f010072 +int attr listPreferredItemHeight 0x7f01006c +int attr listPreferredItemHeightLarge 0x7f01006e +int attr listPreferredItemHeightSmall 0x7f01006d +int attr listPreferredItemPaddingLeft 0x7f01006f +int attr listPreferredItemPaddingRight 0x7f010070 +int attr logo 0x7f01000a +int attr logoDescription 0x7f010112 +int attr maxActionInlineWidth 0x7f0100e5 +int attr maxButtonHeight 0x7f01010d +int attr measureWithLargestChild 0x7f0100c2 +int attr menu 0x7f0100ca +int attr multiChoiceItemLayout 0x7f010021 +int attr navigationContentDescription 0x7f010111 +int attr navigationIcon 0x7f010110 +int attr navigationMode 0x7f010004 +int attr overlapAnchor 0x7f0100d0 +int attr paddingEnd 0x7f010116 +int attr paddingStart 0x7f010115 +int attr panelBackground 0x7f010075 +int attr panelMenuListTheme 0x7f010077 +int attr panelMenuListWidth 0x7f010076 +int attr popupMenuStyle 0x7f010063 +int attr popupTheme 0x7f01001b +int attr popupWindowStyle 0x7f010064 +int attr preserveIconSpacing 0x7f0100c9 +int attr pressedTranslationZ 0x7f0100be +int attr progressBarPadding 0x7f010013 +int attr progressBarStyle 0x7f010011 +int attr queryBackground 0x7f0100e3 +int attr queryHint 0x7f0100da +int attr radioButtonStyle 0x7f010090 +int attr ratingBarStyle 0x7f010091 +int attr ratingBarStyleIndicator 0x7f010092 +int attr ratingBarStyleSmall 0x7f010093 +int attr reverseLayout 0x7f0100d4 +int attr rippleColor 0x7f0100bc +int attr searchHintIcon 0x7f0100df +int attr searchIcon 0x7f0100de +int attr searchViewStyle 0x7f01006b +int attr seekBarStyle 0x7f010094 +int attr selectableItemBackground 0x7f01005b +int attr selectableItemBackgroundBorderless 0x7f01005c +int attr showAsAction 0x7f0100c5 +int attr showDividers 0x7f0100c3 +int attr showText 0x7f0100ec +int attr singleChoiceItemLayout 0x7f010022 +int attr spanCount 0x7f0100d3 +int attr spinBars 0x7f0100b5 +int attr spinnerDropDownItemStyle 0x7f010056 +int attr spinnerStyle 0x7f010095 +int attr splitTrack 0x7f0100eb +int attr srcCompat 0x7f010027 +int attr stackFromEnd 0x7f0100d5 +int attr state_above_anchor 0x7f0100d1 +int attr statusBarBackground 0x7f0100ac +int attr statusBarScrim 0x7f0100a4 +int attr submitBackground 0x7f0100e4 +int attr subtitle 0x7f010006 +int attr subtitleTextAppearance 0x7f010107 +int attr subtitleTextColor 0x7f010114 +int attr subtitleTextStyle 0x7f010008 +int attr suggestionRowLayout 0x7f0100e2 +int attr switchMinWidth 0x7f0100e9 +int attr switchPadding 0x7f0100ea +int attr switchStyle 0x7f010096 +int attr switchTextAppearance 0x7f0100e8 +int attr tabBackground 0x7f0100f0 +int attr tabContentStart 0x7f0100ef +int attr tabGravity 0x7f0100f2 +int attr tabIndicatorColor 0x7f0100ed +int attr tabIndicatorHeight 0x7f0100ee +int attr tabMaxWidth 0x7f0100f4 +int attr tabMinWidth 0x7f0100f3 +int attr tabMode 0x7f0100f1 +int attr tabPadding 0x7f0100fc +int attr tabPaddingBottom 0x7f0100fb +int attr tabPaddingEnd 0x7f0100fa +int attr tabPaddingStart 0x7f0100f8 +int attr tabPaddingTop 0x7f0100f9 +int attr tabSelectedTextColor 0x7f0100f7 +int attr tabTextAppearance 0x7f0100f5 +int attr tabTextColor 0x7f0100f6 +int attr textAllCaps 0x7f010028 +int attr textAppearanceLargePopupMenu 0x7f01004f +int attr textAppearanceListItem 0x7f010073 +int attr textAppearanceListItemSmall 0x7f010074 +int attr textAppearanceSearchResultSubtitle 0x7f010069 +int attr textAppearanceSearchResultTitle 0x7f010068 +int attr textAppearanceSmallPopupMenu 0x7f010050 +int attr textColorAlertDialogListItem 0x7f010086 +int attr textColorError 0x7f0100b3 +int attr textColorSearchUrl 0x7f01006a +int attr theme 0x7f010117 +int attr thickness 0x7f0100bb +int attr thumbTextPadding 0x7f0100e7 +int attr title 0x7f010003 +int attr titleEnabled 0x7f0100a8 +int attr titleMarginBottom 0x7f01010c +int attr titleMarginEnd 0x7f01010a +int attr titleMarginStart 0x7f010109 +int attr titleMarginTop 0x7f01010b +int attr titleMargins 0x7f010108 +int attr titleTextAppearance 0x7f010106 +int attr titleTextColor 0x7f010113 +int attr titleTextStyle 0x7f010007 +int attr toolbarId 0x7f0100a5 +int attr toolbarNavigationButtonStyle 0x7f010062 +int attr toolbarStyle 0x7f010061 +int attr track 0x7f0100e6 +int attr useCompatPadding 0x7f0100c0 +int attr voiceIcon 0x7f0100e0 +int attr windowActionBar 0x7f010029 +int attr windowActionBarOverlay 0x7f01002b +int attr windowActionModeOverlay 0x7f01002c +int attr windowFixedHeightMajor 0x7f010030 +int attr windowFixedHeightMinor 0x7f01002e +int attr windowFixedWidthMajor 0x7f01002d +int attr windowFixedWidthMinor 0x7f01002f +int attr windowMinWidthMajor 0x7f010031 +int attr windowMinWidthMinor 0x7f010032 +int attr windowNoTitle 0x7f01002a +int bool abc_action_bar_embed_tabs 0x7f060003 +int bool abc_action_bar_embed_tabs_pre_jb 0x7f060001 +int bool abc_action_bar_expanded_action_views_exclusive 0x7f060004 +int bool abc_allow_stacked_button_bar 0x7f060000 +int bool abc_config_actionMenuItemAllCaps 0x7f060005 +int bool abc_config_allowActionMenuItemTextWithIcon 0x7f060002 +int bool abc_config_closeDialogWhenTouchOutside 0x7f060006 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f060007 +int color abc_background_cache_hint_selector_material_dark 0x7f0a0044 +int color abc_background_cache_hint_selector_material_light 0x7f0a0045 +int color abc_color_highlight_material 0x7f0a0046 +int color abc_input_method_navigation_guard 0x7f0a0000 +int color abc_primary_text_disable_only_material_dark 0x7f0a0047 +int color abc_primary_text_disable_only_material_light 0x7f0a0048 +int color abc_primary_text_material_dark 0x7f0a0049 +int color abc_primary_text_material_light 0x7f0a004a +int color abc_search_url_text 0x7f0a004b +int color abc_search_url_text_normal 0x7f0a0001 +int color abc_search_url_text_pressed 0x7f0a0002 +int color abc_search_url_text_selected 0x7f0a0003 +int color abc_secondary_text_material_dark 0x7f0a004c +int color abc_secondary_text_material_light 0x7f0a004d +int color accent_material_dark 0x7f0a0004 +int color accent_material_light 0x7f0a0005 +int color background_floating_material_dark 0x7f0a0006 +int color background_floating_material_light 0x7f0a0007 +int color background_material_dark 0x7f0a0008 +int color background_material_light 0x7f0a0009 +int color bright_foreground_disabled_material_dark 0x7f0a000a +int color bright_foreground_disabled_material_light 0x7f0a000b +int color bright_foreground_inverse_material_dark 0x7f0a000c +int color bright_foreground_inverse_material_light 0x7f0a000d +int color bright_foreground_material_dark 0x7f0a000e +int color bright_foreground_material_light 0x7f0a000f +int color button_material_dark 0x7f0a0010 +int color button_material_light 0x7f0a0011 +int color design_fab_shadow_end_color 0x7f0a0012 +int color design_fab_shadow_mid_color 0x7f0a0013 +int color design_fab_shadow_start_color 0x7f0a0014 +int color design_fab_stroke_end_inner_color 0x7f0a0015 +int color design_fab_stroke_end_outer_color 0x7f0a0016 +int color design_fab_stroke_top_inner_color 0x7f0a0017 +int color design_fab_stroke_top_outer_color 0x7f0a0018 +int color design_snackbar_background_color 0x7f0a0019 +int color design_textinput_error_color_dark 0x7f0a001a +int color design_textinput_error_color_light 0x7f0a001b +int color dim_foreground_disabled_material_dark 0x7f0a001c +int color dim_foreground_disabled_material_light 0x7f0a001d +int color dim_foreground_material_dark 0x7f0a001e +int color dim_foreground_material_light 0x7f0a001f +int color foreground_material_dark 0x7f0a0020 +int color foreground_material_light 0x7f0a0021 +int color highlighted_text_material_dark 0x7f0a0022 +int color highlighted_text_material_light 0x7f0a0023 +int color hint_foreground_material_dark 0x7f0a0024 +int color hint_foreground_material_light 0x7f0a0025 +int color material_blue_grey_800 0x7f0a0026 +int color material_blue_grey_900 0x7f0a0027 +int color material_blue_grey_950 0x7f0a0028 +int color material_deep_teal_200 0x7f0a0029 +int color material_deep_teal_500 0x7f0a002a +int color material_grey_100 0x7f0a002b +int color material_grey_300 0x7f0a002c +int color material_grey_50 0x7f0a002d +int color material_grey_600 0x7f0a002e +int color material_grey_800 0x7f0a002f +int color material_grey_850 0x7f0a0030 +int color material_grey_900 0x7f0a0031 +int color primary_dark_material_dark 0x7f0a0032 +int color primary_dark_material_light 0x7f0a0033 +int color primary_material_dark 0x7f0a0034 +int color primary_material_light 0x7f0a0035 +int color primary_text_default_material_dark 0x7f0a0036 +int color primary_text_default_material_light 0x7f0a0037 +int color primary_text_disabled_material_dark 0x7f0a0038 +int color primary_text_disabled_material_light 0x7f0a0039 +int color ripple_material_dark 0x7f0a003a +int color ripple_material_light 0x7f0a003b +int color secondary_text_default_material_dark 0x7f0a003c +int color secondary_text_default_material_light 0x7f0a003d +int color secondary_text_disabled_material_dark 0x7f0a003e +int color secondary_text_disabled_material_light 0x7f0a003f +int color switch_thumb_disabled_material_dark 0x7f0a0040 +int color switch_thumb_disabled_material_light 0x7f0a0041 +int color switch_thumb_material_dark 0x7f0a004e +int color switch_thumb_material_light 0x7f0a004f +int color switch_thumb_normal_material_dark 0x7f0a0042 +int color switch_thumb_normal_material_light 0x7f0a0043 +int dimen abc_action_bar_content_inset_material 0x7f07000d +int dimen abc_action_bar_default_height_material 0x7f070001 +int dimen abc_action_bar_default_padding_end_material 0x7f07000e +int dimen abc_action_bar_default_padding_start_material 0x7f07000f +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070019 +int dimen abc_action_bar_overflow_padding_end_material 0x7f07001a +int dimen abc_action_bar_overflow_padding_start_material 0x7f07001b +int dimen abc_action_bar_progress_bar_size 0x7f070002 +int dimen abc_action_bar_stacked_max_height 0x7f07001c +int dimen abc_action_bar_stacked_tab_max_width 0x7f07001d +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07001e +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07001f +int dimen abc_action_button_min_height_material 0x7f070020 +int dimen abc_action_button_min_width_material 0x7f070021 +int dimen abc_action_button_min_width_overflow_material 0x7f070022 +int dimen abc_alert_dialog_button_bar_height 0x7f070000 +int dimen abc_button_inset_horizontal_material 0x7f070023 +int dimen abc_button_inset_vertical_material 0x7f070024 +int dimen abc_button_padding_horizontal_material 0x7f070025 +int dimen abc_button_padding_vertical_material 0x7f070026 +int dimen abc_config_prefDialogWidth 0x7f070005 +int dimen abc_control_corner_material 0x7f070027 +int dimen abc_control_inset_material 0x7f070028 +int dimen abc_control_padding_material 0x7f070029 +int dimen abc_dialog_fixed_height_major 0x7f070006 +int dimen abc_dialog_fixed_height_minor 0x7f070007 +int dimen abc_dialog_fixed_width_major 0x7f070008 +int dimen abc_dialog_fixed_width_minor 0x7f070009 +int dimen abc_dialog_list_padding_vertical_material 0x7f07002a +int dimen abc_dialog_min_width_major 0x7f07000a +int dimen abc_dialog_min_width_minor 0x7f07000b +int dimen abc_dialog_padding_material 0x7f07002b +int dimen abc_dialog_padding_top_material 0x7f07002c +int dimen abc_disabled_alpha_material_dark 0x7f07002d +int dimen abc_disabled_alpha_material_light 0x7f07002e +int dimen abc_dropdownitem_icon_width 0x7f07002f +int dimen abc_dropdownitem_text_padding_left 0x7f070030 +int dimen abc_dropdownitem_text_padding_right 0x7f070031 +int dimen abc_edit_text_inset_bottom_material 0x7f070032 +int dimen abc_edit_text_inset_horizontal_material 0x7f070033 +int dimen abc_edit_text_inset_top_material 0x7f070034 +int dimen abc_floating_window_z 0x7f070035 +int dimen abc_list_item_padding_horizontal_material 0x7f070036 +int dimen abc_panel_menu_list_width 0x7f070037 +int dimen abc_search_view_preferred_width 0x7f070038 +int dimen abc_search_view_text_min_width 0x7f07000c +int dimen abc_seekbar_track_background_height_material 0x7f070039 +int dimen abc_seekbar_track_progress_height_material 0x7f07003a +int dimen abc_select_dialog_padding_start_material 0x7f07003b +int dimen abc_switch_padding 0x7f070018 +int dimen abc_text_size_body_1_material 0x7f07003c +int dimen abc_text_size_body_2_material 0x7f07003d +int dimen abc_text_size_button_material 0x7f07003e +int dimen abc_text_size_caption_material 0x7f07003f +int dimen abc_text_size_display_1_material 0x7f070040 +int dimen abc_text_size_display_2_material 0x7f070041 +int dimen abc_text_size_display_3_material 0x7f070042 +int dimen abc_text_size_display_4_material 0x7f070043 +int dimen abc_text_size_headline_material 0x7f070044 +int dimen abc_text_size_large_material 0x7f070045 +int dimen abc_text_size_medium_material 0x7f070046 +int dimen abc_text_size_menu_material 0x7f070047 +int dimen abc_text_size_small_material 0x7f070048 +int dimen abc_text_size_subhead_material 0x7f070049 +int dimen abc_text_size_subtitle_material_toolbar 0x7f070003 +int dimen abc_text_size_title_material 0x7f07004a +int dimen abc_text_size_title_material_toolbar 0x7f070004 +int dimen design_appbar_elevation 0x7f07004b +int dimen design_bottom_sheet_modal_elevation 0x7f07004c +int dimen design_bottom_sheet_modal_peek_height 0x7f07004d +int dimen design_fab_border_width 0x7f07004e +int dimen design_fab_elevation 0x7f07004f +int dimen design_fab_image_size 0x7f070050 +int dimen design_fab_size_mini 0x7f070051 +int dimen design_fab_size_normal 0x7f070052 +int dimen design_fab_translation_z_pressed 0x7f070053 +int dimen design_navigation_elevation 0x7f070054 +int dimen design_navigation_icon_padding 0x7f070055 +int dimen design_navigation_icon_size 0x7f070056 +int dimen design_navigation_max_width 0x7f070010 +int dimen design_navigation_padding_bottom 0x7f070057 +int dimen design_navigation_separator_vertical_padding 0x7f070058 +int dimen design_snackbar_action_inline_max_width 0x7f070011 +int dimen design_snackbar_background_corner_radius 0x7f070012 +int dimen design_snackbar_elevation 0x7f070059 +int dimen design_snackbar_extra_spacing_horizontal 0x7f070013 +int dimen design_snackbar_max_width 0x7f070014 +int dimen design_snackbar_min_width 0x7f070015 +int dimen design_snackbar_padding_horizontal 0x7f07005a +int dimen design_snackbar_padding_vertical 0x7f07005b +int dimen design_snackbar_padding_vertical_2lines 0x7f070016 +int dimen design_snackbar_text_size 0x7f07005c +int dimen design_tab_max_width 0x7f07005d +int dimen design_tab_scrollable_min_width 0x7f070017 +int dimen design_tab_text_size 0x7f07005e +int dimen design_tab_text_size_2line 0x7f07005f +int dimen disabled_alpha_material_dark 0x7f070060 +int dimen disabled_alpha_material_light 0x7f070061 +int dimen highlight_alpha_material_colored 0x7f070062 +int dimen highlight_alpha_material_dark 0x7f070063 +int dimen highlight_alpha_material_light 0x7f070064 +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f070065 +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f070066 +int dimen item_touch_helper_swipe_escape_velocity 0x7f070067 +int dimen notification_large_icon_height 0x7f070068 +int dimen notification_large_icon_width 0x7f070069 +int dimen notification_subtext_size 0x7f07006a +int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000 +int drawable abc_action_bar_item_background_material 0x7f020001 +int drawable abc_btn_borderless_material 0x7f020002 +int drawable abc_btn_check_material 0x7f020003 +int drawable abc_btn_check_to_on_mtrl_000 0x7f020004 +int drawable abc_btn_check_to_on_mtrl_015 0x7f020005 +int drawable abc_btn_colored_material 0x7f020006 +int drawable abc_btn_default_mtrl_shape 0x7f020007 +int drawable abc_btn_radio_material 0x7f020008 +int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009 +int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a +int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b +int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e +int drawable abc_cab_background_internal_bg 0x7f02000f +int drawable abc_cab_background_top_material 0x7f020010 +int drawable abc_cab_background_top_mtrl_alpha 0x7f020011 +int drawable abc_control_background_material 0x7f020012 +int drawable abc_dialog_material_background_dark 0x7f020013 +int drawable abc_dialog_material_background_light 0x7f020014 +int drawable abc_edit_text_material 0x7f020015 +int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016 +int drawable abc_ic_clear_mtrl_alpha 0x7f020017 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018 +int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b +int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e +int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f +int drawable abc_ic_search_api_mtrl_alpha 0x7f020020 +int drawable abc_ic_star_black_16dp 0x7f020021 +int drawable abc_ic_star_black_36dp 0x7f020022 +int drawable abc_ic_star_half_black_16dp 0x7f020023 +int drawable abc_ic_star_half_black_36dp 0x7f020024 +int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020025 +int drawable abc_item_background_holo_dark 0x7f020026 +int drawable abc_item_background_holo_light 0x7f020027 +int drawable abc_list_divider_mtrl_alpha 0x7f020028 +int drawable abc_list_focused_holo 0x7f020029 +int drawable abc_list_longpressed_holo 0x7f02002a +int drawable abc_list_pressed_holo_dark 0x7f02002b +int drawable abc_list_pressed_holo_light 0x7f02002c +int drawable abc_list_selector_background_transition_holo_dark 0x7f02002d +int drawable abc_list_selector_background_transition_holo_light 0x7f02002e +int drawable abc_list_selector_disabled_holo_dark 0x7f02002f +int drawable abc_list_selector_disabled_holo_light 0x7f020030 +int drawable abc_list_selector_holo_dark 0x7f020031 +int drawable abc_list_selector_holo_light 0x7f020032 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f020033 +int drawable abc_popup_background_mtrl_mult 0x7f020034 +int drawable abc_ratingbar_full_material 0x7f020035 +int drawable abc_ratingbar_indicator_material 0x7f020036 +int drawable abc_ratingbar_small_material 0x7f020037 +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020038 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020039 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f02003a +int drawable abc_scrubber_primary_mtrl_alpha 0x7f02003b +int drawable abc_scrubber_track_mtrl_alpha 0x7f02003c +int drawable abc_seekbar_thumb_material 0x7f02003d +int drawable abc_seekbar_track_material 0x7f02003e +int drawable abc_spinner_mtrl_am_alpha 0x7f02003f +int drawable abc_spinner_textfield_background_material 0x7f020040 +int drawable abc_switch_thumb_material 0x7f020041 +int drawable abc_switch_track_mtrl_alpha 0x7f020042 +int drawable abc_tab_indicator_material 0x7f020043 +int drawable abc_tab_indicator_mtrl_alpha 0x7f020044 +int drawable abc_text_cursor_material 0x7f020045 +int drawable abc_textfield_activated_mtrl_alpha 0x7f020046 +int drawable abc_textfield_default_mtrl_alpha 0x7f020047 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020048 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f020049 +int drawable abc_textfield_search_material 0x7f02004a +int drawable design_fab_background 0x7f02004b +int drawable design_snackbar_background 0x7f02004c +int drawable notification_template_icon_bg 0x7f02004d +int id action0 0x7f0b0072 +int id action_bar 0x7f0b005a +int id action_bar_activity_content 0x7f0b0000 +int id action_bar_container 0x7f0b0059 +int id action_bar_root 0x7f0b0055 +int id action_bar_spinner 0x7f0b0001 +int id action_bar_subtitle 0x7f0b003b +int id action_bar_title 0x7f0b003a +int id action_context_bar 0x7f0b005b +int id action_divider 0x7f0b0076 +int id action_menu_divider 0x7f0b0002 +int id action_menu_presenter 0x7f0b0003 +int id action_mode_bar 0x7f0b0057 +int id action_mode_bar_stub 0x7f0b0056 +int id action_mode_close_button 0x7f0b003c +int id activity_chooser_view_content 0x7f0b003d +int id alertTitle 0x7f0b0049 +int id always 0x7f0b0033 +int id beginning 0x7f0b0031 +int id bottom 0x7f0b001d +int id buttonPanel 0x7f0b0044 +int id cancel_action 0x7f0b0073 +int id center 0x7f0b001e +int id center_horizontal 0x7f0b001f +int id center_vertical 0x7f0b0020 +int id checkbox 0x7f0b0052 +int id chronometer 0x7f0b0079 +int id clip_horizontal 0x7f0b002c +int id clip_vertical 0x7f0b002d +int id collapseActionView 0x7f0b0034 +int id contentPanel 0x7f0b004a +int id custom 0x7f0b0050 +int id customPanel 0x7f0b004f +int id decor_content_parent 0x7f0b0058 +int id default_activity_button 0x7f0b0040 +int id design_bottom_sheet 0x7f0b006a +int id design_menu_item_action_area 0x7f0b0071 +int id design_menu_item_action_area_stub 0x7f0b0070 +int id design_menu_item_text 0x7f0b006f +int id design_navigation_view 0x7f0b006e +int id disableHome 0x7f0b000e +int id edit_query 0x7f0b005c +int id end 0x7f0b0021 +int id end_padder 0x7f0b007e +int id enterAlways 0x7f0b0015 +int id enterAlwaysCollapsed 0x7f0b0016 +int id exitUntilCollapsed 0x7f0b0017 +int id expand_activities_button 0x7f0b003e +int id expanded_menu 0x7f0b0051 +int id fill 0x7f0b002e +int id fill_horizontal 0x7f0b002f +int id fill_vertical 0x7f0b0022 +int id fixed 0x7f0b0038 +int id home 0x7f0b0004 +int id homeAsUp 0x7f0b000f +int id icon 0x7f0b0042 +int id ifRoom 0x7f0b0035 +int id image 0x7f0b003f +int id info 0x7f0b007d +int id item_touch_helper_previous_elevation 0x7f0b0005 +int id left 0x7f0b0023 +int id line1 0x7f0b0077 +int id line3 0x7f0b007b +int id listMode 0x7f0b000b +int id list_item 0x7f0b0041 +int id media_actions 0x7f0b0075 +int id middle 0x7f0b0032 +int id mini 0x7f0b0030 +int id multiply 0x7f0b0027 +int id navigation_header_container 0x7f0b006d +int id never 0x7f0b0036 +int id none 0x7f0b0010 +int id normal 0x7f0b000c +int id parallax 0x7f0b001b +int id parentPanel 0x7f0b0046 +int id pin 0x7f0b001c +int id progress_circular 0x7f0b0006 +int id progress_horizontal 0x7f0b0007 +int id radio 0x7f0b0054 +int id right 0x7f0b0024 +int id screen 0x7f0b0028 +int id scroll 0x7f0b0018 +int id scrollIndicatorDown 0x7f0b004e +int id scrollIndicatorUp 0x7f0b004b +int id scrollView 0x7f0b004c +int id scrollable 0x7f0b0039 +int id search_badge 0x7f0b005e +int id search_bar 0x7f0b005d +int id search_button 0x7f0b005f +int id search_close_btn 0x7f0b0064 +int id search_edit_frame 0x7f0b0060 +int id search_go_btn 0x7f0b0066 +int id search_mag_icon 0x7f0b0061 +int id search_plate 0x7f0b0062 +int id search_src_text 0x7f0b0063 +int id search_voice_btn 0x7f0b0067 +int id select_dialog_listview 0x7f0b0068 +int id shortcut 0x7f0b0053 +int id showCustom 0x7f0b0011 +int id showHome 0x7f0b0012 +int id showTitle 0x7f0b0013 +int id snackbar_action 0x7f0b006c +int id snackbar_text 0x7f0b006b +int id snap 0x7f0b0019 +int id spacer 0x7f0b0045 +int id split_action_bar 0x7f0b0008 +int id src_atop 0x7f0b0029 +int id src_in 0x7f0b002a +int id src_over 0x7f0b002b +int id start 0x7f0b0025 +int id status_bar_latest_event_content 0x7f0b0074 +int id submit_area 0x7f0b0065 +int id tabMode 0x7f0b000d +int id text 0x7f0b007c +int id text2 0x7f0b007a +int id textSpacerNoButtons 0x7f0b004d +int id time 0x7f0b0078 +int id title 0x7f0b0043 +int id title_template 0x7f0b0048 +int id top 0x7f0b0026 +int id topPanel 0x7f0b0047 +int id touch_outside 0x7f0b0069 +int id up 0x7f0b0009 +int id useLogo 0x7f0b0014 +int id view_offset_helper 0x7f0b000a +int id withText 0x7f0b0037 +int id wrap_content 0x7f0b001a +int integer abc_config_activityDefaultDur 0x7f090002 +int integer abc_config_activityShortDur 0x7f090003 +int integer abc_max_action_buttons 0x7f090000 +int integer bottom_sheet_slide_duration 0x7f090004 +int integer cancel_button_image_alpha 0x7f090005 +int integer design_snackbar_text_max_lines 0x7f090001 +int integer status_bar_notification_info_maxnum 0x7f090006 +int layout abc_action_bar_title_item 0x7f030000 +int layout abc_action_bar_up_container 0x7f030001 +int layout abc_action_bar_view_list_nav_layout 0x7f030002 +int layout abc_action_menu_item_layout 0x7f030003 +int layout abc_action_menu_layout 0x7f030004 +int layout abc_action_mode_bar 0x7f030005 +int layout abc_action_mode_close_item_material 0x7f030006 +int layout abc_activity_chooser_view 0x7f030007 +int layout abc_activity_chooser_view_list_item 0x7f030008 +int layout abc_alert_dialog_button_bar_material 0x7f030009 +int layout abc_alert_dialog_material 0x7f03000a +int layout abc_dialog_title_material 0x7f03000b +int layout abc_expanded_menu_layout 0x7f03000c +int layout abc_list_menu_item_checkbox 0x7f03000d +int layout abc_list_menu_item_icon 0x7f03000e +int layout abc_list_menu_item_layout 0x7f03000f +int layout abc_list_menu_item_radio 0x7f030010 +int layout abc_popup_menu_item_layout 0x7f030011 +int layout abc_screen_content_include 0x7f030012 +int layout abc_screen_simple 0x7f030013 +int layout abc_screen_simple_overlay_action_mode 0x7f030014 +int layout abc_screen_toolbar 0x7f030015 +int layout abc_search_dropdown_item_icons_2line 0x7f030016 +int layout abc_search_view 0x7f030017 +int layout abc_select_dialog_material 0x7f030018 +int layout design_bottom_sheet_dialog 0x7f030019 +int layout design_layout_snackbar 0x7f03001a +int layout design_layout_snackbar_include 0x7f03001b +int layout design_layout_tab_icon 0x7f03001c +int layout design_layout_tab_text 0x7f03001d +int layout design_menu_item_action_area 0x7f03001e +int layout design_navigation_item 0x7f03001f +int layout design_navigation_item_header 0x7f030020 +int layout design_navigation_item_separator 0x7f030021 +int layout design_navigation_item_subheader 0x7f030022 +int layout design_navigation_menu 0x7f030023 +int layout design_navigation_menu_item 0x7f030024 +int layout notification_media_action 0x7f030025 +int layout notification_media_cancel_action 0x7f030026 +int layout notification_template_big_media 0x7f030027 +int layout notification_template_big_media_narrow 0x7f030028 +int layout notification_template_lines 0x7f030029 +int layout notification_template_media 0x7f03002a +int layout notification_template_part_chronometer 0x7f03002b +int layout notification_template_part_time 0x7f03002c +int layout select_dialog_item_material 0x7f03002d +int layout select_dialog_multichoice_material 0x7f03002e +int layout select_dialog_singlechoice_material 0x7f03002f +int layout support_simple_spinner_dropdown_item 0x7f030030 +int string abc_action_bar_home_description 0x7f050000 +int string abc_action_bar_home_description_format 0x7f050001 +int string abc_action_bar_home_subtitle_description_format 0x7f050002 +int string abc_action_bar_up_description 0x7f050003 +int string abc_action_menu_overflow_description 0x7f050004 +int string abc_action_mode_done 0x7f050005 +int string abc_activity_chooser_view_see_all 0x7f050006 +int string abc_activitychooserview_choose_application 0x7f050007 +int string abc_capital_off 0x7f050008 +int string abc_capital_on 0x7f050009 +int string abc_search_hint 0x7f05000a +int string abc_searchview_description_clear 0x7f05000b +int string abc_searchview_description_query 0x7f05000c +int string abc_searchview_description_search 0x7f05000d +int string abc_searchview_description_submit 0x7f05000e +int string abc_searchview_description_voice 0x7f05000f +int string abc_shareactionprovider_share_with 0x7f050010 +int string abc_shareactionprovider_share_with_application 0x7f050011 +int string abc_toolbar_collapse_description 0x7f050012 +int string appbar_scrolling_view_behavior 0x7f050014 +int string bottom_sheet_behavior 0x7f050015 +int string character_counter_pattern 0x7f050016 +int string status_bar_notification_info_overflow 0x7f050013 +int style AlertDialog_AppCompat 0x7f080087 +int style AlertDialog_AppCompat_Light 0x7f080088 +int style Animation_AppCompat_Dialog 0x7f080089 +int style Animation_AppCompat_DropDownUp 0x7f08008a +int style Animation_Design_BottomSheetDialog 0x7f08008b +int style Base_AlertDialog_AppCompat 0x7f08008c +int style Base_AlertDialog_AppCompat_Light 0x7f08008d +int style Base_Animation_AppCompat_Dialog 0x7f08008e +int style Base_Animation_AppCompat_DropDownUp 0x7f08008f +int style Base_DialogWindowTitle_AppCompat 0x7f080090 +int style Base_DialogWindowTitleBackground_AppCompat 0x7f080091 +int style Base_TextAppearance_AppCompat 0x7f080037 +int style Base_TextAppearance_AppCompat_Body1 0x7f080038 +int style Base_TextAppearance_AppCompat_Body2 0x7f080039 +int style Base_TextAppearance_AppCompat_Button 0x7f080021 +int style Base_TextAppearance_AppCompat_Caption 0x7f08003a +int style Base_TextAppearance_AppCompat_Display1 0x7f08003b +int style Base_TextAppearance_AppCompat_Display2 0x7f08003c +int style Base_TextAppearance_AppCompat_Display3 0x7f08003d +int style Base_TextAppearance_AppCompat_Display4 0x7f08003e +int style Base_TextAppearance_AppCompat_Headline 0x7f08003f +int style Base_TextAppearance_AppCompat_Inverse 0x7f08000c +int style Base_TextAppearance_AppCompat_Large 0x7f080040 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f08000d +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f080041 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f080042 +int style Base_TextAppearance_AppCompat_Medium 0x7f080043 +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f08000e +int style Base_TextAppearance_AppCompat_Menu 0x7f080044 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f080092 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f080045 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f080046 +int style Base_TextAppearance_AppCompat_Small 0x7f080047 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f08000f +int style Base_TextAppearance_AppCompat_Subhead 0x7f080048 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f080010 +int style Base_TextAppearance_AppCompat_Title 0x7f080049 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f080011 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f080080 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f08004a +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f08004b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f08004c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f08004d +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f08004e +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f08004f +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f080050 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f080081 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f080093 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f080051 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f080052 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f080053 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f080054 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f080094 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f080055 +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f080056 +int style Base_Theme_AppCompat 0x7f080057 +int style Base_Theme_AppCompat_CompactMenu 0x7f080095 +int style Base_Theme_AppCompat_Dialog 0x7f080012 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f080096 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f080097 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f080098 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f080002 +int style Base_Theme_AppCompat_Light 0x7f080058 +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f080099 +int style Base_Theme_AppCompat_Light_Dialog 0x7f080013 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f08009a +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f08009b +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f08009c +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f080003 +int style Base_ThemeOverlay_AppCompat 0x7f08009d +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f08009e +int style Base_ThemeOverlay_AppCompat_Dark 0x7f08009f +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0800a0 +int style Base_ThemeOverlay_AppCompat_Light 0x7f0800a1 +int style Base_V11_Theme_AppCompat_Dialog 0x7f080014 +int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f080015 +int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f08001d +int style Base_V12_Widget_AppCompat_EditText 0x7f08001e +int style Base_V21_Theme_AppCompat 0x7f080059 +int style Base_V21_Theme_AppCompat_Dialog 0x7f08005a +int style Base_V21_Theme_AppCompat_Light 0x7f08005b +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f08005c +int style Base_V22_Theme_AppCompat 0x7f08007e +int style Base_V22_Theme_AppCompat_Light 0x7f08007f +int style Base_V23_Theme_AppCompat 0x7f080082 +int style Base_V23_Theme_AppCompat_Light 0x7f080083 +int style Base_V7_Theme_AppCompat 0x7f0800a2 +int style Base_V7_Theme_AppCompat_Dialog 0x7f0800a3 +int style Base_V7_Theme_AppCompat_Light 0x7f0800a4 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0800a5 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0800a6 +int style Base_V7_Widget_AppCompat_EditText 0x7f0800a7 +int style Base_Widget_AppCompat_ActionBar 0x7f0800a8 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0800a9 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0800aa +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f08005d +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f08005e +int style Base_Widget_AppCompat_ActionButton 0x7f08005f +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f080060 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f080061 +int style Base_Widget_AppCompat_ActionMode 0x7f0800ab +int style Base_Widget_AppCompat_ActivityChooserView 0x7f0800ac +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f08001f +int style Base_Widget_AppCompat_Button 0x7f080062 +int style Base_Widget_AppCompat_Button_Borderless 0x7f080063 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f080064 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0800ad +int style Base_Widget_AppCompat_Button_Colored 0x7f080084 +int style Base_Widget_AppCompat_Button_Small 0x7f080065 +int style Base_Widget_AppCompat_ButtonBar 0x7f080066 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0800ae +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f080067 +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f080068 +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0800af +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f080000 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0800b0 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f080069 +int style Base_Widget_AppCompat_EditText 0x7f080020 +int style Base_Widget_AppCompat_ImageButton 0x7f08006a +int style Base_Widget_AppCompat_Light_ActionBar 0x7f0800b1 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0800b2 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0800b3 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f08006b +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f08006c +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f08006d +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f08006e +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f08006f +int style Base_Widget_AppCompat_ListPopupWindow 0x7f080070 +int style Base_Widget_AppCompat_ListView 0x7f080071 +int style Base_Widget_AppCompat_ListView_DropDown 0x7f080072 +int style Base_Widget_AppCompat_ListView_Menu 0x7f080073 +int style Base_Widget_AppCompat_PopupMenu 0x7f080074 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f080075 +int style Base_Widget_AppCompat_PopupWindow 0x7f0800b4 +int style Base_Widget_AppCompat_ProgressBar 0x7f080016 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f080017 +int style Base_Widget_AppCompat_RatingBar 0x7f080076 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f080085 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f080086 +int style Base_Widget_AppCompat_SearchView 0x7f0800b5 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0800b6 +int style Base_Widget_AppCompat_SeekBar 0x7f080077 +int style Base_Widget_AppCompat_Spinner 0x7f080078 +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f080004 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f080079 +int style Base_Widget_AppCompat_Toolbar 0x7f0800b7 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f08007a +int style Base_Widget_Design_TabLayout 0x7f0800b8 +int style Platform_AppCompat 0x7f080018 +int style Platform_AppCompat_Light 0x7f080019 +int style Platform_ThemeOverlay_AppCompat 0x7f08007b +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f08007c +int style Platform_ThemeOverlay_AppCompat_Light 0x7f08007d +int style Platform_V11_AppCompat 0x7f08001a +int style Platform_V11_AppCompat_Light 0x7f08001b +int style Platform_V14_AppCompat 0x7f080022 +int style Platform_V14_AppCompat_Light 0x7f080023 +int style Platform_Widget_AppCompat_Spinner 0x7f08001c +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f080029 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f08002a +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f08002b +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f08002c +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f08002d +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f08002e +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f08002f +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f080030 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f080031 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f080032 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f080033 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f080034 +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f080035 +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f080036 +int style TextAppearance_AppCompat 0x7f0800b9 +int style TextAppearance_AppCompat_Body1 0x7f0800ba +int style TextAppearance_AppCompat_Body2 0x7f0800bb +int style TextAppearance_AppCompat_Button 0x7f0800bc +int style TextAppearance_AppCompat_Caption 0x7f0800bd +int style TextAppearance_AppCompat_Display1 0x7f0800be +int style TextAppearance_AppCompat_Display2 0x7f0800bf +int style TextAppearance_AppCompat_Display3 0x7f0800c0 +int style TextAppearance_AppCompat_Display4 0x7f0800c1 +int style TextAppearance_AppCompat_Headline 0x7f0800c2 +int style TextAppearance_AppCompat_Inverse 0x7f0800c3 +int style TextAppearance_AppCompat_Large 0x7f0800c4 +int style TextAppearance_AppCompat_Large_Inverse 0x7f0800c5 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0800c6 +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0800c7 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0800c8 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0800c9 +int style TextAppearance_AppCompat_Medium 0x7f0800ca +int style TextAppearance_AppCompat_Medium_Inverse 0x7f0800cb +int style TextAppearance_AppCompat_Menu 0x7f0800cc +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0800cd +int style TextAppearance_AppCompat_SearchResult_Title 0x7f0800ce +int style TextAppearance_AppCompat_Small 0x7f0800cf +int style TextAppearance_AppCompat_Small_Inverse 0x7f0800d0 +int style TextAppearance_AppCompat_Subhead 0x7f0800d1 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0800d2 +int style TextAppearance_AppCompat_Title 0x7f0800d3 +int style TextAppearance_AppCompat_Title_Inverse 0x7f0800d4 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0800d5 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0800d6 +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0800d7 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0800d8 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0800d9 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0800da +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0800db +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0800dc +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0800dd +int style TextAppearance_AppCompat_Widget_Button 0x7f0800de +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0800df +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0800e0 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0800e1 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0800e2 +int style TextAppearance_AppCompat_Widget_Switch 0x7f0800e3 +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0800e4 +int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0800e5 +int style TextAppearance_Design_Counter 0x7f0800e6 +int style TextAppearance_Design_Counter_Overflow 0x7f0800e7 +int style TextAppearance_Design_Error 0x7f0800e8 +int style TextAppearance_Design_Hint 0x7f0800e9 +int style TextAppearance_Design_Snackbar_Message 0x7f0800ea +int style TextAppearance_Design_Tab 0x7f0800eb +int style TextAppearance_StatusBar_EventContent 0x7f080024 +int style TextAppearance_StatusBar_EventContent_Info 0x7f080025 +int style TextAppearance_StatusBar_EventContent_Line2 0x7f080026 +int style TextAppearance_StatusBar_EventContent_Time 0x7f080027 +int style TextAppearance_StatusBar_EventContent_Title 0x7f080028 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0800ec +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0800ed +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0800ee +int style Theme_AppCompat 0x7f0800ef +int style Theme_AppCompat_CompactMenu 0x7f0800f0 +int style Theme_AppCompat_DayNight 0x7f080005 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f080006 +int style Theme_AppCompat_DayNight_Dialog 0x7f080007 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f080008 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f080009 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f08000a +int style Theme_AppCompat_DayNight_NoActionBar 0x7f08000b +int style Theme_AppCompat_Dialog 0x7f0800f1 +int style Theme_AppCompat_Dialog_Alert 0x7f0800f2 +int style Theme_AppCompat_Dialog_MinWidth 0x7f0800f3 +int style Theme_AppCompat_DialogWhenLarge 0x7f0800f4 +int style Theme_AppCompat_Light 0x7f0800f5 +int style Theme_AppCompat_Light_DarkActionBar 0x7f0800f6 +int style Theme_AppCompat_Light_Dialog 0x7f0800f7 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f0800f8 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0800f9 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0800fa +int style Theme_AppCompat_Light_NoActionBar 0x7f0800fb +int style Theme_AppCompat_NoActionBar 0x7f0800fc +int style Theme_Design 0x7f0800fd +int style Theme_Design_BottomSheetDialog 0x7f0800fe +int style Theme_Design_Light 0x7f0800ff +int style Theme_Design_Light_BottomSheetDialog 0x7f080100 +int style Theme_Design_Light_NoActionBar 0x7f080101 +int style Theme_Design_NoActionBar 0x7f080102 +int style ThemeOverlay_AppCompat 0x7f080103 +int style ThemeOverlay_AppCompat_ActionBar 0x7f080104 +int style ThemeOverlay_AppCompat_Dark 0x7f080105 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f080106 +int style ThemeOverlay_AppCompat_Light 0x7f080107 +int style Widget_AppCompat_ActionBar 0x7f080108 +int style Widget_AppCompat_ActionBar_Solid 0x7f080109 +int style Widget_AppCompat_ActionBar_TabBar 0x7f08010a +int style Widget_AppCompat_ActionBar_TabText 0x7f08010b +int style Widget_AppCompat_ActionBar_TabView 0x7f08010c +int style Widget_AppCompat_ActionButton 0x7f08010d +int style Widget_AppCompat_ActionButton_CloseMode 0x7f08010e +int style Widget_AppCompat_ActionButton_Overflow 0x7f08010f +int style Widget_AppCompat_ActionMode 0x7f080110 +int style Widget_AppCompat_ActivityChooserView 0x7f080111 +int style Widget_AppCompat_AutoCompleteTextView 0x7f080112 +int style Widget_AppCompat_Button 0x7f080113 +int style Widget_AppCompat_Button_Borderless 0x7f080114 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f080115 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f080116 +int style Widget_AppCompat_Button_Colored 0x7f080117 +int style Widget_AppCompat_Button_Small 0x7f080118 +int style Widget_AppCompat_ButtonBar 0x7f080119 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f08011a +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f08011b +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f08011c +int style Widget_AppCompat_CompoundButton_Switch 0x7f08011d +int style Widget_AppCompat_DrawerArrowToggle 0x7f08011e +int style Widget_AppCompat_DropDownItem_Spinner 0x7f08011f +int style Widget_AppCompat_EditText 0x7f080120 +int style Widget_AppCompat_ImageButton 0x7f080121 +int style Widget_AppCompat_Light_ActionBar 0x7f080122 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f080123 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f080124 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f080125 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f080126 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f080127 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f080128 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f080129 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f08012a +int style Widget_AppCompat_Light_ActionButton 0x7f08012b +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f08012c +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f08012d +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f08012e +int style Widget_AppCompat_Light_ActivityChooserView 0x7f08012f +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f080130 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f080131 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f080132 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f080133 +int style Widget_AppCompat_Light_PopupMenu 0x7f080134 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f080135 +int style Widget_AppCompat_Light_SearchView 0x7f080136 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f080137 +int style Widget_AppCompat_ListPopupWindow 0x7f080138 +int style Widget_AppCompat_ListView 0x7f080139 +int style Widget_AppCompat_ListView_DropDown 0x7f08013a +int style Widget_AppCompat_ListView_Menu 0x7f08013b +int style Widget_AppCompat_PopupMenu 0x7f08013c +int style Widget_AppCompat_PopupMenu_Overflow 0x7f08013d +int style Widget_AppCompat_PopupWindow 0x7f08013e +int style Widget_AppCompat_ProgressBar 0x7f08013f +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f080140 +int style Widget_AppCompat_RatingBar 0x7f080141 +int style Widget_AppCompat_RatingBar_Indicator 0x7f080142 +int style Widget_AppCompat_RatingBar_Small 0x7f080143 +int style Widget_AppCompat_SearchView 0x7f080144 +int style Widget_AppCompat_SearchView_ActionBar 0x7f080145 +int style Widget_AppCompat_SeekBar 0x7f080146 +int style Widget_AppCompat_Spinner 0x7f080147 +int style Widget_AppCompat_Spinner_DropDown 0x7f080148 +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f080149 +int style Widget_AppCompat_Spinner_Underlined 0x7f08014a +int style Widget_AppCompat_TextView_SpinnerItem 0x7f08014b +int style Widget_AppCompat_Toolbar 0x7f08014c +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f08014d +int style Widget_Design_AppBarLayout 0x7f08014e +int style Widget_Design_BottomSheet_Modal 0x7f08014f +int style Widget_Design_CollapsingToolbar 0x7f080150 +int style Widget_Design_CoordinatorLayout 0x7f080151 +int style Widget_Design_FloatingActionButton 0x7f080152 +int style Widget_Design_NavigationView 0x7f080153 +int style Widget_Design_ScrimInsetsFrameLayout 0x7f080154 +int style Widget_Design_Snackbar 0x7f080155 +int style Widget_Design_TabLayout 0x7f080001 +int style Widget_Design_TextInputLayout 0x7f080156 +int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f010057 } +int styleable ActionBar_background 10 +int styleable ActionBar_backgroundSplit 12 +int styleable ActionBar_backgroundStacked 11 +int styleable ActionBar_contentInsetEnd 21 +int styleable ActionBar_contentInsetLeft 22 +int styleable ActionBar_contentInsetRight 23 +int styleable ActionBar_contentInsetStart 20 +int styleable ActionBar_customNavigationLayout 13 +int styleable ActionBar_displayOptions 3 +int styleable ActionBar_divider 9 +int styleable ActionBar_elevation 24 +int styleable ActionBar_height 0 +int styleable ActionBar_hideOnContentScroll 19 +int styleable ActionBar_homeAsUpIndicator 26 +int styleable ActionBar_homeLayout 14 +int styleable ActionBar_icon 7 +int styleable ActionBar_indeterminateProgressStyle 16 +int styleable ActionBar_itemPadding 18 +int styleable ActionBar_logo 8 +int styleable ActionBar_navigationMode 2 +int styleable ActionBar_popupTheme 25 +int styleable ActionBar_progressBarPadding 17 +int styleable ActionBar_progressBarStyle 15 +int styleable ActionBar_subtitle 4 +int styleable ActionBar_subtitleTextStyle 6 +int styleable ActionBar_title 1 +int styleable ActionBar_titleTextStyle 5 +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c } +int styleable ActionMode_background 3 +int styleable ActionMode_backgroundSplit 4 +int styleable ActionMode_closeItemLayout 5 +int styleable ActionMode_height 0 +int styleable ActionMode_subtitleTextStyle 2 +int styleable ActionMode_titleTextStyle 1 +int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1 +int styleable ActivityChooserView_initialActivityCount 0 +int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonPanelSideLayout 1 +int styleable AlertDialog_listItemLayout 5 +int styleable AlertDialog_listLayout 2 +int styleable AlertDialog_multiChoiceItemLayout 3 +int styleable AlertDialog_singleChoiceItemLayout 4 +int[] styleable AppBarLayout { 0x010100d4, 0x7f01001a, 0x7f010024 } +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_elevation 1 +int styleable AppBarLayout_expanded 2 +int[] styleable AppBarLayout_LayoutParams { 0x7f010025, 0x7f010026 } +int styleable AppBarLayout_LayoutParams_layout_scrollFlags 0 +int styleable AppBarLayout_LayoutParams_layout_scrollInterpolator 1 +int[] styleable AppCompatImageView { 0x01010119, 0x7f010027 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int[] styleable AppCompatTextView { 0x01010034, 0x7f010028 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_textAllCaps 1 +int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f010029, 0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037, 0x7f010038, 0x7f010039, 0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f, 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c, 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065, 0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c, 0x7f01006d, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073, 0x7f010074, 0x7f010075, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079, 0x7f01007a, 0x7f01007b, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088, 0x7f010089, 0x7f01008a, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091, 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096 } +int styleable AppCompatTheme_actionBarDivider 23 +int styleable AppCompatTheme_actionBarItemBackground 24 +int styleable AppCompatTheme_actionBarPopupTheme 17 +int styleable AppCompatTheme_actionBarSize 22 +int styleable AppCompatTheme_actionBarSplitStyle 19 +int styleable AppCompatTheme_actionBarStyle 18 +int styleable AppCompatTheme_actionBarTabBarStyle 13 +int styleable AppCompatTheme_actionBarTabStyle 12 +int styleable AppCompatTheme_actionBarTabTextStyle 14 +int styleable AppCompatTheme_actionBarTheme 20 +int styleable AppCompatTheme_actionBarWidgetTheme 21 +int styleable AppCompatTheme_actionButtonStyle 49 +int styleable AppCompatTheme_actionDropDownStyle 45 +int styleable AppCompatTheme_actionMenuTextAppearance 25 +int styleable AppCompatTheme_actionMenuTextColor 26 +int styleable AppCompatTheme_actionModeBackground 29 +int styleable AppCompatTheme_actionModeCloseButtonStyle 28 +int styleable AppCompatTheme_actionModeCloseDrawable 31 +int styleable AppCompatTheme_actionModeCopyDrawable 33 +int styleable AppCompatTheme_actionModeCutDrawable 32 +int styleable AppCompatTheme_actionModeFindDrawable 37 +int styleable AppCompatTheme_actionModePasteDrawable 34 +int styleable AppCompatTheme_actionModePopupWindowStyle 39 +int styleable AppCompatTheme_actionModeSelectAllDrawable 35 +int styleable AppCompatTheme_actionModeShareDrawable 36 +int styleable AppCompatTheme_actionModeSplitBackground 30 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeWebSearchDrawable 38 +int styleable AppCompatTheme_actionOverflowButtonStyle 15 +int styleable AppCompatTheme_actionOverflowMenuStyle 16 +int styleable AppCompatTheme_activityChooserViewStyle 57 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 92 +int styleable AppCompatTheme_alertDialogCenterButtons 93 +int styleable AppCompatTheme_alertDialogStyle 91 +int styleable AppCompatTheme_alertDialogTheme 94 +int styleable AppCompatTheme_android_windowAnimationStyle 1 +int styleable AppCompatTheme_android_windowIsFloating 0 +int styleable AppCompatTheme_autoCompleteTextViewStyle 99 +int styleable AppCompatTheme_borderlessButtonStyle 54 +int styleable AppCompatTheme_buttonBarButtonStyle 51 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 97 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 98 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 96 +int styleable AppCompatTheme_buttonBarStyle 50 +int styleable AppCompatTheme_buttonStyle 100 +int styleable AppCompatTheme_buttonStyleSmall 101 +int styleable AppCompatTheme_checkboxStyle 102 +int styleable AppCompatTheme_checkedTextViewStyle 103 +int styleable AppCompatTheme_colorAccent 84 +int styleable AppCompatTheme_colorButtonNormal 88 +int styleable AppCompatTheme_colorControlActivated 86 +int styleable AppCompatTheme_colorControlHighlight 87 +int styleable AppCompatTheme_colorControlNormal 85 +int styleable AppCompatTheme_colorPrimary 82 +int styleable AppCompatTheme_colorPrimaryDark 83 +int styleable AppCompatTheme_colorSwitchThumbNormal 89 +int styleable AppCompatTheme_controlBackground 90 +int styleable AppCompatTheme_dialogPreferredPadding 43 +int styleable AppCompatTheme_dialogTheme 42 +int styleable AppCompatTheme_dividerHorizontal 56 +int styleable AppCompatTheme_dividerVertical 55 +int styleable AppCompatTheme_dropDownListViewStyle 74 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 46 +int styleable AppCompatTheme_editTextBackground 63 +int styleable AppCompatTheme_editTextColor 62 +int styleable AppCompatTheme_editTextStyle 104 +int styleable AppCompatTheme_homeAsUpIndicator 48 +int styleable AppCompatTheme_imageButtonStyle 64 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 81 +int styleable AppCompatTheme_listDividerAlertDialog 44 +int styleable AppCompatTheme_listPopupWindowStyle 75 +int styleable AppCompatTheme_listPreferredItemHeight 69 +int styleable AppCompatTheme_listPreferredItemHeightLarge 71 +int styleable AppCompatTheme_listPreferredItemHeightSmall 70 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 72 +int styleable AppCompatTheme_listPreferredItemPaddingRight 73 +int styleable AppCompatTheme_panelBackground 78 +int styleable AppCompatTheme_panelMenuListTheme 80 +int styleable AppCompatTheme_panelMenuListWidth 79 +int styleable AppCompatTheme_popupMenuStyle 60 +int styleable AppCompatTheme_popupWindowStyle 61 +int styleable AppCompatTheme_radioButtonStyle 105 +int styleable AppCompatTheme_ratingBarStyle 106 +int styleable AppCompatTheme_ratingBarStyleIndicator 107 +int styleable AppCompatTheme_ratingBarStyleSmall 108 +int styleable AppCompatTheme_searchViewStyle 68 +int styleable AppCompatTheme_seekBarStyle 109 +int styleable AppCompatTheme_selectableItemBackground 52 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 53 +int styleable AppCompatTheme_spinnerDropDownItemStyle 47 +int styleable AppCompatTheme_spinnerStyle 110 +int styleable AppCompatTheme_switchStyle 111 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 40 +int styleable AppCompatTheme_textAppearanceListItem 76 +int styleable AppCompatTheme_textAppearanceListItemSmall 77 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 66 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 65 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 41 +int styleable AppCompatTheme_textColorAlertDialogListItem 95 +int styleable AppCompatTheme_textColorSearchUrl 67 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 59 +int styleable AppCompatTheme_toolbarStyle 58 +int styleable AppCompatTheme_windowActionBar 2 +int styleable AppCompatTheme_windowActionBarOverlay 4 +int styleable AppCompatTheme_windowActionModeOverlay 5 +int styleable AppCompatTheme_windowFixedHeightMajor 9 +int styleable AppCompatTheme_windowFixedHeightMinor 7 +int styleable AppCompatTheme_windowFixedWidthMajor 6 +int styleable AppCompatTheme_windowFixedWidthMinor 8 +int styleable AppCompatTheme_windowMinWidthMajor 10 +int styleable AppCompatTheme_windowMinWidthMinor 11 +int styleable AppCompatTheme_windowNoTitle 3 +int[] styleable BottomSheetBehavior_Params { 0x7f010097, 0x7f010098 } +int styleable BottomSheetBehavior_Params_behavior_hideable 1 +int styleable BottomSheetBehavior_Params_behavior_peekHeight 0 +int[] styleable ButtonBarLayout { 0x7f010099 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable CollapsingAppBarLayout_LayoutParams { 0x7f01009a, 0x7f01009b } +int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseMode 0 +int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier 1 +int[] styleable CollapsingToolbarLayout { 0x7f010003, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8 } +int styleable CollapsingToolbarLayout_collapsedTitleGravity 11 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 7 +int styleable CollapsingToolbarLayout_contentScrim 8 +int styleable CollapsingToolbarLayout_expandedTitleGravity 12 +int styleable CollapsingToolbarLayout_expandedTitleMargin 1 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 4 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 2 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 3 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 6 +int styleable CollapsingToolbarLayout_statusBarScrim 9 +int styleable CollapsingToolbarLayout_title 0 +int styleable CollapsingToolbarLayout_titleEnabled 13 +int styleable CollapsingToolbarLayout_toolbarId 10 +int[] styleable CompoundButton { 0x01010107, 0x7f0100a9, 0x7f0100aa } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonTint 1 +int styleable CompoundButton_buttonTintMode 2 +int[] styleable CoordinatorLayout { 0x7f0100ab, 0x7f0100ac } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_LayoutParams { 0x010100b3, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0 } +int styleable CoordinatorLayout_LayoutParams_android_layout_gravity 0 +int styleable CoordinatorLayout_LayoutParams_layout_anchor 2 +int styleable CoordinatorLayout_LayoutParams_layout_anchorGravity 4 +int styleable CoordinatorLayout_LayoutParams_layout_behavior 1 +int styleable CoordinatorLayout_LayoutParams_layout_keyline 3 +int[] styleable DesignTheme { 0x7f0100b1, 0x7f0100b2, 0x7f0100b3 } +int styleable DesignTheme_bottomSheetDialogTheme 0 +int styleable DesignTheme_bottomSheetStyle 1 +int styleable DesignTheme_textColorError 2 +int[] styleable DrawerArrowToggle { 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb } +int styleable DrawerArrowToggle_arrowHeadLength 4 +int styleable DrawerArrowToggle_arrowShaftLength 5 +int styleable DrawerArrowToggle_barLength 6 +int styleable DrawerArrowToggle_color 0 +int styleable DrawerArrowToggle_drawableSize 2 +int styleable DrawerArrowToggle_gapBetweenBars 3 +int styleable DrawerArrowToggle_spinBars 1 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FloatingActionButton { 0x7f01001a, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f010118, 0x7f010119 } +int styleable FloatingActionButton_backgroundTint 6 +int styleable FloatingActionButton_backgroundTintMode 7 +int styleable FloatingActionButton_borderWidth 4 +int styleable FloatingActionButton_elevation 0 +int styleable FloatingActionButton_fabSize 2 +int styleable FloatingActionButton_pressedTranslationZ 3 +int styleable FloatingActionButton_rippleColor 1 +int styleable FloatingActionButton_useCompatPadding 5 +int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f0100c1 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4 } +int styleable LinearLayoutCompat_android_baselineAligned 2 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3 +int styleable LinearLayoutCompat_android_gravity 0 +int styleable LinearLayoutCompat_android_orientation 1 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 8 +int styleable LinearLayoutCompat_measureWithLargestChild 6 +int styleable LinearLayoutCompat_showDividers 7 +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 2 +int styleable LinearLayoutCompat_Layout_android_layout_weight 3 +int styleable LinearLayoutCompat_Layout_android_layout_width 1 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 } +int styleable MenuGroup_android_checkableBehavior 5 +int styleable MenuGroup_android_enabled 0 +int styleable MenuGroup_android_id 1 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 2 +int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8 } +int styleable MenuItem_actionLayout 14 +int styleable MenuItem_actionProviderClass 16 +int styleable MenuItem_actionViewClass 15 +int styleable MenuItem_android_alphabeticShortcut 9 +int styleable MenuItem_android_checkable 11 +int styleable MenuItem_android_checked 3 +int styleable MenuItem_android_enabled 1 +int styleable MenuItem_android_icon 0 +int styleable MenuItem_android_id 2 +int styleable MenuItem_android_menuCategory 5 +int styleable MenuItem_android_numericShortcut 10 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 6 +int styleable MenuItem_android_title 7 +int styleable MenuItem_android_titleCondensed 8 +int styleable MenuItem_android_visible 4 +int styleable MenuItem_showAsAction 13 +int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f0100c9 } +int styleable MenuView_android_headerBackground 4 +int styleable MenuView_android_horizontalDivider 2 +int styleable MenuView_android_itemBackground 5 +int styleable MenuView_android_itemIconDisabledAlpha 6 +int styleable MenuView_android_itemTextAppearance 1 +int styleable MenuView_android_verticalDivider 3 +int styleable MenuView_android_windowAnimationStyle 0 +int styleable MenuView_preserveIconSpacing 7 +int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_maxWidth 2 +int styleable NavigationView_elevation 3 +int styleable NavigationView_headerLayout 9 +int styleable NavigationView_itemBackground 7 +int styleable NavigationView_itemIconTint 5 +int styleable NavigationView_itemTextAppearance 8 +int styleable NavigationView_itemTextColor 6 +int styleable NavigationView_menu 4 +int[] styleable PopupWindow { 0x01010176, 0x7f0100d0 } +int styleable PopupWindow_android_popupBackground 0 +int styleable PopupWindow_overlapAnchor 1 +int[] styleable PopupWindowBackgroundState { 0x7f0100d1 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecyclerView { 0x010100c4, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5 } +int styleable RecyclerView_android_orientation 0 +int styleable RecyclerView_layoutManager 1 +int styleable RecyclerView_reverseLayout 3 +int styleable RecyclerView_spanCount 2 +int styleable RecyclerView_stackFromEnd 4 +int[] styleable ScrimInsetsFrameLayout { 0x7f0100d6 } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollingViewBehavior_Params { 0x7f0100d7 } +int styleable ScrollingViewBehavior_Params_behavior_overlapTop 0 +int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4 } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 3 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 1 +int styleable SearchView_closeIcon 8 +int styleable SearchView_commitIcon 13 +int styleable SearchView_defaultQueryHint 7 +int styleable SearchView_goIcon 9 +int styleable SearchView_iconifiedByDefault 5 +int styleable SearchView_layout 4 +int styleable SearchView_queryBackground 15 +int styleable SearchView_queryHint 6 +int styleable SearchView_searchHintIcon 11 +int styleable SearchView_searchIcon 10 +int styleable SearchView_submitBackground 16 +int styleable SearchView_suggestionRowLayout 14 +int styleable SearchView_voiceIcon 12 +int[] styleable SnackbarLayout { 0x0101011f, 0x7f01001a, 0x7f0100e5 } +int styleable SnackbarLayout_android_maxWidth 0 +int styleable SnackbarLayout_elevation 1 +int styleable SnackbarLayout_maxActionInlineWidth 2 +int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b } +int styleable Spinner_android_dropDownWidth 3 +int styleable Spinner_android_entries 0 +int styleable Spinner_android_popupBackground 1 +int styleable Spinner_android_prompt 2 +int styleable Spinner_popupTheme 4 +int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec } +int styleable SwitchCompat_android_textOff 1 +int styleable SwitchCompat_android_textOn 0 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 9 +int styleable SwitchCompat_splitTrack 8 +int styleable SwitchCompat_switchMinWidth 6 +int styleable SwitchCompat_switchPadding 7 +int styleable SwitchCompat_switchTextAppearance 5 +int styleable SwitchCompat_thumbTextPadding 4 +int styleable SwitchCompat_track 3 +int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc } +int styleable TabLayout_tabBackground 3 +int styleable TabLayout_tabContentStart 2 +int styleable TabLayout_tabGravity 5 +int styleable TabLayout_tabIndicatorColor 0 +int styleable TabLayout_tabIndicatorHeight 1 +int styleable TabLayout_tabMaxWidth 7 +int styleable TabLayout_tabMinWidth 6 +int styleable TabLayout_tabMode 4 +int styleable TabLayout_tabPadding 15 +int styleable TabLayout_tabPaddingBottom 14 +int styleable TabLayout_tabPaddingEnd 13 +int styleable TabLayout_tabPaddingStart 11 +int styleable TabLayout_tabPaddingTop 12 +int styleable TabLayout_tabSelectedTextColor 10 +int styleable TabLayout_tabTextAppearance 8 +int styleable TabLayout_tabTextColor 9 +int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010028 } +int styleable TextAppearance_android_shadowColor 4 +int styleable TextAppearance_android_shadowDx 5 +int styleable TextAppearance_android_shadowDy 6 +int styleable TextAppearance_android_shadowRadius 7 +int styleable TextAppearance_android_textColor 3 +int styleable TextAppearance_android_textSize 0 +int styleable TextAppearance_android_textStyle 2 +int styleable TextAppearance_android_typeface 1 +int styleable TextAppearance_textAllCaps 8 +int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105 } +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_textColorHint 0 +int styleable TextInputLayout_counterEnabled 6 +int styleable TextInputLayout_counterMaxLength 7 +int styleable TextInputLayout_counterOverflowTextAppearance 9 +int styleable TextInputLayout_counterTextAppearance 8 +int styleable TextInputLayout_errorEnabled 4 +int styleable TextInputLayout_errorTextAppearance 5 +int styleable TextInputLayout_hintAnimationEnabled 10 +int styleable TextInputLayout_hintEnabled 3 +int styleable TextInputLayout_hintTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_collapseContentDescription 19 +int styleable Toolbar_collapseIcon 18 +int styleable Toolbar_contentInsetEnd 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 5 +int styleable Toolbar_logo 4 +int styleable Toolbar_logoDescription 22 +int styleable Toolbar_maxButtonHeight 17 +int styleable Toolbar_navigationContentDescription 21 +int styleable Toolbar_navigationIcon 20 +int styleable Toolbar_popupTheme 9 +int styleable Toolbar_subtitle 3 +int styleable Toolbar_subtitleTextAppearance 11 +int styleable Toolbar_subtitleTextColor 24 +int styleable Toolbar_title 2 +int styleable Toolbar_titleMarginBottom 16 +int styleable Toolbar_titleMarginEnd 14 +int styleable Toolbar_titleMarginStart 13 +int styleable Toolbar_titleMarginTop 15 +int styleable Toolbar_titleMargins 12 +int styleable Toolbar_titleTextAppearance 10 +int styleable Toolbar_titleTextColor 23 +int[] styleable View { 0x01010000, 0x010100da, 0x7f010115, 0x7f010116, 0x7f010117 } +int styleable View_android_focusable 1 +int styleable View_android_theme 0 +int styleable View_paddingEnd 3 +int styleable View_paddingStart 2 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f010118, 0x7f010119 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 2 +int styleable ViewStubCompat_android_layout 1 diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/aapt/AndroidManifest.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/aapt/AndroidManifest.xml new file mode 100644 index 0000000..6c078ef --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/aapt/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/annotations.zip b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/annotations.zip new file mode 100644 index 0000000..463e9de Binary files /dev/null and b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/annotations.zip differ diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/cache.stamp b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/cache.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/classes.jar b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/classes.jar new file mode 100644 index 0000000..2d07a09 Binary files /dev/null and b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/classes.jar differ diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/manifest/AndroidManifest.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/manifest/AndroidManifest.xml new file mode 100644 index 0000000..712d83b --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/manifest/AndroidManifest.xml @@ -0,0 +1,20 @@ + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/proguard.txt b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/proguard.txt new file mode 100644 index 0000000..96e2ee0 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/proguard.txt @@ -0,0 +1,22 @@ +# Copyright (C) 2015 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# CoordinatorLayout resolves the behaviors of its child components with reflection. +-keep public class * extends android.support.design.widget.CoordinatorLayout$Behavior { + public (android.content.Context, android.util.AttributeSet); + public (); +} + +# Make sure we keep annotations for CoordinatorLayout's DefaultBehavior +-keepattributes *Annotation* diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/public.txt b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/public.txt new file mode 100644 index 0000000..9cfb311 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/public.txt @@ -0,0 +1,94 @@ +style TextAppearance.Design.CollapsingToolbar.Expanded +style TextAppearance.Design.Counter +style TextAppearance.Design.Counter.Overflow +style TextAppearance.Design.Error +style TextAppearance.Design.Hint +style TextAppearance.Design.Snackbar.Message +style TextAppearance.Design.Tab +style Theme.Design +style Theme.Design.BottomSheetDialog +style Theme.Design.Light +style Theme.Design.Light.BottomSheetDialog +style Theme.Design.Light.NoActionBar +style Theme.Design.NoActionBar +style Widget.Design.AppBarLayout +style Widget.Design.BottomSheet.Modal +style Widget.Design.CollapsingToolbar +style Widget.Design.CoordinatorLayout +style Widget.Design.FloatingActionButton +style Widget.Design.NavigationView +style Widget.Design.Snackbar +style Widget.Design.TabLayout +style Widget.Design.TextInputLayout +string appbar_scrolling_view_behavior +attr backgroundTint +attr backgroundTintMode +attr behavior_hideable +attr behavior_overlapTop +attr behavior_peekHeight +attr borderWidth +attr bottomSheetDialogTheme +attr bottomSheetStyle +string bottom_sheet_behavior +attr collapsedTitleGravity +attr collapsedTitleTextAppearance +attr contentScrim +attr counterEnabled +attr counterMaxLength +attr counterOverflowTextAppearance +attr counterTextAppearance +attr elevation +attr errorEnabled +attr errorTextAppearance +attr expanded +attr expandedTitleGravity +attr expandedTitleMargin +attr expandedTitleMarginBottom +attr expandedTitleMarginEnd +attr expandedTitleMarginStart +attr expandedTitleMarginTop +attr expandedTitleTextAppearance +attr fabSize +attr headerLayout +attr hintAnimationEnabled +attr hintEnabled +attr hintTextAppearance +attr itemBackground +attr itemIconTint +attr itemTextAppearance +attr itemTextColor +attr keylines +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_collapseMode +attr layout_collapseParallaxMultiplier +attr layout_keyline +attr layout_scrollFlags +attr layout_scrollInterpolator +attr menu +attr pressedTranslationZ +attr rippleColor +attr statusBarBackground +attr statusBarScrim +attr tabBackground +attr tabContentStart +attr tabGravity +attr tabIndicatorColor +attr tabIndicatorHeight +attr tabMaxWidth +attr tabMinWidth +attr tabMode +attr tabPadding +attr tabPaddingBottom +attr tabPaddingEnd +attr tabPaddingStart +attr tabPaddingTop +attr tabSelectedTextColor +attr tabTextAppearance +attr tabTextColor +attr textColorError +attr title +attr titleEnabled +attr toolbarId +attr useCompatPadding diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim-v21/design_bottom_sheet_slide_in.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim-v21/design_bottom_sheet_slide_in.xml new file mode 100644 index 0000000..b5960a3 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim-v21/design_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim-v21/design_bottom_sheet_slide_out.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim-v21/design_bottom_sheet_slide_out.xml new file mode 100644 index 0000000..d680abe --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim-v21/design_bottom_sheet_slide_out.xml @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_bottom_sheet_slide_in.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_bottom_sheet_slide_in.xml new file mode 100644 index 0000000..7cbae08 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_bottom_sheet_slide_in.xml @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_bottom_sheet_slide_out.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_bottom_sheet_slide_out.xml new file mode 100644 index 0000000..2e30963 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_bottom_sheet_slide_out.xml @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_fab_in.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_fab_in.xml new file mode 100644 index 0000000..294050f --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_fab_in.xml @@ -0,0 +1,30 @@ + + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_fab_out.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_fab_out.xml new file mode 100644 index 0000000..0f80a9a --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_fab_out.xml @@ -0,0 +1,30 @@ + + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_snackbar_in.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_snackbar_in.xml new file mode 100644 index 0000000..a40524c --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_snackbar_in.xml @@ -0,0 +1,20 @@ + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_snackbar_out.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_snackbar_out.xml new file mode 100644 index 0000000..eb55cc0 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/anim/design_snackbar_out.xml @@ -0,0 +1,20 @@ + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/drawable/design_fab_background.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/drawable/design_fab_background.xml new file mode 100644 index 0000000..43afd5c --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/drawable/design_fab_background.xml @@ -0,0 +1,21 @@ + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/drawable/design_snackbar_background.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/drawable/design_snackbar_background.xml new file mode 100644 index 0000000..e82441c --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/drawable/design_snackbar_background.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout-sw600dp-v13/design_layout_snackbar.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout-sw600dp-v13/design_layout_snackbar.xml new file mode 100644 index 0000000..b68395a --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout-sw600dp-v13/design_layout_snackbar.xml @@ -0,0 +1,23 @@ + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_bottom_sheet_dialog.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_bottom_sheet_dialog.xml new file mode 100644 index 0000000..27bb806 --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_bottom_sheet_dialog.xml @@ -0,0 +1,38 @@ + + + + + + + + + diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_layout_snackbar.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_layout_snackbar.xml new file mode 100644 index 0000000..604aafc --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_layout_snackbar.xml @@ -0,0 +1,23 @@ + + + + \ No newline at end of file diff --git a/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_layout_snackbar_include.xml b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_layout_snackbar_include.xml new file mode 100644 index 0000000..1aab24b --- /dev/null +++ b/Support/Support.Android/obj/Debug/resourcecache/3B050492A521924EC765A7D316D44EAB/res/layout/design_layout_snackbar_include.xml @@ -0,0 +1,50 @@ + + + + + + + +