diff --git a/src/SMAPI.Mods.VirtualKeyboard/KeyButton.cs b/src/SMAPI.Mods.VirtualKeyboard/KeyButton.cs index 4fb9d775..32cbe349 100644 --- a/src/SMAPI.Mods.VirtualKeyboard/KeyButton.cs +++ b/src/SMAPI.Mods.VirtualKeyboard/KeyButton.cs @@ -58,12 +58,6 @@ namespace StardewModdingAPI.Mods.VirtualKeyboard object score = this.GetSCore(this.helper); object eventManager = score.GetType().GetField("EventManager", BindingFlags.Public | BindingFlags.Instance).GetValue(score); - - this.buttonPressed = eventManager.GetType().GetField("ButtonPressed", BindingFlags.Public | BindingFlags.Instance).GetValue(eventManager); - this.buttonReleased = eventManager.GetType().GetField("ButtonReleased", BindingFlags.Public | BindingFlags.Instance).GetValue(eventManager); - - this.RaiseButtonPressed = this.buttonPressed.GetType().GetMethod("Raise", BindingFlags.Public | BindingFlags.Instance); - this.RaiseButtonReleased = this.buttonReleased.GetType().GetMethod("Raise", BindingFlags.Public | BindingFlags.Instance); } private object GetSCore(IModHelper helper) @@ -73,9 +67,9 @@ namespace StardewModdingAPI.Mods.VirtualKeyboard return score; } - private bool shouldTrigger(Vector2 screenPixels) + private bool shouldTrigger(Vector2 screenPixels, SButton button) { - if (this.buttonRectangle.Contains(screenPixels.X * Game1.options.zoomLevel, screenPixels.Y * Game1.options.zoomLevel) && !this.hidden) + if (this.buttonRectangle.Contains(screenPixels.X * Game1.options.zoomLevel, screenPixels.Y * Game1.options.zoomLevel) && !this.hidden && button == SButton.MouseLeft) { if (!this.hidden) Toolbar.toolbarPressed = true; @@ -92,21 +86,12 @@ namespace StardewModdingAPI.Mods.VirtualKeyboard } Vector2 screenPixels = e.Cursor.ScreenPixels; - if (this.shouldTrigger(screenPixels)) + if (this.shouldTrigger(screenPixels, e.Button)) { - object inputState = e.GetType().GetField("InputState", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(e); - - object buttonPressedEventArgs = Activator.CreateInstance(typeof(ButtonPressedEventArgs), BindingFlags.NonPublic | BindingFlags.Instance, null, new object[] { this.buttonKey, e.Cursor, inputState }, null); - try - { - this.raisingPressed = true; - - this.RaiseButtonPressed.Invoke(this.buttonPressed, new object[] { buttonPressedEventArgs }); - } - finally - { - this.raisingPressed = false; - } + object input = this.helper.Reflection.GetField(typeof(Game1), "input").GetValue(); + this.raisingPressed = true; + input.GetType().GetMethod("OverrideButton").Invoke(input, new object[] { this.buttonKey, true }); + this.raisingPressed = false; } } @@ -118,7 +103,7 @@ namespace StardewModdingAPI.Mods.VirtualKeyboard } Vector2 screenPixels = e.Cursor.ScreenPixels; - if (this.shouldTrigger(screenPixels)) + if (this.shouldTrigger(screenPixels, e.Button)) { if (this.buttonKey == SButton.RightWindows) { @@ -143,17 +128,10 @@ namespace StardewModdingAPI.Mods.VirtualKeyboard this.SendCommand(this.command); return; } - object inputState = e.GetType().GetField("InputState", BindingFlags.NonPublic | BindingFlags.Instance).GetValue(e); - object buttonReleasedEventArgs = Activator.CreateInstance(typeof(ButtonReleasedEventArgs), BindingFlags.NonPublic | BindingFlags.Instance, null, new object[] { this.buttonKey, e.Cursor, inputState }, null); - try - { - this.raisingReleased = true; - this.RaiseButtonReleased.Invoke(this.buttonReleased, new object[] { buttonReleasedEventArgs }); - } - finally - { - this.raisingReleased = false; - } + object input = this.helper.Reflection.GetField(typeof(Game1), "input").GetValue(); + this.raisingReleased = true; + input.GetType().GetMethod("OverrideButton").Invoke(input, new object[] { this.buttonKey, false }); + this.raisingReleased = false; } } diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs index 2ff95300..c313fcf8 100644 --- a/src/SMAPI/Constants.cs +++ b/src/SMAPI/Constants.cs @@ -20,7 +20,7 @@ namespace StardewModdingAPI ** Public ****/ /// SMAPI's current semantic version. - public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.3.2.0", allowNonStandard: true); + public static ISemanticVersion ApiVersion { get; } = new Toolkit.SemanticVersion("3.3.2.1", allowNonStandard: true); /// The minimum supported version of Stardew Valley. public static ISemanticVersion MinimumGameVersion { get; } = new GameVersion("1.4.5"); diff --git a/src/SMAPI/Framework/RewriteFacades/Game1Methods.cs b/src/SMAPI/Framework/RewriteFacades/Game1Methods.cs index 601a3e35..900f731a 100644 --- a/src/SMAPI/Framework/RewriteFacades/Game1Methods.cs +++ b/src/SMAPI/Framework/RewriteFacades/Game1Methods.cs @@ -81,5 +81,16 @@ namespace StardewModdingAPI.Framework.RewriteFacades { panScreen(x, y, 0); } + + public static void removeSquareDebrisFromTile(int tileX, int tileY) + { + Game1.currentLocation.debris.debrisNetCollection.Filter(debris => { + if ((debris.debrisType == 2) && (((int)(debris.Chunks[0].position.X / 64f)) == tileX)) + { + return (debris.chunkFinalYLevel / 0x40) != tileY; + } + return true; + }); + } } } diff --git a/src/SMAPI/Framework/RewriteFacades/IClickableMenuMethods.cs b/src/SMAPI/Framework/RewriteFacades/IClickableMenuMethods.cs index 1f700099..f56f42bb 100644 --- a/src/SMAPI/Framework/RewriteFacades/IClickableMenuMethods.cs +++ b/src/SMAPI/Framework/RewriteFacades/IClickableMenuMethods.cs @@ -36,19 +36,26 @@ namespace StardewModdingAPI.Framework.RewriteFacades [SuppressMessage("ReSharper", "CS0109", Justification = "The 'new' modifier applies when compiled on Windows.")] public new void drawHorizontalPartition(SpriteBatch b, int yPosition, bool small = false, int red = -1, int green = -1, int blue = -1) { - this.drawMobileHorizontalPartition(b, 0, yPosition, 64, small); + base.drawMobileHorizontalPartition(b, 0, yPosition, 64, small); } [SuppressMessage("ReSharper", "CS0109", Justification = "The 'new' modifier applies when compiled on Windows.")] public new void drawVerticalUpperIntersectingPartition(SpriteBatch b, int xPosition, int partitionHeight, int red = -1, int green = -1, int blue = -1) { - this.drawVerticalUpperIntersectingPartition(b, xPosition, partitionHeight); + base.drawVerticalUpperIntersectingPartition(b, xPosition, partitionHeight); } [SuppressMessage("ReSharper", "CS0109", Justification = "The 'new' modifier applies when compiled on Windows.")] public new void drawVerticalIntersectingPartition(SpriteBatch b, int xPosition, int yPosition, int red = -1, int green = -1, int blue = -1) { - this.drawVerticalIntersectingPartition(b, xPosition, yPosition); + base.drawVerticalIntersectingPartition(b, xPosition, yPosition); } + + [SuppressMessage("ReSharper", "CS0109", Justification = "The 'new' modifier applies when compiled on Windows.")] + public new void drawVerticalPartition(SpriteBatch b, int xPosition, bool small = false, int red = -1, int green = -1, int blue = -1) + { + base.drawVerticalPartition(b, xPosition, small); + } + } } diff --git a/src/SMAPI/Resources/Resource.designer.cs b/src/SMAPI/Resources/Resource.designer.cs index 019d125b..42c6a36f 100644 --- a/src/SMAPI/Resources/Resource.designer.cs +++ b/src/SMAPI/Resources/Resource.designer.cs @@ -27,41 +27,41 @@ namespace StardewModdingAPI public partial class Animation { - // aapt resource value: 0x7F010000 - public static int abc_fade_in = 2130771968; + // aapt resource value: 0x7f040000 + public static int abc_fade_in = 2130968576; - // aapt resource value: 0x7F010001 - public static int abc_fade_out = 2130771969; + // aapt resource value: 0x7f040001 + public static int abc_fade_out = 2130968577; - // aapt resource value: 0x7F010002 - public static int abc_grow_fade_in_from_bottom = 2130771970; + // aapt resource value: 0x7f040002 + public static int abc_grow_fade_in_from_bottom = 2130968578; - // aapt resource value: 0x7F010003 - public static int abc_popup_enter = 2130771971; + // aapt resource value: 0x7f040003 + public static int abc_popup_enter = 2130968579; - // aapt resource value: 0x7F010004 - public static int abc_popup_exit = 2130771972; + // aapt resource value: 0x7f040004 + public static int abc_popup_exit = 2130968580; - // aapt resource value: 0x7F010005 - public static int abc_shrink_fade_out_from_bottom = 2130771973; + // aapt resource value: 0x7f040005 + public static int abc_shrink_fade_out_from_bottom = 2130968581; - // aapt resource value: 0x7F010006 - public static int abc_slide_in_bottom = 2130771974; + // aapt resource value: 0x7f040006 + public static int abc_slide_in_bottom = 2130968582; - // aapt resource value: 0x7F010007 - public static int abc_slide_in_top = 2130771975; + // aapt resource value: 0x7f040007 + public static int abc_slide_in_top = 2130968583; - // aapt resource value: 0x7F010008 - public static int abc_slide_out_bottom = 2130771976; + // aapt resource value: 0x7f040008 + public static int abc_slide_out_bottom = 2130968584; - // aapt resource value: 0x7F010009 - public static int abc_slide_out_top = 2130771977; + // aapt resource value: 0x7f040009 + public static int abc_slide_out_top = 2130968585; - // aapt resource value: 0x7F01000A - public static int abc_tooltip_enter = 2130771978; + // aapt resource value: 0x7f04000a + public static int abc_tooltip_enter = 2130968586; - // aapt resource value: 0x7F01000B - public static int abc_tooltip_exit = 2130771979; + // aapt resource value: 0x7f04000b + public static int abc_tooltip_exit = 2130968587; static Animation() { @@ -76,821 +76,821 @@ namespace StardewModdingAPI public partial class Attribute { - // aapt resource value: 0x7F020000 - public static int actionBarDivider = 2130837504; + // aapt resource value: 0x7f01004d + public static int actionBarDivider = 2130772045; - // aapt resource value: 0x7F020001 - public static int actionBarItemBackground = 2130837505; + // aapt resource value: 0x7f01004e + public static int actionBarItemBackground = 2130772046; - // aapt resource value: 0x7F020002 - public static int actionBarPopupTheme = 2130837506; + // aapt resource value: 0x7f010047 + public static int actionBarPopupTheme = 2130772039; - // aapt resource value: 0x7F020003 - public static int actionBarSize = 2130837507; + // aapt resource value: 0x7f01004c + public static int actionBarSize = 2130772044; - // aapt resource value: 0x7F020004 - public static int actionBarSplitStyle = 2130837508; + // aapt resource value: 0x7f010049 + public static int actionBarSplitStyle = 2130772041; - // aapt resource value: 0x7F020005 - public static int actionBarStyle = 2130837509; + // aapt resource value: 0x7f010048 + public static int actionBarStyle = 2130772040; - // aapt resource value: 0x7F020006 - public static int actionBarTabBarStyle = 2130837510; + // aapt resource value: 0x7f010043 + public static int actionBarTabBarStyle = 2130772035; - // aapt resource value: 0x7F020007 - public static int actionBarTabStyle = 2130837511; + // aapt resource value: 0x7f010042 + public static int actionBarTabStyle = 2130772034; - // aapt resource value: 0x7F020008 - public static int actionBarTabTextStyle = 2130837512; + // aapt resource value: 0x7f010044 + public static int actionBarTabTextStyle = 2130772036; - // aapt resource value: 0x7F020009 - public static int actionBarTheme = 2130837513; + // aapt resource value: 0x7f01004a + public static int actionBarTheme = 2130772042; - // aapt resource value: 0x7F02000A - public static int actionBarWidgetTheme = 2130837514; + // aapt resource value: 0x7f01004b + public static int actionBarWidgetTheme = 2130772043; - // aapt resource value: 0x7F02000B - public static int actionButtonStyle = 2130837515; + // aapt resource value: 0x7f010069 + public static int actionButtonStyle = 2130772073; - // aapt resource value: 0x7F02000C - public static int actionDropDownStyle = 2130837516; + // aapt resource value: 0x7f010065 + public static int actionDropDownStyle = 2130772069; - // aapt resource value: 0x7F02000D - public static int actionLayout = 2130837517; + // aapt resource value: 0x7f0100c0 + public static int actionLayout = 2130772160; - // aapt resource value: 0x7F02000E - public static int actionMenuTextAppearance = 2130837518; + // aapt resource value: 0x7f01004f + public static int actionMenuTextAppearance = 2130772047; - // aapt resource value: 0x7F02000F - public static int actionMenuTextColor = 2130837519; + // aapt resource value: 0x7f010050 + public static int actionMenuTextColor = 2130772048; - // aapt resource value: 0x7F020010 - public static int actionModeBackground = 2130837520; + // aapt resource value: 0x7f010053 + public static int actionModeBackground = 2130772051; - // aapt resource value: 0x7F020011 - public static int actionModeCloseButtonStyle = 2130837521; + // aapt resource value: 0x7f010052 + public static int actionModeCloseButtonStyle = 2130772050; - // aapt resource value: 0x7F020012 - public static int actionModeCloseDrawable = 2130837522; + // aapt resource value: 0x7f010055 + public static int actionModeCloseDrawable = 2130772053; - // aapt resource value: 0x7F020013 - public static int actionModeCopyDrawable = 2130837523; + // aapt resource value: 0x7f010057 + public static int actionModeCopyDrawable = 2130772055; - // aapt resource value: 0x7F020014 - public static int actionModeCutDrawable = 2130837524; + // aapt resource value: 0x7f010056 + public static int actionModeCutDrawable = 2130772054; - // aapt resource value: 0x7F020015 - public static int actionModeFindDrawable = 2130837525; + // aapt resource value: 0x7f01005b + public static int actionModeFindDrawable = 2130772059; - // aapt resource value: 0x7F020016 - public static int actionModePasteDrawable = 2130837526; + // aapt resource value: 0x7f010058 + public static int actionModePasteDrawable = 2130772056; - // aapt resource value: 0x7F020017 - public static int actionModePopupWindowStyle = 2130837527; + // aapt resource value: 0x7f01005d + public static int actionModePopupWindowStyle = 2130772061; - // aapt resource value: 0x7F020018 - public static int actionModeSelectAllDrawable = 2130837528; + // aapt resource value: 0x7f010059 + public static int actionModeSelectAllDrawable = 2130772057; - // aapt resource value: 0x7F020019 - public static int actionModeShareDrawable = 2130837529; + // aapt resource value: 0x7f01005a + public static int actionModeShareDrawable = 2130772058; - // aapt resource value: 0x7F02001A - public static int actionModeSplitBackground = 2130837530; + // aapt resource value: 0x7f010054 + public static int actionModeSplitBackground = 2130772052; - // aapt resource value: 0x7F02001B - public static int actionModeStyle = 2130837531; + // aapt resource value: 0x7f010051 + public static int actionModeStyle = 2130772049; - // aapt resource value: 0x7F02001C - public static int actionModeWebSearchDrawable = 2130837532; + // aapt resource value: 0x7f01005c + public static int actionModeWebSearchDrawable = 2130772060; - // aapt resource value: 0x7F02001D - public static int actionOverflowButtonStyle = 2130837533; + // aapt resource value: 0x7f010045 + public static int actionOverflowButtonStyle = 2130772037; - // aapt resource value: 0x7F02001E - public static int actionOverflowMenuStyle = 2130837534; + // aapt resource value: 0x7f010046 + public static int actionOverflowMenuStyle = 2130772038; - // aapt resource value: 0x7F02001F - public static int actionProviderClass = 2130837535; + // aapt resource value: 0x7f0100c2 + public static int actionProviderClass = 2130772162; - // aapt resource value: 0x7F020020 - public static int actionViewClass = 2130837536; + // aapt resource value: 0x7f0100c1 + public static int actionViewClass = 2130772161; - // aapt resource value: 0x7F020021 - public static int activityChooserViewStyle = 2130837537; + // aapt resource value: 0x7f010071 + public static int activityChooserViewStyle = 2130772081; - // aapt resource value: 0x7F020022 - public static int alertDialogButtonGroupStyle = 2130837538; + // aapt resource value: 0x7f010096 + public static int alertDialogButtonGroupStyle = 2130772118; - // aapt resource value: 0x7F020023 - public static int alertDialogCenterButtons = 2130837539; + // aapt resource value: 0x7f010097 + public static int alertDialogCenterButtons = 2130772119; - // aapt resource value: 0x7F020024 - public static int alertDialogStyle = 2130837540; + // aapt resource value: 0x7f010095 + public static int alertDialogStyle = 2130772117; - // aapt resource value: 0x7F020025 - public static int alertDialogTheme = 2130837541; + // aapt resource value: 0x7f010098 + public static int alertDialogTheme = 2130772120; - // aapt resource value: 0x7F020026 - public static int allowStacking = 2130837542; + // aapt resource value: 0x7f0100af + public static int allowStacking = 2130772143; - // aapt resource value: 0x7F020027 - public static int alpha = 2130837543; + // aapt resource value: 0x7f010104 + public static int alpha = 2130772228; - // aapt resource value: 0x7F020028 - public static int alphabeticModifiers = 2130837544; + // aapt resource value: 0x7f0100bd + public static int alphabeticModifiers = 2130772157; - // aapt resource value: 0x7F020029 - public static int arrowHeadLength = 2130837545; + // aapt resource value: 0x7f0100b6 + public static int arrowHeadLength = 2130772150; - // aapt resource value: 0x7F02002A - public static int arrowShaftLength = 2130837546; + // aapt resource value: 0x7f0100b7 + public static int arrowShaftLength = 2130772151; - // aapt resource value: 0x7F02002B - public static int autoCompleteTextViewStyle = 2130837547; + // aapt resource value: 0x7f01009d + public static int autoCompleteTextViewStyle = 2130772125; - // aapt resource value: 0x7F02002C - public static int autoSizeMaxTextSize = 2130837548; + // aapt resource value: 0x7f010033 + public static int autoSizeMaxTextSize = 2130772019; - // aapt resource value: 0x7F02002D - public static int autoSizeMinTextSize = 2130837549; + // aapt resource value: 0x7f010032 + public static int autoSizeMinTextSize = 2130772018; - // aapt resource value: 0x7F02002E - public static int autoSizePresetSizes = 2130837550; + // aapt resource value: 0x7f010031 + public static int autoSizePresetSizes = 2130772017; - // aapt resource value: 0x7F02002F - public static int autoSizeStepGranularity = 2130837551; + // aapt resource value: 0x7f010030 + public static int autoSizeStepGranularity = 2130772016; - // aapt resource value: 0x7F020030 - public static int autoSizeTextType = 2130837552; + // aapt resource value: 0x7f01002f + public static int autoSizeTextType = 2130772015; - // aapt resource value: 0x7F020031 - public static int background = 2130837553; + // aapt resource value: 0x7f01000c + public static int background = 2130771980; - // aapt resource value: 0x7F020032 - public static int backgroundSplit = 2130837554; + // aapt resource value: 0x7f01000e + public static int backgroundSplit = 2130771982; - // aapt resource value: 0x7F020033 - public static int backgroundStacked = 2130837555; + // aapt resource value: 0x7f01000d + public static int backgroundStacked = 2130771981; - // aapt resource value: 0x7F020034 - public static int backgroundTint = 2130837556; + // aapt resource value: 0x7f0100f9 + public static int backgroundTint = 2130772217; - // aapt resource value: 0x7F020035 - public static int backgroundTintMode = 2130837557; + // aapt resource value: 0x7f0100fa + public static int backgroundTintMode = 2130772218; - // aapt resource value: 0x7F020036 - public static int barLength = 2130837558; + // aapt resource value: 0x7f0100b8 + public static int barLength = 2130772152; - // aapt resource value: 0x7F020037 - public static int borderlessButtonStyle = 2130837559; + // aapt resource value: 0x7f01006e + public static int borderlessButtonStyle = 2130772078; - // aapt resource value: 0x7F020038 - public static int buttonBarButtonStyle = 2130837560; + // aapt resource value: 0x7f01006b + public static int buttonBarButtonStyle = 2130772075; - // aapt resource value: 0x7F020039 - public static int buttonBarNegativeButtonStyle = 2130837561; + // aapt resource value: 0x7f01009b + public static int buttonBarNegativeButtonStyle = 2130772123; - // aapt resource value: 0x7F02003A - public static int buttonBarNeutralButtonStyle = 2130837562; + // aapt resource value: 0x7f01009c + public static int buttonBarNeutralButtonStyle = 2130772124; - // aapt resource value: 0x7F02003B - public static int buttonBarPositiveButtonStyle = 2130837563; + // aapt resource value: 0x7f01009a + public static int buttonBarPositiveButtonStyle = 2130772122; - // aapt resource value: 0x7F02003C - public static int buttonBarStyle = 2130837564; + // aapt resource value: 0x7f01006a + public static int buttonBarStyle = 2130772074; - // aapt resource value: 0x7F02003D - public static int buttonGravity = 2130837565; + // aapt resource value: 0x7f0100ee + public static int buttonGravity = 2130772206; - // aapt resource value: 0x7F02003E - public static int buttonIconDimen = 2130837566; + // aapt resource value: 0x7f010027 + public static int buttonIconDimen = 2130772007; - // aapt resource value: 0x7F02003F - public static int buttonPanelSideLayout = 2130837567; + // aapt resource value: 0x7f010021 + public static int buttonPanelSideLayout = 2130772001; - // aapt resource value: 0x7F020040 - public static int buttonStyle = 2130837568; + // aapt resource value: 0x7f01009e + public static int buttonStyle = 2130772126; - // aapt resource value: 0x7F020041 - public static int buttonStyleSmall = 2130837569; + // aapt resource value: 0x7f01009f + public static int buttonStyleSmall = 2130772127; - // aapt resource value: 0x7F020042 - public static int buttonTint = 2130837570; + // aapt resource value: 0x7f0100b0 + public static int buttonTint = 2130772144; - // aapt resource value: 0x7F020043 - public static int buttonTintMode = 2130837571; + // aapt resource value: 0x7f0100b1 + public static int buttonTintMode = 2130772145; - // aapt resource value: 0x7F020044 - public static int checkboxStyle = 2130837572; + // aapt resource value: 0x7f0100a0 + public static int checkboxStyle = 2130772128; - // aapt resource value: 0x7F020045 - public static int checkedTextViewStyle = 2130837573; + // aapt resource value: 0x7f0100a1 + public static int checkedTextViewStyle = 2130772129; - // aapt resource value: 0x7F020046 - public static int closeIcon = 2130837574; + // aapt resource value: 0x7f0100d1 + public static int closeIcon = 2130772177; - // aapt resource value: 0x7F020047 - public static int closeItemLayout = 2130837575; + // aapt resource value: 0x7f01001e + public static int closeItemLayout = 2130771998; - // aapt resource value: 0x7F020048 - public static int collapseContentDescription = 2130837576; + // aapt resource value: 0x7f0100f0 + public static int collapseContentDescription = 2130772208; - // aapt resource value: 0x7F020049 - public static int collapseIcon = 2130837577; + // aapt resource value: 0x7f0100ef + public static int collapseIcon = 2130772207; - // aapt resource value: 0x7F02004A - public static int color = 2130837578; + // aapt resource value: 0x7f0100b2 + public static int color = 2130772146; - // aapt resource value: 0x7F02004B - public static int colorAccent = 2130837579; + // aapt resource value: 0x7f01008d + public static int colorAccent = 2130772109; - // aapt resource value: 0x7F02004C - public static int colorBackgroundFloating = 2130837580; + // aapt resource value: 0x7f010094 + public static int colorBackgroundFloating = 2130772116; - // aapt resource value: 0x7F02004D - public static int colorButtonNormal = 2130837581; + // aapt resource value: 0x7f010091 + public static int colorButtonNormal = 2130772113; - // aapt resource value: 0x7F02004E - public static int colorControlActivated = 2130837582; + // aapt resource value: 0x7f01008f + public static int colorControlActivated = 2130772111; - // aapt resource value: 0x7F02004F - public static int colorControlHighlight = 2130837583; + // aapt resource value: 0x7f010090 + public static int colorControlHighlight = 2130772112; - // aapt resource value: 0x7F020050 - public static int colorControlNormal = 2130837584; + // aapt resource value: 0x7f01008e + public static int colorControlNormal = 2130772110; - // aapt resource value: 0x7F020051 - public static int colorError = 2130837585; + // aapt resource value: 0x7f0100ad + public static int colorError = 2130772141; - // aapt resource value: 0x7F020052 - public static int colorPrimary = 2130837586; + // aapt resource value: 0x7f01008b + public static int colorPrimary = 2130772107; - // aapt resource value: 0x7F020053 - public static int colorPrimaryDark = 2130837587; + // aapt resource value: 0x7f01008c + public static int colorPrimaryDark = 2130772108; - // aapt resource value: 0x7F020054 - public static int colorSwitchThumbNormal = 2130837588; + // aapt resource value: 0x7f010092 + public static int colorSwitchThumbNormal = 2130772114; - // aapt resource value: 0x7F020055 - public static int commitIcon = 2130837589; + // aapt resource value: 0x7f0100d6 + public static int commitIcon = 2130772182; - // aapt resource value: 0x7F020056 - public static int contentDescription = 2130837590; + // aapt resource value: 0x7f0100c3 + public static int contentDescription = 2130772163; - // aapt resource value: 0x7F020057 - public static int contentInsetEnd = 2130837591; + // aapt resource value: 0x7f010017 + public static int contentInsetEnd = 2130771991; - // aapt resource value: 0x7F020058 - public static int contentInsetEndWithActions = 2130837592; + // aapt resource value: 0x7f01001b + public static int contentInsetEndWithActions = 2130771995; - // aapt resource value: 0x7F020059 - public static int contentInsetLeft = 2130837593; + // aapt resource value: 0x7f010018 + public static int contentInsetLeft = 2130771992; - // aapt resource value: 0x7F02005A - public static int contentInsetRight = 2130837594; + // aapt resource value: 0x7f010019 + public static int contentInsetRight = 2130771993; - // aapt resource value: 0x7F02005B - public static int contentInsetStart = 2130837595; + // aapt resource value: 0x7f010016 + public static int contentInsetStart = 2130771990; - // aapt resource value: 0x7F02005C - public static int contentInsetStartWithNavigation = 2130837596; + // aapt resource value: 0x7f01001a + public static int contentInsetStartWithNavigation = 2130771994; - // aapt resource value: 0x7F02005D - public static int controlBackground = 2130837597; + // aapt resource value: 0x7f010093 + public static int controlBackground = 2130772115; - // aapt resource value: 0x7F02005E - public static int coordinatorLayoutStyle = 2130837598; + // aapt resource value: 0x7f0100fb + public static int coordinatorLayoutStyle = 2130772219; - // aapt resource value: 0x7F02005F - public static int customNavigationLayout = 2130837599; + // aapt resource value: 0x7f01000f + public static int customNavigationLayout = 2130771983; - // aapt resource value: 0x7F020060 - public static int defaultQueryHint = 2130837600; + // aapt resource value: 0x7f0100d0 + public static int defaultQueryHint = 2130772176; - // aapt resource value: 0x7F020061 - public static int dialogCornerRadius = 2130837601; + // aapt resource value: 0x7f010064 + public static int dialogCornerRadius = 2130772068; - // aapt resource value: 0x7F020062 - public static int dialogPreferredPadding = 2130837602; + // aapt resource value: 0x7f010062 + public static int dialogPreferredPadding = 2130772066; - // aapt resource value: 0x7F020063 - public static int dialogTheme = 2130837603; + // aapt resource value: 0x7f010061 + public static int dialogTheme = 2130772065; - // aapt resource value: 0x7F020064 - public static int displayOptions = 2130837604; + // aapt resource value: 0x7f010005 + public static int displayOptions = 2130771973; - // aapt resource value: 0x7F020065 - public static int divider = 2130837605; + // aapt resource value: 0x7f01000b + public static int divider = 2130771979; - // aapt resource value: 0x7F020066 - public static int dividerHorizontal = 2130837606; + // aapt resource value: 0x7f010070 + public static int dividerHorizontal = 2130772080; - // aapt resource value: 0x7F020067 - public static int dividerPadding = 2130837607; + // aapt resource value: 0x7f0100bc + public static int dividerPadding = 2130772156; - // aapt resource value: 0x7F020068 - public static int dividerVertical = 2130837608; + // aapt resource value: 0x7f01006f + public static int dividerVertical = 2130772079; - // aapt resource value: 0x7F020069 - public static int drawableSize = 2130837609; + // aapt resource value: 0x7f0100b4 + public static int drawableSize = 2130772148; - // aapt resource value: 0x7F02006A - public static int drawerArrowStyle = 2130837610; + // aapt resource value: 0x7f010000 + public static int drawerArrowStyle = 2130771968; - // aapt resource value: 0x7F02006C - public static int dropdownListPreferredItemHeight = 2130837612; + // aapt resource value: 0x7f010082 + public static int dropDownListViewStyle = 2130772098; - // aapt resource value: 0x7F02006B - public static int dropDownListViewStyle = 2130837611; + // aapt resource value: 0x7f010066 + public static int dropdownListPreferredItemHeight = 2130772070; - // aapt resource value: 0x7F02006D - public static int editTextBackground = 2130837613; + // aapt resource value: 0x7f010077 + public static int editTextBackground = 2130772087; - // aapt resource value: 0x7F02006E - public static int editTextColor = 2130837614; + // aapt resource value: 0x7f010076 + public static int editTextColor = 2130772086; - // aapt resource value: 0x7F02006F - public static int editTextStyle = 2130837615; + // aapt resource value: 0x7f0100a2 + public static int editTextStyle = 2130772130; - // aapt resource value: 0x7F020070 - public static int elevation = 2130837616; + // aapt resource value: 0x7f01001c + public static int elevation = 2130771996; - // aapt resource value: 0x7F020071 - public static int expandActivityOverflowButtonDrawable = 2130837617; + // aapt resource value: 0x7f010020 + public static int expandActivityOverflowButtonDrawable = 2130772000; - // aapt resource value: 0x7F020072 - public static int firstBaselineToTopHeight = 2130837618; + // aapt resource value: 0x7f010036 + public static int firstBaselineToTopHeight = 2130772022; - // aapt resource value: 0x7F020073 - public static int font = 2130837619; + // aapt resource value: 0x7f01010c + public static int font = 2130772236; - // aapt resource value: 0x7F020074 - public static int fontFamily = 2130837620; + // aapt resource value: 0x7f010034 + public static int fontFamily = 2130772020; - // aapt resource value: 0x7F020075 - public static int fontProviderAuthority = 2130837621; + // aapt resource value: 0x7f010105 + public static int fontProviderAuthority = 2130772229; - // aapt resource value: 0x7F020076 - public static int fontProviderCerts = 2130837622; + // aapt resource value: 0x7f010108 + public static int fontProviderCerts = 2130772232; - // aapt resource value: 0x7F020077 - public static int fontProviderFetchStrategy = 2130837623; + // aapt resource value: 0x7f010109 + public static int fontProviderFetchStrategy = 2130772233; - // aapt resource value: 0x7F020078 - public static int fontProviderFetchTimeout = 2130837624; + // aapt resource value: 0x7f01010a + public static int fontProviderFetchTimeout = 2130772234; - // aapt resource value: 0x7F020079 - public static int fontProviderPackage = 2130837625; + // aapt resource value: 0x7f010106 + public static int fontProviderPackage = 2130772230; - // aapt resource value: 0x7F02007A - public static int fontProviderQuery = 2130837626; + // aapt resource value: 0x7f010107 + public static int fontProviderQuery = 2130772231; - // aapt resource value: 0x7F02007B - public static int fontStyle = 2130837627; + // aapt resource value: 0x7f01010b + public static int fontStyle = 2130772235; - // aapt resource value: 0x7F02007C - public static int fontVariationSettings = 2130837628; + // aapt resource value: 0x7f01010e + public static int fontVariationSettings = 2130772238; - // aapt resource value: 0x7F02007D - public static int fontWeight = 2130837629; + // aapt resource value: 0x7f01010d + public static int fontWeight = 2130772237; - // aapt resource value: 0x7F02007E - public static int gapBetweenBars = 2130837630; + // aapt resource value: 0x7f0100b5 + public static int gapBetweenBars = 2130772149; - // aapt resource value: 0x7F02007F - public static int goIcon = 2130837631; + // aapt resource value: 0x7f0100d2 + public static int goIcon = 2130772178; - // aapt resource value: 0x7F020080 - public static int height = 2130837632; + // aapt resource value: 0x7f010001 + public static int height = 2130771969; - // aapt resource value: 0x7F020081 - public static int hideOnContentScroll = 2130837633; + // aapt resource value: 0x7f010015 + public static int hideOnContentScroll = 2130771989; - // aapt resource value: 0x7F020082 - public static int homeAsUpIndicator = 2130837634; + // aapt resource value: 0x7f010068 + public static int homeAsUpIndicator = 2130772072; - // aapt resource value: 0x7F020083 - public static int homeLayout = 2130837635; + // aapt resource value: 0x7f010010 + public static int homeLayout = 2130771984; - // aapt resource value: 0x7F020084 - public static int icon = 2130837636; + // aapt resource value: 0x7f010009 + public static int icon = 2130771977; - // aapt resource value: 0x7F020087 - public static int iconifiedByDefault = 2130837639; + // aapt resource value: 0x7f0100c5 + public static int iconTint = 2130772165; - // aapt resource value: 0x7F020085 - public static int iconTint = 2130837637; + // aapt resource value: 0x7f0100c6 + public static int iconTintMode = 2130772166; - // aapt resource value: 0x7F020086 - public static int iconTintMode = 2130837638; + // aapt resource value: 0x7f0100ce + public static int iconifiedByDefault = 2130772174; - // aapt resource value: 0x7F020088 - public static int imageButtonStyle = 2130837640; + // aapt resource value: 0x7f010078 + public static int imageButtonStyle = 2130772088; - // aapt resource value: 0x7F020089 - public static int indeterminateProgressStyle = 2130837641; + // aapt resource value: 0x7f010012 + public static int indeterminateProgressStyle = 2130771986; - // aapt resource value: 0x7F02008A - public static int initialActivityCount = 2130837642; + // aapt resource value: 0x7f01001f + public static int initialActivityCount = 2130771999; - // aapt resource value: 0x7F02008B - public static int isLightTheme = 2130837643; + // aapt resource value: 0x7f010002 + public static int isLightTheme = 2130771970; - // aapt resource value: 0x7F02008C - public static int itemPadding = 2130837644; + // aapt resource value: 0x7f010014 + public static int itemPadding = 2130771988; - // aapt resource value: 0x7F02008D - public static int keylines = 2130837645; + // aapt resource value: 0x7f0100fc + public static int keylines = 2130772220; - // aapt resource value: 0x7F02008E - public static int lastBaselineToBottomHeight = 2130837646; + // aapt resource value: 0x7f010037 + public static int lastBaselineToBottomHeight = 2130772023; - // aapt resource value: 0x7F02008F - public static int layout = 2130837647; + // aapt resource value: 0x7f0100cd + public static int layout = 2130772173; - // aapt resource value: 0x7F020090 - public static int layout_anchor = 2130837648; + // aapt resource value: 0x7f0100ff + public static int layout_anchor = 2130772223; - // aapt resource value: 0x7F020091 - public static int layout_anchorGravity = 2130837649; + // aapt resource value: 0x7f010101 + public static int layout_anchorGravity = 2130772225; - // aapt resource value: 0x7F020092 - public static int layout_behavior = 2130837650; + // aapt resource value: 0x7f0100fe + public static int layout_behavior = 2130772222; - // aapt resource value: 0x7F020093 - public static int layout_dodgeInsetEdges = 2130837651; + // aapt resource value: 0x7f010103 + public static int layout_dodgeInsetEdges = 2130772227; - // aapt resource value: 0x7F020094 - public static int layout_insetEdge = 2130837652; + // aapt resource value: 0x7f010102 + public static int layout_insetEdge = 2130772226; - // aapt resource value: 0x7F020095 - public static int layout_keyline = 2130837653; + // aapt resource value: 0x7f010100 + public static int layout_keyline = 2130772224; - // aapt resource value: 0x7F020096 - public static int lineHeight = 2130837654; + // aapt resource value: 0x7f010035 + public static int lineHeight = 2130772021; - // aapt resource value: 0x7F020097 - public static int listChoiceBackgroundIndicator = 2130837655; + // aapt resource value: 0x7f01008a + public static int listChoiceBackgroundIndicator = 2130772106; - // aapt resource value: 0x7F020098 - public static int listDividerAlertDialog = 2130837656; + // aapt resource value: 0x7f010063 + public static int listDividerAlertDialog = 2130772067; - // aapt resource value: 0x7F020099 - public static int listItemLayout = 2130837657; + // aapt resource value: 0x7f010025 + public static int listItemLayout = 2130772005; - // aapt resource value: 0x7F02009A - public static int listLayout = 2130837658; + // aapt resource value: 0x7f010022 + public static int listLayout = 2130772002; - // aapt resource value: 0x7F02009B - public static int listMenuViewStyle = 2130837659; + // aapt resource value: 0x7f0100aa + public static int listMenuViewStyle = 2130772138; - // aapt resource value: 0x7F02009C - public static int listPopupWindowStyle = 2130837660; + // aapt resource value: 0x7f010083 + public static int listPopupWindowStyle = 2130772099; - // aapt resource value: 0x7F02009D - public static int listPreferredItemHeight = 2130837661; + // aapt resource value: 0x7f01007d + public static int listPreferredItemHeight = 2130772093; - // aapt resource value: 0x7F02009E - public static int listPreferredItemHeightLarge = 2130837662; + // aapt resource value: 0x7f01007f + public static int listPreferredItemHeightLarge = 2130772095; - // aapt resource value: 0x7F02009F - public static int listPreferredItemHeightSmall = 2130837663; + // aapt resource value: 0x7f01007e + public static int listPreferredItemHeightSmall = 2130772094; - // aapt resource value: 0x7F0200A0 - public static int listPreferredItemPaddingLeft = 2130837664; + // aapt resource value: 0x7f010080 + public static int listPreferredItemPaddingLeft = 2130772096; - // aapt resource value: 0x7F0200A1 - public static int listPreferredItemPaddingRight = 2130837665; + // aapt resource value: 0x7f010081 + public static int listPreferredItemPaddingRight = 2130772097; - // aapt resource value: 0x7F0200A2 - public static int logo = 2130837666; + // aapt resource value: 0x7f01000a + public static int logo = 2130771978; - // aapt resource value: 0x7F0200A3 - public static int logoDescription = 2130837667; + // aapt resource value: 0x7f0100f3 + public static int logoDescription = 2130772211; - // aapt resource value: 0x7F0200A4 - public static int maxButtonHeight = 2130837668; + // aapt resource value: 0x7f0100ed + public static int maxButtonHeight = 2130772205; - // aapt resource value: 0x7F0200A5 - public static int measureWithLargestChild = 2130837669; + // aapt resource value: 0x7f0100ba + public static int measureWithLargestChild = 2130772154; - // aapt resource value: 0x7F0200A6 - public static int multiChoiceItemLayout = 2130837670; + // aapt resource value: 0x7f010023 + public static int multiChoiceItemLayout = 2130772003; - // aapt resource value: 0x7F0200A7 - public static int navigationContentDescription = 2130837671; + // aapt resource value: 0x7f0100f2 + public static int navigationContentDescription = 2130772210; - // aapt resource value: 0x7F0200A8 - public static int navigationIcon = 2130837672; + // aapt resource value: 0x7f0100f1 + public static int navigationIcon = 2130772209; - // aapt resource value: 0x7F0200A9 - public static int navigationMode = 2130837673; + // aapt resource value: 0x7f010004 + public static int navigationMode = 2130771972; - // aapt resource value: 0x7F0200AA - public static int numericModifiers = 2130837674; + // aapt resource value: 0x7f0100be + public static int numericModifiers = 2130772158; - // aapt resource value: 0x7F0200AB - public static int overlapAnchor = 2130837675; + // aapt resource value: 0x7f0100c9 + public static int overlapAnchor = 2130772169; - // aapt resource value: 0x7F0200AC - public static int paddingBottomNoButtons = 2130837676; + // aapt resource value: 0x7f0100cb + public static int paddingBottomNoButtons = 2130772171; - // aapt resource value: 0x7F0200AD - public static int paddingEnd = 2130837677; + // aapt resource value: 0x7f0100f7 + public static int paddingEnd = 2130772215; - // aapt resource value: 0x7F0200AE - public static int paddingStart = 2130837678; + // aapt resource value: 0x7f0100f6 + public static int paddingStart = 2130772214; - // aapt resource value: 0x7F0200AF - public static int paddingTopNoTitle = 2130837679; + // aapt resource value: 0x7f0100cc + public static int paddingTopNoTitle = 2130772172; - // aapt resource value: 0x7F0200B0 - public static int panelBackground = 2130837680; + // aapt resource value: 0x7f010087 + public static int panelBackground = 2130772103; - // aapt resource value: 0x7F0200B1 - public static int panelMenuListTheme = 2130837681; + // aapt resource value: 0x7f010089 + public static int panelMenuListTheme = 2130772105; - // aapt resource value: 0x7F0200B2 - public static int panelMenuListWidth = 2130837682; + // aapt resource value: 0x7f010088 + public static int panelMenuListWidth = 2130772104; - // aapt resource value: 0x7F0200B3 - public static int popupMenuStyle = 2130837683; + // aapt resource value: 0x7f010074 + public static int popupMenuStyle = 2130772084; - // aapt resource value: 0x7F0200B4 - public static int popupTheme = 2130837684; + // aapt resource value: 0x7f01001d + public static int popupTheme = 2130771997; - // aapt resource value: 0x7F0200B5 - public static int popupWindowStyle = 2130837685; + // aapt resource value: 0x7f010075 + public static int popupWindowStyle = 2130772085; - // aapt resource value: 0x7F0200B6 - public static int preserveIconSpacing = 2130837686; + // aapt resource value: 0x7f0100c7 + public static int preserveIconSpacing = 2130772167; - // aapt resource value: 0x7F0200B7 - public static int progressBarPadding = 2130837687; + // aapt resource value: 0x7f010013 + public static int progressBarPadding = 2130771987; - // aapt resource value: 0x7F0200B8 - public static int progressBarStyle = 2130837688; + // aapt resource value: 0x7f010011 + public static int progressBarStyle = 2130771985; - // aapt resource value: 0x7F0200B9 - public static int queryBackground = 2130837689; + // aapt resource value: 0x7f0100d8 + public static int queryBackground = 2130772184; - // aapt resource value: 0x7F0200BA - public static int queryHint = 2130837690; + // aapt resource value: 0x7f0100cf + public static int queryHint = 2130772175; - // aapt resource value: 0x7F0200BB - public static int radioButtonStyle = 2130837691; + // aapt resource value: 0x7f0100a3 + public static int radioButtonStyle = 2130772131; - // aapt resource value: 0x7F0200BC - public static int ratingBarStyle = 2130837692; + // aapt resource value: 0x7f0100a4 + public static int ratingBarStyle = 2130772132; - // aapt resource value: 0x7F0200BD - public static int ratingBarStyleIndicator = 2130837693; + // aapt resource value: 0x7f0100a5 + public static int ratingBarStyleIndicator = 2130772133; - // aapt resource value: 0x7F0200BE - public static int ratingBarStyleSmall = 2130837694; + // aapt resource value: 0x7f0100a6 + public static int ratingBarStyleSmall = 2130772134; - // aapt resource value: 0x7F0200BF - public static int searchHintIcon = 2130837695; + // aapt resource value: 0x7f0100d4 + public static int searchHintIcon = 2130772180; - // aapt resource value: 0x7F0200C0 - public static int searchIcon = 2130837696; + // aapt resource value: 0x7f0100d3 + public static int searchIcon = 2130772179; - // aapt resource value: 0x7F0200C1 - public static int searchViewStyle = 2130837697; + // aapt resource value: 0x7f01007c + public static int searchViewStyle = 2130772092; - // aapt resource value: 0x7F0200C2 - public static int seekBarStyle = 2130837698; + // aapt resource value: 0x7f0100a7 + public static int seekBarStyle = 2130772135; - // aapt resource value: 0x7F0200C3 - public static int selectableItemBackground = 2130837699; + // aapt resource value: 0x7f01006c + public static int selectableItemBackground = 2130772076; - // aapt resource value: 0x7F0200C4 - public static int selectableItemBackgroundBorderless = 2130837700; + // aapt resource value: 0x7f01006d + public static int selectableItemBackgroundBorderless = 2130772077; - // aapt resource value: 0x7F0200C5 - public static int showAsAction = 2130837701; + // aapt resource value: 0x7f0100bf + public static int showAsAction = 2130772159; - // aapt resource value: 0x7F0200C6 - public static int showDividers = 2130837702; + // aapt resource value: 0x7f0100bb + public static int showDividers = 2130772155; - // aapt resource value: 0x7F0200C7 - public static int showText = 2130837703; + // aapt resource value: 0x7f0100e4 + public static int showText = 2130772196; - // aapt resource value: 0x7F0200C8 - public static int showTitle = 2130837704; + // aapt resource value: 0x7f010026 + public static int showTitle = 2130772006; - // aapt resource value: 0x7F0200C9 - public static int singleChoiceItemLayout = 2130837705; + // aapt resource value: 0x7f010024 + public static int singleChoiceItemLayout = 2130772004; - // aapt resource value: 0x7F0200CA - public static int spinBars = 2130837706; + // aapt resource value: 0x7f0100b3 + public static int spinBars = 2130772147; - // aapt resource value: 0x7F0200CB - public static int spinnerDropDownItemStyle = 2130837707; + // aapt resource value: 0x7f010067 + public static int spinnerDropDownItemStyle = 2130772071; - // aapt resource value: 0x7F0200CC - public static int spinnerStyle = 2130837708; + // aapt resource value: 0x7f0100a8 + public static int spinnerStyle = 2130772136; - // aapt resource value: 0x7F0200CD - public static int splitTrack = 2130837709; + // aapt resource value: 0x7f0100e3 + public static int splitTrack = 2130772195; - // aapt resource value: 0x7F0200CE - public static int srcCompat = 2130837710; + // aapt resource value: 0x7f010028 + public static int srcCompat = 2130772008; - // aapt resource value: 0x7F0200CF - public static int state_above_anchor = 2130837711; + // aapt resource value: 0x7f0100ca + public static int state_above_anchor = 2130772170; - // aapt resource value: 0x7F0200D0 - public static int statusBarBackground = 2130837712; + // aapt resource value: 0x7f0100fd + public static int statusBarBackground = 2130772221; - // aapt resource value: 0x7F0200D1 - public static int subMenuArrow = 2130837713; + // aapt resource value: 0x7f0100c8 + public static int subMenuArrow = 2130772168; - // aapt resource value: 0x7F0200D2 - public static int submitBackground = 2130837714; + // aapt resource value: 0x7f0100d9 + public static int submitBackground = 2130772185; - // aapt resource value: 0x7F0200D3 - public static int subtitle = 2130837715; + // aapt resource value: 0x7f010006 + public static int subtitle = 2130771974; - // aapt resource value: 0x7F0200D4 - public static int subtitleTextAppearance = 2130837716; + // aapt resource value: 0x7f0100e6 + public static int subtitleTextAppearance = 2130772198; - // aapt resource value: 0x7F0200D5 - public static int subtitleTextColor = 2130837717; + // aapt resource value: 0x7f0100f5 + public static int subtitleTextColor = 2130772213; - // aapt resource value: 0x7F0200D6 - public static int subtitleTextStyle = 2130837718; + // aapt resource value: 0x7f010008 + public static int subtitleTextStyle = 2130771976; - // aapt resource value: 0x7F0200D7 - public static int suggestionRowLayout = 2130837719; + // aapt resource value: 0x7f0100d7 + public static int suggestionRowLayout = 2130772183; - // aapt resource value: 0x7F0200D8 - public static int switchMinWidth = 2130837720; + // aapt resource value: 0x7f0100e1 + public static int switchMinWidth = 2130772193; - // aapt resource value: 0x7F0200D9 - public static int switchPadding = 2130837721; + // aapt resource value: 0x7f0100e2 + public static int switchPadding = 2130772194; - // aapt resource value: 0x7F0200DA - public static int switchStyle = 2130837722; + // aapt resource value: 0x7f0100a9 + public static int switchStyle = 2130772137; - // aapt resource value: 0x7F0200DB - public static int switchTextAppearance = 2130837723; + // aapt resource value: 0x7f0100e0 + public static int switchTextAppearance = 2130772192; - // aapt resource value: 0x7F0200DC - public static int textAllCaps = 2130837724; + // aapt resource value: 0x7f01002e + public static int textAllCaps = 2130772014; - // aapt resource value: 0x7F0200DD - public static int textAppearanceLargePopupMenu = 2130837725; + // aapt resource value: 0x7f01005e + public static int textAppearanceLargePopupMenu = 2130772062; - // aapt resource value: 0x7F0200DE - public static int textAppearanceListItem = 2130837726; + // aapt resource value: 0x7f010084 + public static int textAppearanceListItem = 2130772100; - // aapt resource value: 0x7F0200DF - public static int textAppearanceListItemSecondary = 2130837727; + // aapt resource value: 0x7f010085 + public static int textAppearanceListItemSecondary = 2130772101; - // aapt resource value: 0x7F0200E0 - public static int textAppearanceListItemSmall = 2130837728; + // aapt resource value: 0x7f010086 + public static int textAppearanceListItemSmall = 2130772102; - // aapt resource value: 0x7F0200E1 - public static int textAppearancePopupMenuHeader = 2130837729; + // aapt resource value: 0x7f010060 + public static int textAppearancePopupMenuHeader = 2130772064; - // aapt resource value: 0x7F0200E2 - public static int textAppearanceSearchResultSubtitle = 2130837730; + // aapt resource value: 0x7f01007a + public static int textAppearanceSearchResultSubtitle = 2130772090; - // aapt resource value: 0x7F0200E3 - public static int textAppearanceSearchResultTitle = 2130837731; + // aapt resource value: 0x7f010079 + public static int textAppearanceSearchResultTitle = 2130772089; - // aapt resource value: 0x7F0200E4 - public static int textAppearanceSmallPopupMenu = 2130837732; + // aapt resource value: 0x7f01005f + public static int textAppearanceSmallPopupMenu = 2130772063; - // aapt resource value: 0x7F0200E5 - public static int textColorAlertDialogListItem = 2130837733; + // aapt resource value: 0x7f010099 + public static int textColorAlertDialogListItem = 2130772121; - // aapt resource value: 0x7F0200E6 - public static int textColorSearchUrl = 2130837734; + // aapt resource value: 0x7f01007b + public static int textColorSearchUrl = 2130772091; - // aapt resource value: 0x7F0200E7 - public static int theme = 2130837735; + // aapt resource value: 0x7f0100f8 + public static int theme = 2130772216; - // aapt resource value: 0x7F0200E8 - public static int thickness = 2130837736; + // aapt resource value: 0x7f0100b9 + public static int thickness = 2130772153; - // aapt resource value: 0x7F0200E9 - public static int thumbTextPadding = 2130837737; + // aapt resource value: 0x7f0100df + public static int thumbTextPadding = 2130772191; - // aapt resource value: 0x7F0200EA - public static int thumbTint = 2130837738; + // aapt resource value: 0x7f0100da + public static int thumbTint = 2130772186; - // aapt resource value: 0x7F0200EB - public static int thumbTintMode = 2130837739; + // aapt resource value: 0x7f0100db + public static int thumbTintMode = 2130772187; - // aapt resource value: 0x7F0200EC - public static int tickMark = 2130837740; + // aapt resource value: 0x7f01002b + public static int tickMark = 2130772011; - // aapt resource value: 0x7F0200ED - public static int tickMarkTint = 2130837741; + // aapt resource value: 0x7f01002c + public static int tickMarkTint = 2130772012; - // aapt resource value: 0x7F0200EE - public static int tickMarkTintMode = 2130837742; + // aapt resource value: 0x7f01002d + public static int tickMarkTintMode = 2130772013; - // aapt resource value: 0x7F0200EF - public static int tint = 2130837743; + // aapt resource value: 0x7f010029 + public static int tint = 2130772009; - // aapt resource value: 0x7F0200F0 - public static int tintMode = 2130837744; + // aapt resource value: 0x7f01002a + public static int tintMode = 2130772010; - // aapt resource value: 0x7F0200F1 - public static int title = 2130837745; + // aapt resource value: 0x7f010003 + public static int title = 2130771971; - // aapt resource value: 0x7F0200F2 - public static int titleMargin = 2130837746; + // aapt resource value: 0x7f0100e7 + public static int titleMargin = 2130772199; - // aapt resource value: 0x7F0200F3 - public static int titleMarginBottom = 2130837747; + // aapt resource value: 0x7f0100eb + public static int titleMarginBottom = 2130772203; - // aapt resource value: 0x7F0200F4 - public static int titleMarginEnd = 2130837748; + // aapt resource value: 0x7f0100e9 + public static int titleMarginEnd = 2130772201; - // aapt resource value: 0x7F0200F7 - public static int titleMargins = 2130837751; + // aapt resource value: 0x7f0100e8 + public static int titleMarginStart = 2130772200; - // aapt resource value: 0x7F0200F5 - public static int titleMarginStart = 2130837749; + // aapt resource value: 0x7f0100ea + public static int titleMarginTop = 2130772202; - // aapt resource value: 0x7F0200F6 - public static int titleMarginTop = 2130837750; + // aapt resource value: 0x7f0100ec + public static int titleMargins = 2130772204; - // aapt resource value: 0x7F0200F8 - public static int titleTextAppearance = 2130837752; + // aapt resource value: 0x7f0100e5 + public static int titleTextAppearance = 2130772197; - // aapt resource value: 0x7F0200F9 - public static int titleTextColor = 2130837753; + // aapt resource value: 0x7f0100f4 + public static int titleTextColor = 2130772212; - // aapt resource value: 0x7F0200FA - public static int titleTextStyle = 2130837754; + // aapt resource value: 0x7f010007 + public static int titleTextStyle = 2130771975; - // aapt resource value: 0x7F0200FB - public static int toolbarNavigationButtonStyle = 2130837755; + // aapt resource value: 0x7f010073 + public static int toolbarNavigationButtonStyle = 2130772083; - // aapt resource value: 0x7F0200FC - public static int toolbarStyle = 2130837756; + // aapt resource value: 0x7f010072 + public static int toolbarStyle = 2130772082; - // aapt resource value: 0x7F0200FD - public static int tooltipForegroundColor = 2130837757; + // aapt resource value: 0x7f0100ac + public static int tooltipForegroundColor = 2130772140; - // aapt resource value: 0x7F0200FE - public static int tooltipFrameBackground = 2130837758; + // aapt resource value: 0x7f0100ab + public static int tooltipFrameBackground = 2130772139; - // aapt resource value: 0x7F0200FF - public static int tooltipText = 2130837759; + // aapt resource value: 0x7f0100c4 + public static int tooltipText = 2130772164; - // aapt resource value: 0x7F020100 - public static int track = 2130837760; + // aapt resource value: 0x7f0100dc + public static int track = 2130772188; - // aapt resource value: 0x7F020101 - public static int trackTint = 2130837761; + // aapt resource value: 0x7f0100dd + public static int trackTint = 2130772189; - // aapt resource value: 0x7F020102 - public static int trackTintMode = 2130837762; + // aapt resource value: 0x7f0100de + public static int trackTintMode = 2130772190; - // aapt resource value: 0x7F020103 - public static int ttcIndex = 2130837763; + // aapt resource value: 0x7f01010f + public static int ttcIndex = 2130772239; - // aapt resource value: 0x7F020104 - public static int viewInflaterClass = 2130837764; + // aapt resource value: 0x7f0100ae + public static int viewInflaterClass = 2130772142; - // aapt resource value: 0x7F020105 - public static int voiceIcon = 2130837765; + // aapt resource value: 0x7f0100d5 + public static int voiceIcon = 2130772181; - // aapt resource value: 0x7F020106 - public static int windowActionBar = 2130837766; + // aapt resource value: 0x7f010038 + public static int windowActionBar = 2130772024; - // aapt resource value: 0x7F020107 - public static int windowActionBarOverlay = 2130837767; + // aapt resource value: 0x7f01003a + public static int windowActionBarOverlay = 2130772026; - // aapt resource value: 0x7F020108 - public static int windowActionModeOverlay = 2130837768; + // aapt resource value: 0x7f01003b + public static int windowActionModeOverlay = 2130772027; - // aapt resource value: 0x7F020109 - public static int windowFixedHeightMajor = 2130837769; + // aapt resource value: 0x7f01003f + public static int windowFixedHeightMajor = 2130772031; - // aapt resource value: 0x7F02010A - public static int windowFixedHeightMinor = 2130837770; + // aapt resource value: 0x7f01003d + public static int windowFixedHeightMinor = 2130772029; - // aapt resource value: 0x7F02010B - public static int windowFixedWidthMajor = 2130837771; + // aapt resource value: 0x7f01003c + public static int windowFixedWidthMajor = 2130772028; - // aapt resource value: 0x7F02010C - public static int windowFixedWidthMinor = 2130837772; + // aapt resource value: 0x7f01003e + public static int windowFixedWidthMinor = 2130772030; - // aapt resource value: 0x7F02010D - public static int windowMinWidthMajor = 2130837773; + // aapt resource value: 0x7f010040 + public static int windowMinWidthMajor = 2130772032; - // aapt resource value: 0x7F02010E - public static int windowMinWidthMinor = 2130837774; + // aapt resource value: 0x7f010041 + public static int windowMinWidthMinor = 2130772033; - // aapt resource value: 0x7F02010F - public static int windowNoTitle = 2130837775; + // aapt resource value: 0x7f010039 + public static int windowNoTitle = 2130772025; static Attribute() { @@ -905,14 +905,14 @@ namespace StardewModdingAPI public partial class Boolean { - // aapt resource value: 0x7F030000 - public static int abc_action_bar_embed_tabs = 2130903040; + // aapt resource value: 0x7f080000 + public static int abc_action_bar_embed_tabs = 2131230720; - // aapt resource value: 0x7F030001 - public static int abc_allow_stacked_button_bar = 2130903041; + // aapt resource value: 0x7f080001 + public static int abc_allow_stacked_button_bar = 2131230721; - // aapt resource value: 0x7F030002 - public static int abc_config_actionMenuItemAllCaps = 2130903042; + // aapt resource value: 0x7f080002 + public static int abc_config_actionMenuItemAllCaps = 2131230722; static Boolean() { @@ -927,257 +927,257 @@ namespace StardewModdingAPI public partial class Color { - // aapt resource value: 0x7F040000 - public static int abc_background_cache_hint_selector_material_dark = 2130968576; + // aapt resource value: 0x7f09003e + public static int abc_background_cache_hint_selector_material_dark = 2131296318; - // aapt resource value: 0x7F040001 - public static int abc_background_cache_hint_selector_material_light = 2130968577; + // aapt resource value: 0x7f09003f + public static int abc_background_cache_hint_selector_material_light = 2131296319; - // aapt resource value: 0x7F040002 - public static int abc_btn_colored_borderless_text_material = 2130968578; + // aapt resource value: 0x7f090040 + public static int abc_btn_colored_borderless_text_material = 2131296320; - // aapt resource value: 0x7F040003 - public static int abc_btn_colored_text_material = 2130968579; + // aapt resource value: 0x7f090041 + public static int abc_btn_colored_text_material = 2131296321; - // aapt resource value: 0x7F040004 - public static int abc_color_highlight_material = 2130968580; + // aapt resource value: 0x7f090042 + public static int abc_color_highlight_material = 2131296322; - // aapt resource value: 0x7F040005 - public static int abc_hint_foreground_material_dark = 2130968581; + // aapt resource value: 0x7f090043 + public static int abc_hint_foreground_material_dark = 2131296323; - // aapt resource value: 0x7F040006 - public static int abc_hint_foreground_material_light = 2130968582; + // aapt resource value: 0x7f090044 + public static int abc_hint_foreground_material_light = 2131296324; - // aapt resource value: 0x7F040007 - public static int abc_input_method_navigation_guard = 2130968583; + // aapt resource value: 0x7f090000 + public static int abc_input_method_navigation_guard = 2131296256; - // aapt resource value: 0x7F040008 - public static int abc_primary_text_disable_only_material_dark = 2130968584; + // aapt resource value: 0x7f090045 + public static int abc_primary_text_disable_only_material_dark = 2131296325; - // aapt resource value: 0x7F040009 - public static int abc_primary_text_disable_only_material_light = 2130968585; + // aapt resource value: 0x7f090046 + public static int abc_primary_text_disable_only_material_light = 2131296326; - // aapt resource value: 0x7F04000A - public static int abc_primary_text_material_dark = 2130968586; + // aapt resource value: 0x7f090047 + public static int abc_primary_text_material_dark = 2131296327; - // aapt resource value: 0x7F04000B - public static int abc_primary_text_material_light = 2130968587; + // aapt resource value: 0x7f090048 + public static int abc_primary_text_material_light = 2131296328; - // aapt resource value: 0x7F04000C - public static int abc_search_url_text = 2130968588; + // aapt resource value: 0x7f090049 + public static int abc_search_url_text = 2131296329; - // aapt resource value: 0x7F04000D - public static int abc_search_url_text_normal = 2130968589; + // aapt resource value: 0x7f090001 + public static int abc_search_url_text_normal = 2131296257; - // aapt resource value: 0x7F04000E - public static int abc_search_url_text_pressed = 2130968590; + // aapt resource value: 0x7f090002 + public static int abc_search_url_text_pressed = 2131296258; - // aapt resource value: 0x7F04000F - public static int abc_search_url_text_selected = 2130968591; + // aapt resource value: 0x7f090003 + public static int abc_search_url_text_selected = 2131296259; - // aapt resource value: 0x7F040010 - public static int abc_secondary_text_material_dark = 2130968592; + // aapt resource value: 0x7f09004a + public static int abc_secondary_text_material_dark = 2131296330; - // aapt resource value: 0x7F040011 - public static int abc_secondary_text_material_light = 2130968593; + // aapt resource value: 0x7f09004b + public static int abc_secondary_text_material_light = 2131296331; - // aapt resource value: 0x7F040012 - public static int abc_tint_btn_checkable = 2130968594; + // aapt resource value: 0x7f09004c + public static int abc_tint_btn_checkable = 2131296332; - // aapt resource value: 0x7F040013 - public static int abc_tint_default = 2130968595; + // aapt resource value: 0x7f09004d + public static int abc_tint_default = 2131296333; - // aapt resource value: 0x7F040014 - public static int abc_tint_edittext = 2130968596; + // aapt resource value: 0x7f09004e + public static int abc_tint_edittext = 2131296334; - // aapt resource value: 0x7F040015 - public static int abc_tint_seek_thumb = 2130968597; + // aapt resource value: 0x7f09004f + public static int abc_tint_seek_thumb = 2131296335; - // aapt resource value: 0x7F040016 - public static int abc_tint_spinner = 2130968598; + // aapt resource value: 0x7f090050 + public static int abc_tint_spinner = 2131296336; - // aapt resource value: 0x7F040017 - public static int abc_tint_switch_track = 2130968599; + // aapt resource value: 0x7f090051 + public static int abc_tint_switch_track = 2131296337; - // aapt resource value: 0x7F040018 - public static int accent_material_dark = 2130968600; + // aapt resource value: 0x7f090004 + public static int accent_material_dark = 2131296260; - // aapt resource value: 0x7F040019 - public static int accent_material_light = 2130968601; + // aapt resource value: 0x7f090005 + public static int accent_material_light = 2131296261; - // aapt resource value: 0x7F04001A - public static int background_floating_material_dark = 2130968602; + // aapt resource value: 0x7f090006 + public static int background_floating_material_dark = 2131296262; - // aapt resource value: 0x7F04001B - public static int background_floating_material_light = 2130968603; + // aapt resource value: 0x7f090007 + public static int background_floating_material_light = 2131296263; - // aapt resource value: 0x7F04001C - public static int background_material_dark = 2130968604; + // aapt resource value: 0x7f090008 + public static int background_material_dark = 2131296264; - // aapt resource value: 0x7F04001D - public static int background_material_light = 2130968605; + // aapt resource value: 0x7f090009 + public static int background_material_light = 2131296265; - // aapt resource value: 0x7F04001E - public static int bright_foreground_disabled_material_dark = 2130968606; + // aapt resource value: 0x7f09000a + public static int bright_foreground_disabled_material_dark = 2131296266; - // aapt resource value: 0x7F04001F - public static int bright_foreground_disabled_material_light = 2130968607; + // aapt resource value: 0x7f09000b + public static int bright_foreground_disabled_material_light = 2131296267; - // aapt resource value: 0x7F040020 - public static int bright_foreground_inverse_material_dark = 2130968608; + // aapt resource value: 0x7f09000c + public static int bright_foreground_inverse_material_dark = 2131296268; - // aapt resource value: 0x7F040021 - public static int bright_foreground_inverse_material_light = 2130968609; + // aapt resource value: 0x7f09000d + public static int bright_foreground_inverse_material_light = 2131296269; - // aapt resource value: 0x7F040022 - public static int bright_foreground_material_dark = 2130968610; + // aapt resource value: 0x7f09000e + public static int bright_foreground_material_dark = 2131296270; - // aapt resource value: 0x7F040023 - public static int bright_foreground_material_light = 2130968611; + // aapt resource value: 0x7f09000f + public static int bright_foreground_material_light = 2131296271; - // aapt resource value: 0x7F040024 - public static int button_material_dark = 2130968612; + // aapt resource value: 0x7f090010 + public static int button_material_dark = 2131296272; - // aapt resource value: 0x7F040025 - public static int button_material_light = 2130968613; + // aapt resource value: 0x7f090011 + public static int button_material_light = 2131296273; - // aapt resource value: 0x7F040026 - public static int dim_foreground_disabled_material_dark = 2130968614; + // aapt resource value: 0x7f090012 + public static int dim_foreground_disabled_material_dark = 2131296274; - // aapt resource value: 0x7F040027 - public static int dim_foreground_disabled_material_light = 2130968615; + // aapt resource value: 0x7f090013 + public static int dim_foreground_disabled_material_light = 2131296275; - // aapt resource value: 0x7F040028 - public static int dim_foreground_material_dark = 2130968616; + // aapt resource value: 0x7f090014 + public static int dim_foreground_material_dark = 2131296276; - // aapt resource value: 0x7F040029 - public static int dim_foreground_material_light = 2130968617; + // aapt resource value: 0x7f090015 + public static int dim_foreground_material_light = 2131296277; - // aapt resource value: 0x7F04002A - public static int error_color_material_dark = 2130968618; + // aapt resource value: 0x7f090016 + public static int error_color_material_dark = 2131296278; - // aapt resource value: 0x7F04002B - public static int error_color_material_light = 2130968619; + // aapt resource value: 0x7f090017 + public static int error_color_material_light = 2131296279; - // aapt resource value: 0x7F04002C - public static int foreground_material_dark = 2130968620; + // aapt resource value: 0x7f090018 + public static int foreground_material_dark = 2131296280; - // aapt resource value: 0x7F04002D - public static int foreground_material_light = 2130968621; + // aapt resource value: 0x7f090019 + public static int foreground_material_light = 2131296281; - // aapt resource value: 0x7F04002E - public static int highlighted_text_material_dark = 2130968622; + // aapt resource value: 0x7f09001a + public static int highlighted_text_material_dark = 2131296282; - // aapt resource value: 0x7F04002F - public static int highlighted_text_material_light = 2130968623; + // aapt resource value: 0x7f09001b + public static int highlighted_text_material_light = 2131296283; - // aapt resource value: 0x7F040030 - public static int material_blue_grey_800 = 2130968624; + // aapt resource value: 0x7f09001c + public static int material_blue_grey_800 = 2131296284; - // aapt resource value: 0x7F040031 - public static int material_blue_grey_900 = 2130968625; + // aapt resource value: 0x7f09001d + public static int material_blue_grey_900 = 2131296285; - // aapt resource value: 0x7F040032 - public static int material_blue_grey_950 = 2130968626; + // aapt resource value: 0x7f09001e + public static int material_blue_grey_950 = 2131296286; - // aapt resource value: 0x7F040033 - public static int material_deep_teal_200 = 2130968627; + // aapt resource value: 0x7f09001f + public static int material_deep_teal_200 = 2131296287; - // aapt resource value: 0x7F040034 - public static int material_deep_teal_500 = 2130968628; + // aapt resource value: 0x7f090020 + public static int material_deep_teal_500 = 2131296288; - // aapt resource value: 0x7F040035 - public static int material_grey_100 = 2130968629; + // aapt resource value: 0x7f090021 + public static int material_grey_100 = 2131296289; - // aapt resource value: 0x7F040036 - public static int material_grey_300 = 2130968630; + // aapt resource value: 0x7f090022 + public static int material_grey_300 = 2131296290; - // aapt resource value: 0x7F040037 - public static int material_grey_50 = 2130968631; + // aapt resource value: 0x7f090023 + public static int material_grey_50 = 2131296291; - // aapt resource value: 0x7F040038 - public static int material_grey_600 = 2130968632; + // aapt resource value: 0x7f090024 + public static int material_grey_600 = 2131296292; - // aapt resource value: 0x7F040039 - public static int material_grey_800 = 2130968633; + // aapt resource value: 0x7f090025 + public static int material_grey_800 = 2131296293; - // aapt resource value: 0x7F04003A - public static int material_grey_850 = 2130968634; + // aapt resource value: 0x7f090026 + public static int material_grey_850 = 2131296294; - // aapt resource value: 0x7F04003B - public static int material_grey_900 = 2130968635; + // aapt resource value: 0x7f090027 + public static int material_grey_900 = 2131296295; - // aapt resource value: 0x7F04003C - public static int notification_action_color_filter = 2130968636; + // aapt resource value: 0x7f09003c + public static int notification_action_color_filter = 2131296316; - // aapt resource value: 0x7F04003D - public static int notification_icon_bg_color = 2130968637; + // aapt resource value: 0x7f09003d + public static int notification_icon_bg_color = 2131296317; - // aapt resource value: 0x7F04003E - public static int primary_dark_material_dark = 2130968638; + // aapt resource value: 0x7f090028 + public static int primary_dark_material_dark = 2131296296; - // aapt resource value: 0x7F04003F - public static int primary_dark_material_light = 2130968639; + // aapt resource value: 0x7f090029 + public static int primary_dark_material_light = 2131296297; - // aapt resource value: 0x7F040040 - public static int primary_material_dark = 2130968640; + // aapt resource value: 0x7f09002a + public static int primary_material_dark = 2131296298; - // aapt resource value: 0x7F040041 - public static int primary_material_light = 2130968641; + // aapt resource value: 0x7f09002b + public static int primary_material_light = 2131296299; - // aapt resource value: 0x7F040042 - public static int primary_text_default_material_dark = 2130968642; + // aapt resource value: 0x7f09002c + public static int primary_text_default_material_dark = 2131296300; - // aapt resource value: 0x7F040043 - public static int primary_text_default_material_light = 2130968643; + // aapt resource value: 0x7f09002d + public static int primary_text_default_material_light = 2131296301; - // aapt resource value: 0x7F040044 - public static int primary_text_disabled_material_dark = 2130968644; + // aapt resource value: 0x7f09002e + public static int primary_text_disabled_material_dark = 2131296302; - // aapt resource value: 0x7F040045 - public static int primary_text_disabled_material_light = 2130968645; + // aapt resource value: 0x7f09002f + public static int primary_text_disabled_material_light = 2131296303; - // aapt resource value: 0x7F040046 - public static int ripple_material_dark = 2130968646; + // aapt resource value: 0x7f090030 + public static int ripple_material_dark = 2131296304; - // aapt resource value: 0x7F040047 - public static int ripple_material_light = 2130968647; + // aapt resource value: 0x7f090031 + public static int ripple_material_light = 2131296305; - // aapt resource value: 0x7F040048 - public static int secondary_text_default_material_dark = 2130968648; + // aapt resource value: 0x7f090032 + public static int secondary_text_default_material_dark = 2131296306; - // aapt resource value: 0x7F040049 - public static int secondary_text_default_material_light = 2130968649; + // aapt resource value: 0x7f090033 + public static int secondary_text_default_material_light = 2131296307; - // aapt resource value: 0x7F04004A - public static int secondary_text_disabled_material_dark = 2130968650; + // aapt resource value: 0x7f090034 + public static int secondary_text_disabled_material_dark = 2131296308; - // aapt resource value: 0x7F04004B - public static int secondary_text_disabled_material_light = 2130968651; + // aapt resource value: 0x7f090035 + public static int secondary_text_disabled_material_light = 2131296309; - // aapt resource value: 0x7F04004C - public static int switch_thumb_disabled_material_dark = 2130968652; + // aapt resource value: 0x7f090036 + public static int switch_thumb_disabled_material_dark = 2131296310; - // aapt resource value: 0x7F04004D - public static int switch_thumb_disabled_material_light = 2130968653; + // aapt resource value: 0x7f090037 + public static int switch_thumb_disabled_material_light = 2131296311; - // aapt resource value: 0x7F04004E - public static int switch_thumb_material_dark = 2130968654; + // aapt resource value: 0x7f090052 + public static int switch_thumb_material_dark = 2131296338; - // aapt resource value: 0x7F04004F - public static int switch_thumb_material_light = 2130968655; + // aapt resource value: 0x7f090053 + public static int switch_thumb_material_light = 2131296339; - // aapt resource value: 0x7F040050 - public static int switch_thumb_normal_material_dark = 2130968656; + // aapt resource value: 0x7f090038 + public static int switch_thumb_normal_material_dark = 2131296312; - // aapt resource value: 0x7F040051 - public static int switch_thumb_normal_material_light = 2130968657; + // aapt resource value: 0x7f090039 + public static int switch_thumb_normal_material_light = 2131296313; - // aapt resource value: 0x7F040052 - public static int tooltip_background_dark = 2130968658; + // aapt resource value: 0x7f09003a + public static int tooltip_background_dark = 2131296314; - // aapt resource value: 0x7F040053 - public static int tooltip_background_light = 2130968659; + // aapt resource value: 0x7f09003b + public static int tooltip_background_light = 2131296315; static Color() { @@ -1192,347 +1192,347 @@ namespace StardewModdingAPI public partial class Dimension { - // aapt resource value: 0x7F050000 - public static int abc_action_bar_content_inset_material = 2131034112; + // aapt resource value: 0x7f06000b + public static int abc_action_bar_content_inset_material = 2131099659; - // aapt resource value: 0x7F050001 - public static int abc_action_bar_content_inset_with_nav = 2131034113; + // aapt resource value: 0x7f06000c + public static int abc_action_bar_content_inset_with_nav = 2131099660; - // aapt resource value: 0x7F050002 - public static int abc_action_bar_default_height_material = 2131034114; + // aapt resource value: 0x7f060001 + public static int abc_action_bar_default_height_material = 2131099649; - // aapt resource value: 0x7F050003 - public static int abc_action_bar_default_padding_end_material = 2131034115; + // aapt resource value: 0x7f06000d + public static int abc_action_bar_default_padding_end_material = 2131099661; - // aapt resource value: 0x7F050004 - public static int abc_action_bar_default_padding_start_material = 2131034116; + // aapt resource value: 0x7f06000e + public static int abc_action_bar_default_padding_start_material = 2131099662; - // aapt resource value: 0x7F050005 - public static int abc_action_bar_elevation_material = 2131034117; + // aapt resource value: 0x7f060010 + public static int abc_action_bar_elevation_material = 2131099664; - // aapt resource value: 0x7F050006 - public static int abc_action_bar_icon_vertical_padding_material = 2131034118; + // aapt resource value: 0x7f060011 + public static int abc_action_bar_icon_vertical_padding_material = 2131099665; - // aapt resource value: 0x7F050007 - public static int abc_action_bar_overflow_padding_end_material = 2131034119; + // aapt resource value: 0x7f060012 + public static int abc_action_bar_overflow_padding_end_material = 2131099666; - // aapt resource value: 0x7F050008 - public static int abc_action_bar_overflow_padding_start_material = 2131034120; + // aapt resource value: 0x7f060013 + public static int abc_action_bar_overflow_padding_start_material = 2131099667; - // aapt resource value: 0x7F050009 - public static int abc_action_bar_stacked_max_height = 2131034121; + // aapt resource value: 0x7f060014 + public static int abc_action_bar_stacked_max_height = 2131099668; - // aapt resource value: 0x7F05000A - public static int abc_action_bar_stacked_tab_max_width = 2131034122; + // aapt resource value: 0x7f060015 + public static int abc_action_bar_stacked_tab_max_width = 2131099669; - // aapt resource value: 0x7F05000B - public static int abc_action_bar_subtitle_bottom_margin_material = 2131034123; + // aapt resource value: 0x7f060016 + public static int abc_action_bar_subtitle_bottom_margin_material = 2131099670; - // aapt resource value: 0x7F05000C - public static int abc_action_bar_subtitle_top_margin_material = 2131034124; + // aapt resource value: 0x7f060017 + public static int abc_action_bar_subtitle_top_margin_material = 2131099671; - // aapt resource value: 0x7F05000D - public static int abc_action_button_min_height_material = 2131034125; + // aapt resource value: 0x7f060018 + public static int abc_action_button_min_height_material = 2131099672; - // aapt resource value: 0x7F05000E - public static int abc_action_button_min_width_material = 2131034126; + // aapt resource value: 0x7f060019 + public static int abc_action_button_min_width_material = 2131099673; - // aapt resource value: 0x7F05000F - public static int abc_action_button_min_width_overflow_material = 2131034127; + // aapt resource value: 0x7f06001a + public static int abc_action_button_min_width_overflow_material = 2131099674; - // aapt resource value: 0x7F050010 - public static int abc_alert_dialog_button_bar_height = 2131034128; + // aapt resource value: 0x7f060000 + public static int abc_alert_dialog_button_bar_height = 2131099648; - // aapt resource value: 0x7F050011 - public static int abc_alert_dialog_button_dimen = 2131034129; + // aapt resource value: 0x7f06001b + public static int abc_alert_dialog_button_dimen = 2131099675; - // aapt resource value: 0x7F050012 - public static int abc_button_inset_horizontal_material = 2131034130; + // aapt resource value: 0x7f06001c + public static int abc_button_inset_horizontal_material = 2131099676; - // aapt resource value: 0x7F050013 - public static int abc_button_inset_vertical_material = 2131034131; + // aapt resource value: 0x7f06001d + public static int abc_button_inset_vertical_material = 2131099677; - // aapt resource value: 0x7F050014 - public static int abc_button_padding_horizontal_material = 2131034132; + // aapt resource value: 0x7f06001e + public static int abc_button_padding_horizontal_material = 2131099678; - // aapt resource value: 0x7F050015 - public static int abc_button_padding_vertical_material = 2131034133; + // aapt resource value: 0x7f06001f + public static int abc_button_padding_vertical_material = 2131099679; - // aapt resource value: 0x7F050016 - public static int abc_cascading_menus_min_smallest_width = 2131034134; + // aapt resource value: 0x7f060020 + public static int abc_cascading_menus_min_smallest_width = 2131099680; - // aapt resource value: 0x7F050017 - public static int abc_config_prefDialogWidth = 2131034135; + // aapt resource value: 0x7f060004 + public static int abc_config_prefDialogWidth = 2131099652; - // aapt resource value: 0x7F050018 - public static int abc_control_corner_material = 2131034136; + // aapt resource value: 0x7f060021 + public static int abc_control_corner_material = 2131099681; - // aapt resource value: 0x7F050019 - public static int abc_control_inset_material = 2131034137; + // aapt resource value: 0x7f060022 + public static int abc_control_inset_material = 2131099682; - // aapt resource value: 0x7F05001A - public static int abc_control_padding_material = 2131034138; + // aapt resource value: 0x7f060023 + public static int abc_control_padding_material = 2131099683; - // aapt resource value: 0x7F05001B - public static int abc_dialog_corner_radius_material = 2131034139; + // aapt resource value: 0x7f060024 + public static int abc_dialog_corner_radius_material = 2131099684; - // aapt resource value: 0x7F05001C - public static int abc_dialog_fixed_height_major = 2131034140; + // aapt resource value: 0x7f060005 + public static int abc_dialog_fixed_height_major = 2131099653; - // aapt resource value: 0x7F05001D - public static int abc_dialog_fixed_height_minor = 2131034141; + // aapt resource value: 0x7f060006 + public static int abc_dialog_fixed_height_minor = 2131099654; - // aapt resource value: 0x7F05001E - public static int abc_dialog_fixed_width_major = 2131034142; + // aapt resource value: 0x7f060007 + public static int abc_dialog_fixed_width_major = 2131099655; - // aapt resource value: 0x7F05001F - public static int abc_dialog_fixed_width_minor = 2131034143; + // aapt resource value: 0x7f060008 + public static int abc_dialog_fixed_width_minor = 2131099656; - // aapt resource value: 0x7F050020 - public static int abc_dialog_list_padding_bottom_no_buttons = 2131034144; + // aapt resource value: 0x7f060025 + public static int abc_dialog_list_padding_bottom_no_buttons = 2131099685; - // aapt resource value: 0x7F050021 - public static int abc_dialog_list_padding_top_no_title = 2131034145; + // aapt resource value: 0x7f060026 + public static int abc_dialog_list_padding_top_no_title = 2131099686; - // aapt resource value: 0x7F050022 - public static int abc_dialog_min_width_major = 2131034146; + // aapt resource value: 0x7f060009 + public static int abc_dialog_min_width_major = 2131099657; - // aapt resource value: 0x7F050023 - public static int abc_dialog_min_width_minor = 2131034147; + // aapt resource value: 0x7f06000a + public static int abc_dialog_min_width_minor = 2131099658; - // aapt resource value: 0x7F050024 - public static int abc_dialog_padding_material = 2131034148; + // aapt resource value: 0x7f060027 + public static int abc_dialog_padding_material = 2131099687; - // aapt resource value: 0x7F050025 - public static int abc_dialog_padding_top_material = 2131034149; + // aapt resource value: 0x7f060028 + public static int abc_dialog_padding_top_material = 2131099688; - // aapt resource value: 0x7F050026 - public static int abc_dialog_title_divider_material = 2131034150; + // aapt resource value: 0x7f060029 + public static int abc_dialog_title_divider_material = 2131099689; - // aapt resource value: 0x7F050027 - public static int abc_disabled_alpha_material_dark = 2131034151; + // aapt resource value: 0x7f06002a + public static int abc_disabled_alpha_material_dark = 2131099690; - // aapt resource value: 0x7F050028 - public static int abc_disabled_alpha_material_light = 2131034152; + // aapt resource value: 0x7f06002b + public static int abc_disabled_alpha_material_light = 2131099691; - // aapt resource value: 0x7F050029 - public static int abc_dropdownitem_icon_width = 2131034153; + // aapt resource value: 0x7f06002c + public static int abc_dropdownitem_icon_width = 2131099692; - // aapt resource value: 0x7F05002A - public static int abc_dropdownitem_text_padding_left = 2131034154; + // aapt resource value: 0x7f06002d + public static int abc_dropdownitem_text_padding_left = 2131099693; - // aapt resource value: 0x7F05002B - public static int abc_dropdownitem_text_padding_right = 2131034155; + // aapt resource value: 0x7f06002e + public static int abc_dropdownitem_text_padding_right = 2131099694; - // aapt resource value: 0x7F05002C - public static int abc_edit_text_inset_bottom_material = 2131034156; + // aapt resource value: 0x7f06002f + public static int abc_edit_text_inset_bottom_material = 2131099695; - // aapt resource value: 0x7F05002D - public static int abc_edit_text_inset_horizontal_material = 2131034157; + // aapt resource value: 0x7f060030 + public static int abc_edit_text_inset_horizontal_material = 2131099696; - // aapt resource value: 0x7F05002E - public static int abc_edit_text_inset_top_material = 2131034158; + // aapt resource value: 0x7f060031 + public static int abc_edit_text_inset_top_material = 2131099697; - // aapt resource value: 0x7F05002F - public static int abc_floating_window_z = 2131034159; + // aapt resource value: 0x7f060032 + public static int abc_floating_window_z = 2131099698; - // aapt resource value: 0x7F050030 - public static int abc_list_item_padding_horizontal_material = 2131034160; + // aapt resource value: 0x7f060033 + public static int abc_list_item_padding_horizontal_material = 2131099699; - // aapt resource value: 0x7F050031 - public static int abc_panel_menu_list_width = 2131034161; + // aapt resource value: 0x7f060034 + public static int abc_panel_menu_list_width = 2131099700; - // aapt resource value: 0x7F050032 - public static int abc_progress_bar_height_material = 2131034162; + // aapt resource value: 0x7f060035 + public static int abc_progress_bar_height_material = 2131099701; - // aapt resource value: 0x7F050033 - public static int abc_search_view_preferred_height = 2131034163; + // aapt resource value: 0x7f060036 + public static int abc_search_view_preferred_height = 2131099702; - // aapt resource value: 0x7F050034 - public static int abc_search_view_preferred_width = 2131034164; + // aapt resource value: 0x7f060037 + public static int abc_search_view_preferred_width = 2131099703; - // aapt resource value: 0x7F050035 - public static int abc_seekbar_track_background_height_material = 2131034165; + // aapt resource value: 0x7f060038 + public static int abc_seekbar_track_background_height_material = 2131099704; - // aapt resource value: 0x7F050036 - public static int abc_seekbar_track_progress_height_material = 2131034166; + // aapt resource value: 0x7f060039 + public static int abc_seekbar_track_progress_height_material = 2131099705; - // aapt resource value: 0x7F050037 - public static int abc_select_dialog_padding_start_material = 2131034167; + // aapt resource value: 0x7f06003a + public static int abc_select_dialog_padding_start_material = 2131099706; - // aapt resource value: 0x7F050038 - public static int abc_switch_padding = 2131034168; + // aapt resource value: 0x7f06000f + public static int abc_switch_padding = 2131099663; - // aapt resource value: 0x7F050039 - public static int abc_text_size_body_1_material = 2131034169; + // aapt resource value: 0x7f06003b + public static int abc_text_size_body_1_material = 2131099707; - // aapt resource value: 0x7F05003A - public static int abc_text_size_body_2_material = 2131034170; + // aapt resource value: 0x7f06003c + public static int abc_text_size_body_2_material = 2131099708; - // aapt resource value: 0x7F05003B - public static int abc_text_size_button_material = 2131034171; + // aapt resource value: 0x7f06003d + public static int abc_text_size_button_material = 2131099709; - // aapt resource value: 0x7F05003C - public static int abc_text_size_caption_material = 2131034172; + // aapt resource value: 0x7f06003e + public static int abc_text_size_caption_material = 2131099710; - // aapt resource value: 0x7F05003D - public static int abc_text_size_display_1_material = 2131034173; + // aapt resource value: 0x7f06003f + public static int abc_text_size_display_1_material = 2131099711; - // aapt resource value: 0x7F05003E - public static int abc_text_size_display_2_material = 2131034174; + // aapt resource value: 0x7f060040 + public static int abc_text_size_display_2_material = 2131099712; - // aapt resource value: 0x7F05003F - public static int abc_text_size_display_3_material = 2131034175; + // aapt resource value: 0x7f060041 + public static int abc_text_size_display_3_material = 2131099713; - // aapt resource value: 0x7F050040 - public static int abc_text_size_display_4_material = 2131034176; + // aapt resource value: 0x7f060042 + public static int abc_text_size_display_4_material = 2131099714; - // aapt resource value: 0x7F050041 - public static int abc_text_size_headline_material = 2131034177; + // aapt resource value: 0x7f060043 + public static int abc_text_size_headline_material = 2131099715; - // aapt resource value: 0x7F050042 - public static int abc_text_size_large_material = 2131034178; + // aapt resource value: 0x7f060044 + public static int abc_text_size_large_material = 2131099716; - // aapt resource value: 0x7F050043 - public static int abc_text_size_medium_material = 2131034179; + // aapt resource value: 0x7f060045 + public static int abc_text_size_medium_material = 2131099717; - // aapt resource value: 0x7F050044 - public static int abc_text_size_menu_header_material = 2131034180; + // aapt resource value: 0x7f060046 + public static int abc_text_size_menu_header_material = 2131099718; - // aapt resource value: 0x7F050045 - public static int abc_text_size_menu_material = 2131034181; + // aapt resource value: 0x7f060047 + public static int abc_text_size_menu_material = 2131099719; - // aapt resource value: 0x7F050046 - public static int abc_text_size_small_material = 2131034182; + // aapt resource value: 0x7f060048 + public static int abc_text_size_small_material = 2131099720; - // aapt resource value: 0x7F050047 - public static int abc_text_size_subhead_material = 2131034183; + // aapt resource value: 0x7f060049 + public static int abc_text_size_subhead_material = 2131099721; - // aapt resource value: 0x7F050048 - public static int abc_text_size_subtitle_material_toolbar = 2131034184; + // aapt resource value: 0x7f060002 + public static int abc_text_size_subtitle_material_toolbar = 2131099650; - // aapt resource value: 0x7F050049 - public static int abc_text_size_title_material = 2131034185; + // aapt resource value: 0x7f06004a + public static int abc_text_size_title_material = 2131099722; - // aapt resource value: 0x7F05004A - public static int abc_text_size_title_material_toolbar = 2131034186; + // aapt resource value: 0x7f060003 + public static int abc_text_size_title_material_toolbar = 2131099651; - // aapt resource value: 0x7F05004B - public static int compat_button_inset_horizontal_material = 2131034187; + // aapt resource value: 0x7f060060 + public static int compat_button_inset_horizontal_material = 2131099744; - // aapt resource value: 0x7F05004C - public static int compat_button_inset_vertical_material = 2131034188; + // aapt resource value: 0x7f060061 + public static int compat_button_inset_vertical_material = 2131099745; - // aapt resource value: 0x7F05004D - public static int compat_button_padding_horizontal_material = 2131034189; + // aapt resource value: 0x7f060062 + public static int compat_button_padding_horizontal_material = 2131099746; - // aapt resource value: 0x7F05004E - public static int compat_button_padding_vertical_material = 2131034190; + // aapt resource value: 0x7f060063 + public static int compat_button_padding_vertical_material = 2131099747; - // aapt resource value: 0x7F05004F - public static int compat_control_corner_material = 2131034191; + // aapt resource value: 0x7f060064 + public static int compat_control_corner_material = 2131099748; - // aapt resource value: 0x7F050050 - public static int compat_notification_large_icon_max_height = 2131034192; + // aapt resource value: 0x7f060065 + public static int compat_notification_large_icon_max_height = 2131099749; - // aapt resource value: 0x7F050051 - public static int compat_notification_large_icon_max_width = 2131034193; + // aapt resource value: 0x7f060066 + public static int compat_notification_large_icon_max_width = 2131099750; - // aapt resource value: 0x7F050052 - public static int disabled_alpha_material_dark = 2131034194; + // aapt resource value: 0x7f06004b + public static int disabled_alpha_material_dark = 2131099723; - // aapt resource value: 0x7F050053 - public static int disabled_alpha_material_light = 2131034195; + // aapt resource value: 0x7f06004c + public static int disabled_alpha_material_light = 2131099724; - // aapt resource value: 0x7F050054 - public static int highlight_alpha_material_colored = 2131034196; + // aapt resource value: 0x7f06004d + public static int highlight_alpha_material_colored = 2131099725; - // aapt resource value: 0x7F050055 - public static int highlight_alpha_material_dark = 2131034197; + // aapt resource value: 0x7f06004e + public static int highlight_alpha_material_dark = 2131099726; - // aapt resource value: 0x7F050056 - public static int highlight_alpha_material_light = 2131034198; + // aapt resource value: 0x7f06004f + public static int highlight_alpha_material_light = 2131099727; - // aapt resource value: 0x7F050057 - public static int hint_alpha_material_dark = 2131034199; + // aapt resource value: 0x7f060050 + public static int hint_alpha_material_dark = 2131099728; - // aapt resource value: 0x7F050058 - public static int hint_alpha_material_light = 2131034200; + // aapt resource value: 0x7f060051 + public static int hint_alpha_material_light = 2131099729; - // aapt resource value: 0x7F050059 - public static int hint_pressed_alpha_material_dark = 2131034201; + // aapt resource value: 0x7f060052 + public static int hint_pressed_alpha_material_dark = 2131099730; - // aapt resource value: 0x7F05005A - public static int hint_pressed_alpha_material_light = 2131034202; + // aapt resource value: 0x7f060053 + public static int hint_pressed_alpha_material_light = 2131099731; - // aapt resource value: 0x7F05005B - public static int notification_action_icon_size = 2131034203; + // aapt resource value: 0x7f060067 + public static int notification_action_icon_size = 2131099751; - // aapt resource value: 0x7F05005C - public static int notification_action_text_size = 2131034204; + // aapt resource value: 0x7f060068 + public static int notification_action_text_size = 2131099752; - // aapt resource value: 0x7F05005D - public static int notification_big_circle_margin = 2131034205; + // aapt resource value: 0x7f060069 + public static int notification_big_circle_margin = 2131099753; - // aapt resource value: 0x7F05005E - public static int notification_content_margin_start = 2131034206; + // aapt resource value: 0x7f06005d + public static int notification_content_margin_start = 2131099741; - // aapt resource value: 0x7F05005F - public static int notification_large_icon_height = 2131034207; + // aapt resource value: 0x7f06006a + public static int notification_large_icon_height = 2131099754; - // aapt resource value: 0x7F050060 - public static int notification_large_icon_width = 2131034208; + // aapt resource value: 0x7f06006b + public static int notification_large_icon_width = 2131099755; - // aapt resource value: 0x7F050061 - public static int notification_main_column_padding_top = 2131034209; + // aapt resource value: 0x7f06005e + public static int notification_main_column_padding_top = 2131099742; - // aapt resource value: 0x7F050062 - public static int notification_media_narrow_margin = 2131034210; + // aapt resource value: 0x7f06005f + public static int notification_media_narrow_margin = 2131099743; - // aapt resource value: 0x7F050063 - public static int notification_right_icon_size = 2131034211; + // aapt resource value: 0x7f06006c + public static int notification_right_icon_size = 2131099756; - // aapt resource value: 0x7F050064 - public static int notification_right_side_padding_top = 2131034212; + // aapt resource value: 0x7f06005c + public static int notification_right_side_padding_top = 2131099740; - // aapt resource value: 0x7F050065 - public static int notification_small_icon_background_padding = 2131034213; + // aapt resource value: 0x7f06006d + public static int notification_small_icon_background_padding = 2131099757; - // aapt resource value: 0x7F050066 - public static int notification_small_icon_size_as_large = 2131034214; + // aapt resource value: 0x7f06006e + public static int notification_small_icon_size_as_large = 2131099758; - // aapt resource value: 0x7F050067 - public static int notification_subtext_size = 2131034215; + // aapt resource value: 0x7f06006f + public static int notification_subtext_size = 2131099759; - // aapt resource value: 0x7F050068 - public static int notification_top_pad = 2131034216; + // aapt resource value: 0x7f060070 + public static int notification_top_pad = 2131099760; - // aapt resource value: 0x7F050069 - public static int notification_top_pad_large_text = 2131034217; + // aapt resource value: 0x7f060071 + public static int notification_top_pad_large_text = 2131099761; - // aapt resource value: 0x7F05006A - public static int tooltip_corner_radius = 2131034218; + // aapt resource value: 0x7f060054 + public static int tooltip_corner_radius = 2131099732; - // aapt resource value: 0x7F05006B - public static int tooltip_horizontal_padding = 2131034219; + // aapt resource value: 0x7f060055 + public static int tooltip_horizontal_padding = 2131099733; - // aapt resource value: 0x7F05006C - public static int tooltip_margin = 2131034220; + // aapt resource value: 0x7f060056 + public static int tooltip_margin = 2131099734; - // aapt resource value: 0x7F05006D - public static int tooltip_precise_anchor_extra_offset = 2131034221; + // aapt resource value: 0x7f060057 + public static int tooltip_precise_anchor_extra_offset = 2131099735; - // aapt resource value: 0x7F05006E - public static int tooltip_precise_anchor_threshold = 2131034222; + // aapt resource value: 0x7f060058 + public static int tooltip_precise_anchor_threshold = 2131099736; - // aapt resource value: 0x7F05006F - public static int tooltip_vertical_padding = 2131034223; + // aapt resource value: 0x7f060059 + public static int tooltip_vertical_padding = 2131099737; - // aapt resource value: 0x7F050070 - public static int tooltip_y_offset_non_touch = 2131034224; + // aapt resource value: 0x7f06005a + public static int tooltip_y_offset_non_touch = 2131099738; - // aapt resource value: 0x7F050071 - public static int tooltip_y_offset_touch = 2131034225; + // aapt resource value: 0x7f06005b + public static int tooltip_y_offset_touch = 2131099739; static Dimension() { @@ -1547,299 +1547,299 @@ namespace StardewModdingAPI public partial class Drawable { - // aapt resource value: 0x7F060000 - public static int abc_ab_share_pack_mtrl_alpha = 2131099648; + // aapt resource value: 0x7f020000 + public static int abc_ab_share_pack_mtrl_alpha = 2130837504; - // aapt resource value: 0x7F060001 - public static int abc_action_bar_item_background_material = 2131099649; + // aapt resource value: 0x7f020001 + public static int abc_action_bar_item_background_material = 2130837505; - // aapt resource value: 0x7F060002 - public static int abc_btn_borderless_material = 2131099650; + // aapt resource value: 0x7f020002 + public static int abc_btn_borderless_material = 2130837506; - // aapt resource value: 0x7F060003 - public static int abc_btn_check_material = 2131099651; + // aapt resource value: 0x7f020003 + public static int abc_btn_check_material = 2130837507; - // aapt resource value: 0x7F060004 - public static int abc_btn_check_to_on_mtrl_000 = 2131099652; + // aapt resource value: 0x7f020004 + public static int abc_btn_check_to_on_mtrl_000 = 2130837508; - // aapt resource value: 0x7F060005 - public static int abc_btn_check_to_on_mtrl_015 = 2131099653; + // aapt resource value: 0x7f020005 + public static int abc_btn_check_to_on_mtrl_015 = 2130837509; - // aapt resource value: 0x7F060006 - public static int abc_btn_colored_material = 2131099654; + // aapt resource value: 0x7f020006 + public static int abc_btn_colored_material = 2130837510; - // aapt resource value: 0x7F060007 - public static int abc_btn_default_mtrl_shape = 2131099655; + // aapt resource value: 0x7f020007 + public static int abc_btn_default_mtrl_shape = 2130837511; - // aapt resource value: 0x7F060008 - public static int abc_btn_radio_material = 2131099656; + // aapt resource value: 0x7f020008 + public static int abc_btn_radio_material = 2130837512; - // aapt resource value: 0x7F060009 - public static int abc_btn_radio_to_on_mtrl_000 = 2131099657; + // aapt resource value: 0x7f020009 + public static int abc_btn_radio_to_on_mtrl_000 = 2130837513; - // aapt resource value: 0x7F06000A - public static int abc_btn_radio_to_on_mtrl_015 = 2131099658; + // aapt resource value: 0x7f02000a + public static int abc_btn_radio_to_on_mtrl_015 = 2130837514; - // aapt resource value: 0x7F06000B - public static int abc_btn_switch_to_on_mtrl_00001 = 2131099659; + // aapt resource value: 0x7f02000b + public static int abc_btn_switch_to_on_mtrl_00001 = 2130837515; - // aapt resource value: 0x7F06000C - public static int abc_btn_switch_to_on_mtrl_00012 = 2131099660; + // aapt resource value: 0x7f02000c + public static int abc_btn_switch_to_on_mtrl_00012 = 2130837516; - // aapt resource value: 0x7F06000D - public static int abc_cab_background_internal_bg = 2131099661; + // aapt resource value: 0x7f02000d + public static int abc_cab_background_internal_bg = 2130837517; - // aapt resource value: 0x7F06000E - public static int abc_cab_background_top_material = 2131099662; + // aapt resource value: 0x7f02000e + public static int abc_cab_background_top_material = 2130837518; - // aapt resource value: 0x7F06000F - public static int abc_cab_background_top_mtrl_alpha = 2131099663; + // aapt resource value: 0x7f02000f + public static int abc_cab_background_top_mtrl_alpha = 2130837519; - // aapt resource value: 0x7F060010 - public static int abc_control_background_material = 2131099664; + // aapt resource value: 0x7f020010 + public static int abc_control_background_material = 2130837520; - // aapt resource value: 0x7F060011 - public static int abc_dialog_material_background = 2131099665; + // aapt resource value: 0x7f020011 + public static int abc_dialog_material_background = 2130837521; - // aapt resource value: 0x7F060012 - public static int abc_edit_text_material = 2131099666; + // aapt resource value: 0x7f020012 + public static int abc_edit_text_material = 2130837522; - // aapt resource value: 0x7F060013 - public static int abc_ic_ab_back_material = 2131099667; + // aapt resource value: 0x7f020013 + public static int abc_ic_ab_back_material = 2130837523; - // aapt resource value: 0x7F060014 - public static int abc_ic_arrow_drop_right_black_24dp = 2131099668; + // aapt resource value: 0x7f020014 + public static int abc_ic_arrow_drop_right_black_24dp = 2130837524; - // aapt resource value: 0x7F060015 - public static int abc_ic_clear_material = 2131099669; + // aapt resource value: 0x7f020015 + public static int abc_ic_clear_material = 2130837525; - // aapt resource value: 0x7F060016 - public static int abc_ic_commit_search_api_mtrl_alpha = 2131099670; + // aapt resource value: 0x7f020016 + public static int abc_ic_commit_search_api_mtrl_alpha = 2130837526; - // aapt resource value: 0x7F060017 - public static int abc_ic_go_search_api_material = 2131099671; + // aapt resource value: 0x7f020017 + public static int abc_ic_go_search_api_material = 2130837527; - // aapt resource value: 0x7F060018 - public static int abc_ic_menu_copy_mtrl_am_alpha = 2131099672; + // aapt resource value: 0x7f020018 + public static int abc_ic_menu_copy_mtrl_am_alpha = 2130837528; - // aapt resource value: 0x7F060019 - public static int abc_ic_menu_cut_mtrl_alpha = 2131099673; + // aapt resource value: 0x7f020019 + public static int abc_ic_menu_cut_mtrl_alpha = 2130837529; - // aapt resource value: 0x7F06001A - public static int abc_ic_menu_overflow_material = 2131099674; + // aapt resource value: 0x7f02001a + public static int abc_ic_menu_overflow_material = 2130837530; - // aapt resource value: 0x7F06001B - public static int abc_ic_menu_paste_mtrl_am_alpha = 2131099675; + // aapt resource value: 0x7f02001b + public static int abc_ic_menu_paste_mtrl_am_alpha = 2130837531; - // aapt resource value: 0x7F06001C - public static int abc_ic_menu_selectall_mtrl_alpha = 2131099676; + // aapt resource value: 0x7f02001c + public static int abc_ic_menu_selectall_mtrl_alpha = 2130837532; - // aapt resource value: 0x7F06001D - public static int abc_ic_menu_share_mtrl_alpha = 2131099677; + // aapt resource value: 0x7f02001d + public static int abc_ic_menu_share_mtrl_alpha = 2130837533; - // aapt resource value: 0x7F06001E - public static int abc_ic_search_api_material = 2131099678; + // aapt resource value: 0x7f02001e + public static int abc_ic_search_api_material = 2130837534; - // aapt resource value: 0x7F06001F - public static int abc_ic_star_black_16dp = 2131099679; + // aapt resource value: 0x7f02001f + public static int abc_ic_star_black_16dp = 2130837535; - // aapt resource value: 0x7F060020 - public static int abc_ic_star_black_36dp = 2131099680; + // aapt resource value: 0x7f020020 + public static int abc_ic_star_black_36dp = 2130837536; - // aapt resource value: 0x7F060021 - public static int abc_ic_star_black_48dp = 2131099681; + // aapt resource value: 0x7f020021 + public static int abc_ic_star_black_48dp = 2130837537; - // aapt resource value: 0x7F060022 - public static int abc_ic_star_half_black_16dp = 2131099682; + // aapt resource value: 0x7f020022 + public static int abc_ic_star_half_black_16dp = 2130837538; - // aapt resource value: 0x7F060023 - public static int abc_ic_star_half_black_36dp = 2131099683; + // aapt resource value: 0x7f020023 + public static int abc_ic_star_half_black_36dp = 2130837539; - // aapt resource value: 0x7F060024 - public static int abc_ic_star_half_black_48dp = 2131099684; + // aapt resource value: 0x7f020024 + public static int abc_ic_star_half_black_48dp = 2130837540; - // aapt resource value: 0x7F060025 - public static int abc_ic_voice_search_api_material = 2131099685; + // aapt resource value: 0x7f020025 + public static int abc_ic_voice_search_api_material = 2130837541; - // aapt resource value: 0x7F060026 - public static int abc_item_background_holo_dark = 2131099686; + // aapt resource value: 0x7f020026 + public static int abc_item_background_holo_dark = 2130837542; - // aapt resource value: 0x7F060027 - public static int abc_item_background_holo_light = 2131099687; + // aapt resource value: 0x7f020027 + public static int abc_item_background_holo_light = 2130837543; - // aapt resource value: 0x7F060028 - public static int abc_list_divider_material = 2131099688; + // aapt resource value: 0x7f020028 + public static int abc_list_divider_material = 2130837544; - // aapt resource value: 0x7F060029 - public static int abc_list_divider_mtrl_alpha = 2131099689; + // aapt resource value: 0x7f020029 + public static int abc_list_divider_mtrl_alpha = 2130837545; - // aapt resource value: 0x7F06002A - public static int abc_list_focused_holo = 2131099690; + // aapt resource value: 0x7f02002a + public static int abc_list_focused_holo = 2130837546; - // aapt resource value: 0x7F06002B - public static int abc_list_longpressed_holo = 2131099691; + // aapt resource value: 0x7f02002b + public static int abc_list_longpressed_holo = 2130837547; - // aapt resource value: 0x7F06002C - public static int abc_list_pressed_holo_dark = 2131099692; + // aapt resource value: 0x7f02002c + public static int abc_list_pressed_holo_dark = 2130837548; - // aapt resource value: 0x7F06002D - public static int abc_list_pressed_holo_light = 2131099693; + // aapt resource value: 0x7f02002d + public static int abc_list_pressed_holo_light = 2130837549; - // aapt resource value: 0x7F06002E - public static int abc_list_selector_background_transition_holo_dark = 2131099694; + // aapt resource value: 0x7f02002e + public static int abc_list_selector_background_transition_holo_dark = 2130837550; - // aapt resource value: 0x7F06002F - public static int abc_list_selector_background_transition_holo_light = 2131099695; + // aapt resource value: 0x7f02002f + public static int abc_list_selector_background_transition_holo_light = 2130837551; - // aapt resource value: 0x7F060030 - public static int abc_list_selector_disabled_holo_dark = 2131099696; + // aapt resource value: 0x7f020030 + public static int abc_list_selector_disabled_holo_dark = 2130837552; - // aapt resource value: 0x7F060031 - public static int abc_list_selector_disabled_holo_light = 2131099697; + // aapt resource value: 0x7f020031 + public static int abc_list_selector_disabled_holo_light = 2130837553; - // aapt resource value: 0x7F060032 - public static int abc_list_selector_holo_dark = 2131099698; + // aapt resource value: 0x7f020032 + public static int abc_list_selector_holo_dark = 2130837554; - // aapt resource value: 0x7F060033 - public static int abc_list_selector_holo_light = 2131099699; + // aapt resource value: 0x7f020033 + public static int abc_list_selector_holo_light = 2130837555; - // aapt resource value: 0x7F060034 - public static int abc_menu_hardkey_panel_mtrl_mult = 2131099700; + // aapt resource value: 0x7f020034 + public static int abc_menu_hardkey_panel_mtrl_mult = 2130837556; - // aapt resource value: 0x7F060035 - public static int abc_popup_background_mtrl_mult = 2131099701; + // aapt resource value: 0x7f020035 + public static int abc_popup_background_mtrl_mult = 2130837557; - // aapt resource value: 0x7F060036 - public static int abc_ratingbar_indicator_material = 2131099702; + // aapt resource value: 0x7f020036 + public static int abc_ratingbar_indicator_material = 2130837558; - // aapt resource value: 0x7F060037 - public static int abc_ratingbar_material = 2131099703; + // aapt resource value: 0x7f020037 + public static int abc_ratingbar_material = 2130837559; - // aapt resource value: 0x7F060038 - public static int abc_ratingbar_small_material = 2131099704; + // aapt resource value: 0x7f020038 + public static int abc_ratingbar_small_material = 2130837560; - // aapt resource value: 0x7F060039 - public static int abc_scrubber_control_off_mtrl_alpha = 2131099705; + // aapt resource value: 0x7f020039 + public static int abc_scrubber_control_off_mtrl_alpha = 2130837561; - // aapt resource value: 0x7F06003A - public static int abc_scrubber_control_to_pressed_mtrl_000 = 2131099706; + // aapt resource value: 0x7f02003a + public static int abc_scrubber_control_to_pressed_mtrl_000 = 2130837562; - // aapt resource value: 0x7F06003B - public static int abc_scrubber_control_to_pressed_mtrl_005 = 2131099707; + // aapt resource value: 0x7f02003b + public static int abc_scrubber_control_to_pressed_mtrl_005 = 2130837563; - // aapt resource value: 0x7F06003C - public static int abc_scrubber_primary_mtrl_alpha = 2131099708; + // aapt resource value: 0x7f02003c + public static int abc_scrubber_primary_mtrl_alpha = 2130837564; - // aapt resource value: 0x7F06003D - public static int abc_scrubber_track_mtrl_alpha = 2131099709; + // aapt resource value: 0x7f02003d + public static int abc_scrubber_track_mtrl_alpha = 2130837565; - // aapt resource value: 0x7F06003E - public static int abc_seekbar_thumb_material = 2131099710; + // aapt resource value: 0x7f02003e + public static int abc_seekbar_thumb_material = 2130837566; - // aapt resource value: 0x7F06003F - public static int abc_seekbar_tick_mark_material = 2131099711; + // aapt resource value: 0x7f02003f + public static int abc_seekbar_tick_mark_material = 2130837567; - // aapt resource value: 0x7F060040 - public static int abc_seekbar_track_material = 2131099712; + // aapt resource value: 0x7f020040 + public static int abc_seekbar_track_material = 2130837568; - // aapt resource value: 0x7F060041 - public static int abc_spinner_mtrl_am_alpha = 2131099713; + // aapt resource value: 0x7f020041 + public static int abc_spinner_mtrl_am_alpha = 2130837569; - // aapt resource value: 0x7F060042 - public static int abc_spinner_textfield_background_material = 2131099714; + // aapt resource value: 0x7f020042 + public static int abc_spinner_textfield_background_material = 2130837570; - // aapt resource value: 0x7F060043 - public static int abc_switch_thumb_material = 2131099715; + // aapt resource value: 0x7f020043 + public static int abc_switch_thumb_material = 2130837571; - // aapt resource value: 0x7F060044 - public static int abc_switch_track_mtrl_alpha = 2131099716; + // aapt resource value: 0x7f020044 + public static int abc_switch_track_mtrl_alpha = 2130837572; - // aapt resource value: 0x7F060045 - public static int abc_tab_indicator_material = 2131099717; + // aapt resource value: 0x7f020045 + public static int abc_tab_indicator_material = 2130837573; - // aapt resource value: 0x7F060046 - public static int abc_tab_indicator_mtrl_alpha = 2131099718; + // aapt resource value: 0x7f020046 + public static int abc_tab_indicator_mtrl_alpha = 2130837574; - // aapt resource value: 0x7F06004E - public static int abc_textfield_activated_mtrl_alpha = 2131099726; + // aapt resource value: 0x7f020047 + public static int abc_text_cursor_material = 2130837575; - // aapt resource value: 0x7F06004F - public static int abc_textfield_default_mtrl_alpha = 2131099727; + // aapt resource value: 0x7f020048 + public static int abc_text_select_handle_left_mtrl_dark = 2130837576; - // aapt resource value: 0x7F060050 - public static int abc_textfield_search_activated_mtrl_alpha = 2131099728; + // aapt resource value: 0x7f020049 + public static int abc_text_select_handle_left_mtrl_light = 2130837577; - // aapt resource value: 0x7F060051 - public static int abc_textfield_search_default_mtrl_alpha = 2131099729; + // aapt resource value: 0x7f02004a + public static int abc_text_select_handle_middle_mtrl_dark = 2130837578; - // aapt resource value: 0x7F060052 - public static int abc_textfield_search_material = 2131099730; + // aapt resource value: 0x7f02004b + public static int abc_text_select_handle_middle_mtrl_light = 2130837579; - // aapt resource value: 0x7F060047 - public static int abc_text_cursor_material = 2131099719; + // aapt resource value: 0x7f02004c + public static int abc_text_select_handle_right_mtrl_dark = 2130837580; - // aapt resource value: 0x7F060048 - public static int abc_text_select_handle_left_mtrl_dark = 2131099720; + // aapt resource value: 0x7f02004d + public static int abc_text_select_handle_right_mtrl_light = 2130837581; - // aapt resource value: 0x7F060049 - public static int abc_text_select_handle_left_mtrl_light = 2131099721; + // aapt resource value: 0x7f02004e + public static int abc_textfield_activated_mtrl_alpha = 2130837582; - // aapt resource value: 0x7F06004A - public static int abc_text_select_handle_middle_mtrl_dark = 2131099722; + // aapt resource value: 0x7f02004f + public static int abc_textfield_default_mtrl_alpha = 2130837583; - // aapt resource value: 0x7F06004B - public static int abc_text_select_handle_middle_mtrl_light = 2131099723; + // aapt resource value: 0x7f020050 + public static int abc_textfield_search_activated_mtrl_alpha = 2130837584; - // aapt resource value: 0x7F06004C - public static int abc_text_select_handle_right_mtrl_dark = 2131099724; + // aapt resource value: 0x7f020051 + public static int abc_textfield_search_default_mtrl_alpha = 2130837585; - // aapt resource value: 0x7F06004D - public static int abc_text_select_handle_right_mtrl_light = 2131099725; + // aapt resource value: 0x7f020052 + public static int abc_textfield_search_material = 2130837586; - // aapt resource value: 0x7F060053 - public static int abc_vector_test = 2131099731; + // aapt resource value: 0x7f020053 + public static int abc_vector_test = 2130837587; - // aapt resource value: 0x7F060054 - public static int notification_action_background = 2131099732; + // aapt resource value: 0x7f020054 + public static int notification_action_background = 2130837588; - // aapt resource value: 0x7F060055 - public static int notification_bg = 2131099733; + // aapt resource value: 0x7f020055 + public static int notification_bg = 2130837589; - // aapt resource value: 0x7F060056 - public static int notification_bg_low = 2131099734; + // aapt resource value: 0x7f020056 + public static int notification_bg_low = 2130837590; - // aapt resource value: 0x7F060057 - public static int notification_bg_low_normal = 2131099735; + // aapt resource value: 0x7f020057 + public static int notification_bg_low_normal = 2130837591; - // aapt resource value: 0x7F060058 - public static int notification_bg_low_pressed = 2131099736; + // aapt resource value: 0x7f020058 + public static int notification_bg_low_pressed = 2130837592; - // aapt resource value: 0x7F060059 - public static int notification_bg_normal = 2131099737; + // aapt resource value: 0x7f020059 + public static int notification_bg_normal = 2130837593; - // aapt resource value: 0x7F06005A - public static int notification_bg_normal_pressed = 2131099738; + // aapt resource value: 0x7f02005a + public static int notification_bg_normal_pressed = 2130837594; - // aapt resource value: 0x7F06005B - public static int notification_icon_background = 2131099739; + // aapt resource value: 0x7f02005b + public static int notification_icon_background = 2130837595; - // aapt resource value: 0x7F06005C - public static int notification_template_icon_bg = 2131099740; + // aapt resource value: 0x7f020060 + public static int notification_template_icon_bg = 2130837600; - // aapt resource value: 0x7F06005D - public static int notification_template_icon_low_bg = 2131099741; + // aapt resource value: 0x7f020061 + public static int notification_template_icon_low_bg = 2130837601; - // aapt resource value: 0x7F06005E - public static int notification_tile_bg = 2131099742; + // aapt resource value: 0x7f02005c + public static int notification_tile_bg = 2130837596; - // aapt resource value: 0x7F06005F - public static int notify_panel_notification_icon_bg = 2131099743; + // aapt resource value: 0x7f02005d + public static int notify_panel_notification_icon_bg = 2130837597; - // aapt resource value: 0x7F060060 - public static int tooltip_frame_dark = 2131099744; + // aapt resource value: 0x7f02005e + public static int tooltip_frame_dark = 2130837598; - // aapt resource value: 0x7F060061 - public static int tooltip_frame_light = 2131099745; + // aapt resource value: 0x7f02005f + public static int tooltip_frame_light = 2130837599; static Drawable() { @@ -1854,404 +1854,404 @@ namespace StardewModdingAPI public partial class Id { - // aapt resource value: 0x7F070017 - public static int actions = 2131165207; + // aapt resource value: 0x7f0a0026 + public static int ALT = 2131361830; - // aapt resource value: 0x7F070006 - public static int action_bar = 2131165190; + // aapt resource value: 0x7f0a0027 + public static int CTRL = 2131361831; - // aapt resource value: 0x7F070007 - public static int action_bar_activity_content = 2131165191; + // aapt resource value: 0x7f0a0028 + public static int FUNCTION = 2131361832; - // aapt resource value: 0x7F070008 - public static int action_bar_container = 2131165192; + // aapt resource value: 0x7f0a0029 + public static int META = 2131361833; - // aapt resource value: 0x7F070009 - public static int action_bar_root = 2131165193; + // aapt resource value: 0x7f0a002a + public static int SHIFT = 2131361834; - // aapt resource value: 0x7F07000A - public static int action_bar_spinner = 2131165194; + // aapt resource value: 0x7f0a002b + public static int SYM = 2131361835; - // aapt resource value: 0x7F07000B - public static int action_bar_subtitle = 2131165195; + // aapt resource value: 0x7f0a0067 + public static int action_bar = 2131361895; - // aapt resource value: 0x7F07000C - public static int action_bar_title = 2131165196; + // aapt resource value: 0x7f0a0000 + public static int action_bar_activity_content = 2131361792; - // aapt resource value: 0x7F07000D - public static int action_container = 2131165197; + // aapt resource value: 0x7f0a0066 + public static int action_bar_container = 2131361894; - // aapt resource value: 0x7F07000E - public static int action_context_bar = 2131165198; + // aapt resource value: 0x7f0a0062 + public static int action_bar_root = 2131361890; - // aapt resource value: 0x7F07000F - public static int action_divider = 2131165199; + // aapt resource value: 0x7f0a0001 + public static int action_bar_spinner = 2131361793; - // aapt resource value: 0x7F070010 - public static int action_image = 2131165200; + // aapt resource value: 0x7f0a0044 + public static int action_bar_subtitle = 2131361860; - // aapt resource value: 0x7F070011 - public static int action_menu_divider = 2131165201; + // aapt resource value: 0x7f0a0043 + public static int action_bar_title = 2131361859; - // aapt resource value: 0x7F070012 - public static int action_menu_presenter = 2131165202; + // aapt resource value: 0x7f0a0077 + public static int action_container = 2131361911; - // aapt resource value: 0x7F070013 - public static int action_mode_bar = 2131165203; + // aapt resource value: 0x7f0a0068 + public static int action_context_bar = 2131361896; - // aapt resource value: 0x7F070014 - public static int action_mode_bar_stub = 2131165204; + // aapt resource value: 0x7f0a0082 + public static int action_divider = 2131361922; - // aapt resource value: 0x7F070015 - public static int action_mode_close_button = 2131165205; + // aapt resource value: 0x7f0a0078 + public static int action_image = 2131361912; - // aapt resource value: 0x7F070016 - public static int action_text = 2131165206; + // aapt resource value: 0x7f0a0002 + public static int action_menu_divider = 2131361794; - // aapt resource value: 0x7F070018 - public static int activity_chooser_view_content = 2131165208; + // aapt resource value: 0x7f0a0003 + public static int action_menu_presenter = 2131361795; - // aapt resource value: 0x7F070019 - public static int add = 2131165209; + // aapt resource value: 0x7f0a0064 + public static int action_mode_bar = 2131361892; - // aapt resource value: 0x7F07001A - public static int alertTitle = 2131165210; + // aapt resource value: 0x7f0a0063 + public static int action_mode_bar_stub = 2131361891; - // aapt resource value: 0x7F07001B - public static int all = 2131165211; + // aapt resource value: 0x7f0a0045 + public static int action_mode_close_button = 2131361861; - // aapt resource value: 0x7F070000 - public static int ALT = 2131165184; + // aapt resource value: 0x7f0a0079 + public static int action_text = 2131361913; - // aapt resource value: 0x7F07001C - public static int always = 2131165212; + // aapt resource value: 0x7f0a0083 + public static int actions = 2131361923; - // aapt resource value: 0x7F07001D - public static int async = 2131165213; + // aapt resource value: 0x7f0a0046 + public static int activity_chooser_view_content = 2131361862; - // aapt resource value: 0x7F07001E - public static int beginning = 2131165214; + // aapt resource value: 0x7f0a001b + public static int add = 2131361819; - // aapt resource value: 0x7F07001F - public static int blocking = 2131165215; + // aapt resource value: 0x7f0a0059 + public static int alertTitle = 2131361881; - // aapt resource value: 0x7F070020 - public static int bottom = 2131165216; + // aapt resource value: 0x7f0a003e + public static int all = 2131361854; - // aapt resource value: 0x7F070021 - public static int buttonPanel = 2131165217; + // aapt resource value: 0x7f0a002c + public static int always = 2131361836; - // aapt resource value: 0x7F070022 - public static int center = 2131165218; + // aapt resource value: 0x7f0a003f + public static int async = 2131361855; - // aapt resource value: 0x7F070023 - public static int center_horizontal = 2131165219; + // aapt resource value: 0x7f0a0023 + public static int beginning = 2131361827; - // aapt resource value: 0x7F070024 - public static int center_vertical = 2131165220; + // aapt resource value: 0x7f0a0040 + public static int blocking = 2131361856; - // aapt resource value: 0x7F070025 - public static int checkbox = 2131165221; + // aapt resource value: 0x7f0a0031 + public static int bottom = 2131361841; - // aapt resource value: 0x7F070026 - public static int chronometer = 2131165222; + // aapt resource value: 0x7f0a004c + public static int buttonPanel = 2131361868; - // aapt resource value: 0x7F070027 - public static int clip_horizontal = 2131165223; + // aapt resource value: 0x7f0a0033 + public static int center = 2131361843; - // aapt resource value: 0x7F070028 - public static int clip_vertical = 2131165224; + // aapt resource value: 0x7f0a0034 + public static int center_horizontal = 2131361844; - // aapt resource value: 0x7F070029 - public static int collapseActionView = 2131165225; + // aapt resource value: 0x7f0a0035 + public static int center_vertical = 2131361845; - // aapt resource value: 0x7F07002A - public static int content = 2131165226; + // aapt resource value: 0x7f0a0060 + public static int checkbox = 2131361888; - // aapt resource value: 0x7F07002B - public static int contentPanel = 2131165227; + // aapt resource value: 0x7f0a0081 + public static int chronometer = 2131361921; - // aapt resource value: 0x7F070001 - public static int CTRL = 2131165185; + // aapt resource value: 0x7f0a0036 + public static int clip_horizontal = 2131361846; - // aapt resource value: 0x7F07002C - public static int custom = 2131165228; + // aapt resource value: 0x7f0a0037 + public static int clip_vertical = 2131361847; - // aapt resource value: 0x7F07002D - public static int customPanel = 2131165229; + // aapt resource value: 0x7f0a002d + public static int collapseActionView = 2131361837; - // aapt resource value: 0x7F07002E - public static int decor_content_parent = 2131165230; + // aapt resource value: 0x7f0a005c + public static int content = 2131361884; - // aapt resource value: 0x7F07002F - public static int default_activity_button = 2131165231; + // aapt resource value: 0x7f0a004f + public static int contentPanel = 2131361871; - // aapt resource value: 0x7F070030 - public static int disableHome = 2131165232; + // aapt resource value: 0x7f0a0056 + public static int custom = 2131361878; - // aapt resource value: 0x7F070031 - public static int edit_query = 2131165233; + // aapt resource value: 0x7f0a0055 + public static int customPanel = 2131361877; - // aapt resource value: 0x7F070032 - public static int end = 2131165234; + // aapt resource value: 0x7f0a0065 + public static int decor_content_parent = 2131361893; - // aapt resource value: 0x7F070034 - public static int expanded_menu = 2131165236; + // aapt resource value: 0x7f0a0049 + public static int default_activity_button = 2131361865; - // aapt resource value: 0x7F070033 - public static int expand_activities_button = 2131165235; + // aapt resource value: 0x7f0a0014 + public static int disableHome = 2131361812; - // aapt resource value: 0x7F070035 - public static int fill = 2131165237; + // aapt resource value: 0x7f0a0069 + public static int edit_query = 2131361897; - // aapt resource value: 0x7F070036 - public static int fill_horizontal = 2131165238; + // aapt resource value: 0x7f0a0024 + public static int end = 2131361828; - // aapt resource value: 0x7F070037 - public static int fill_vertical = 2131165239; + // aapt resource value: 0x7f0a0047 + public static int expand_activities_button = 2131361863; - // aapt resource value: 0x7F070038 - public static int forever = 2131165240; + // aapt resource value: 0x7f0a005f + public static int expanded_menu = 2131361887; - // aapt resource value: 0x7F070002 - public static int FUNCTION = 2131165186; + // aapt resource value: 0x7f0a0038 + public static int fill = 2131361848; - // aapt resource value: 0x7F070039 - public static int group_divider = 2131165241; + // aapt resource value: 0x7f0a0039 + public static int fill_horizontal = 2131361849; - // aapt resource value: 0x7F07003A - public static int home = 2131165242; + // aapt resource value: 0x7f0a003a + public static int fill_vertical = 2131361850; - // aapt resource value: 0x7F07003B - public static int homeAsUp = 2131165243; + // aapt resource value: 0x7f0a0041 + public static int forever = 2131361857; - // aapt resource value: 0x7F07003C - public static int icon = 2131165244; + // aapt resource value: 0x7f0a005b + public static int group_divider = 2131361883; - // aapt resource value: 0x7F07003D - public static int icon_group = 2131165245; + // aapt resource value: 0x7f0a0004 + public static int home = 2131361796; - // aapt resource value: 0x7F07003E - public static int ifRoom = 2131165246; + // aapt resource value: 0x7f0a0015 + public static int homeAsUp = 2131361813; - // aapt resource value: 0x7F07003F - public static int image = 2131165247; + // aapt resource value: 0x7f0a004b + public static int icon = 2131361867; - // aapt resource value: 0x7F070040 - public static int info = 2131165248; + // aapt resource value: 0x7f0a0084 + public static int icon_group = 2131361924; - // aapt resource value: 0x7F070041 - public static int italic = 2131165249; + // aapt resource value: 0x7f0a002e + public static int ifRoom = 2131361838; - // aapt resource value: 0x7F070042 - public static int left = 2131165250; + // aapt resource value: 0x7f0a0048 + public static int image = 2131361864; - // aapt resource value: 0x7F070043 - public static int line1 = 2131165251; + // aapt resource value: 0x7f0a007d + public static int info = 2131361917; - // aapt resource value: 0x7F070044 - public static int line3 = 2131165252; + // aapt resource value: 0x7f0a0042 + public static int italic = 2131361858; - // aapt resource value: 0x7F070045 - public static int listMode = 2131165253; + // aapt resource value: 0x7f0a003b + public static int left = 2131361851; - // aapt resource value: 0x7F070046 - public static int list_item = 2131165254; + // aapt resource value: 0x7f0a0009 + public static int line1 = 2131361801; - // aapt resource value: 0x7F070047 - public static int message = 2131165255; + // aapt resource value: 0x7f0a000a + public static int line3 = 2131361802; - // aapt resource value: 0x7F070003 - public static int META = 2131165187; + // aapt resource value: 0x7f0a0011 + public static int listMode = 2131361809; - // aapt resource value: 0x7F070048 - public static int middle = 2131165256; + // aapt resource value: 0x7f0a004a + public static int list_item = 2131361866; - // aapt resource value: 0x7F070049 - public static int multiply = 2131165257; + // aapt resource value: 0x7f0a0076 + public static int message = 2131361910; - // aapt resource value: 0x7F07004A - public static int never = 2131165258; + // aapt resource value: 0x7f0a0025 + public static int middle = 2131361829; - // aapt resource value: 0x7F07004B - public static int none = 2131165259; + // aapt resource value: 0x7f0a001c + public static int multiply = 2131361820; - // aapt resource value: 0x7F07004C - public static int normal = 2131165260; + // aapt resource value: 0x7f0a002f + public static int never = 2131361839; - // aapt resource value: 0x7F07004D - public static int notification_background = 2131165261; + // aapt resource value: 0x7f0a0016 + public static int none = 2131361814; - // aapt resource value: 0x7F07004E - public static int notification_main_column = 2131165262; + // aapt resource value: 0x7f0a0012 + public static int normal = 2131361810; - // aapt resource value: 0x7F07004F - public static int notification_main_column_container = 2131165263; + // aapt resource value: 0x7f0a007f + public static int notification_background = 2131361919; - // aapt resource value: 0x7F070050 - public static int parentPanel = 2131165264; + // aapt resource value: 0x7f0a007b + public static int notification_main_column = 2131361915; - // aapt resource value: 0x7F070051 - public static int progress_circular = 2131165265; + // aapt resource value: 0x7f0a007a + public static int notification_main_column_container = 2131361914; - // aapt resource value: 0x7F070052 - public static int progress_horizontal = 2131165266; + // aapt resource value: 0x7f0a004e + public static int parentPanel = 2131361870; - // aapt resource value: 0x7F070053 - public static int radio = 2131165267; + // aapt resource value: 0x7f0a0005 + public static int progress_circular = 2131361797; - // aapt resource value: 0x7F070054 - public static int right = 2131165268; + // aapt resource value: 0x7f0a0006 + public static int progress_horizontal = 2131361798; - // aapt resource value: 0x7F070055 - public static int right_icon = 2131165269; + // aapt resource value: 0x7f0a0061 + public static int radio = 2131361889; - // aapt resource value: 0x7F070056 - public static int right_side = 2131165270; + // aapt resource value: 0x7f0a003c + public static int right = 2131361852; - // aapt resource value: 0x7F070057 - public static int screen = 2131165271; + // aapt resource value: 0x7f0a007e + public static int right_icon = 2131361918; - // aapt resource value: 0x7F070058 - public static int scrollIndicatorDown = 2131165272; + // aapt resource value: 0x7f0a007c + public static int right_side = 2131361916; - // aapt resource value: 0x7F070059 - public static int scrollIndicatorUp = 2131165273; + // aapt resource value: 0x7f0a001d + public static int screen = 2131361821; - // aapt resource value: 0x7F07005A - public static int scrollView = 2131165274; + // aapt resource value: 0x7f0a0054 + public static int scrollIndicatorDown = 2131361876; - // aapt resource value: 0x7F07005B - public static int search_badge = 2131165275; + // aapt resource value: 0x7f0a0050 + public static int scrollIndicatorUp = 2131361872; - // aapt resource value: 0x7F07005C - public static int search_bar = 2131165276; + // aapt resource value: 0x7f0a0051 + public static int scrollView = 2131361873; - // aapt resource value: 0x7F07005D - public static int search_button = 2131165277; + // aapt resource value: 0x7f0a006b + public static int search_badge = 2131361899; - // aapt resource value: 0x7F07005E - public static int search_close_btn = 2131165278; + // aapt resource value: 0x7f0a006a + public static int search_bar = 2131361898; - // aapt resource value: 0x7F07005F - public static int search_edit_frame = 2131165279; + // aapt resource value: 0x7f0a006c + public static int search_button = 2131361900; - // aapt resource value: 0x7F070060 - public static int search_go_btn = 2131165280; + // aapt resource value: 0x7f0a0071 + public static int search_close_btn = 2131361905; - // aapt resource value: 0x7F070061 - public static int search_mag_icon = 2131165281; + // aapt resource value: 0x7f0a006d + public static int search_edit_frame = 2131361901; - // aapt resource value: 0x7F070062 - public static int search_plate = 2131165282; + // aapt resource value: 0x7f0a0073 + public static int search_go_btn = 2131361907; - // aapt resource value: 0x7F070063 - public static int search_src_text = 2131165283; + // aapt resource value: 0x7f0a006e + public static int search_mag_icon = 2131361902; - // aapt resource value: 0x7F070064 - public static int search_voice_btn = 2131165284; + // aapt resource value: 0x7f0a006f + public static int search_plate = 2131361903; - // aapt resource value: 0x7F070065 - public static int select_dialog_listview = 2131165285; + // aapt resource value: 0x7f0a0070 + public static int search_src_text = 2131361904; - // aapt resource value: 0x7F070004 - public static int SHIFT = 2131165188; + // aapt resource value: 0x7f0a0074 + public static int search_voice_btn = 2131361908; - // aapt resource value: 0x7F070066 - public static int shortcut = 2131165286; + // aapt resource value: 0x7f0a0075 + public static int select_dialog_listview = 2131361909; - // aapt resource value: 0x7F070067 - public static int showCustom = 2131165287; + // aapt resource value: 0x7f0a005d + public static int shortcut = 2131361885; - // aapt resource value: 0x7F070068 - public static int showHome = 2131165288; + // aapt resource value: 0x7f0a0017 + public static int showCustom = 2131361815; - // aapt resource value: 0x7F070069 - public static int showTitle = 2131165289; + // aapt resource value: 0x7f0a0018 + public static int showHome = 2131361816; - // aapt resource value: 0x7F07006A - public static int spacer = 2131165290; + // aapt resource value: 0x7f0a0019 + public static int showTitle = 2131361817; - // aapt resource value: 0x7F07006B - public static int split_action_bar = 2131165291; + // aapt resource value: 0x7f0a004d + public static int spacer = 2131361869; - // aapt resource value: 0x7F07006C - public static int src_atop = 2131165292; + // aapt resource value: 0x7f0a0007 + public static int split_action_bar = 2131361799; - // aapt resource value: 0x7F07006D - public static int src_in = 2131165293; + // aapt resource value: 0x7f0a001e + public static int src_atop = 2131361822; - // aapt resource value: 0x7F07006E - public static int src_over = 2131165294; + // aapt resource value: 0x7f0a001f + public static int src_in = 2131361823; - // aapt resource value: 0x7F07006F - public static int start = 2131165295; + // aapt resource value: 0x7f0a0020 + public static int src_over = 2131361824; - // aapt resource value: 0x7F070070 - public static int submenuarrow = 2131165296; + // aapt resource value: 0x7f0a003d + public static int start = 2131361853; - // aapt resource value: 0x7F070071 - public static int submit_area = 2131165297; + // aapt resource value: 0x7f0a005e + public static int submenuarrow = 2131361886; - // aapt resource value: 0x7F070005 - public static int SYM = 2131165189; + // aapt resource value: 0x7f0a0072 + public static int submit_area = 2131361906; - // aapt resource value: 0x7F070072 - public static int tabMode = 2131165298; + // aapt resource value: 0x7f0a0013 + public static int tabMode = 2131361811; - // aapt resource value: 0x7F070073 - public static int tag_transition_group = 2131165299; + // aapt resource value: 0x7f0a000b + public static int tag_transition_group = 2131361803; - // aapt resource value: 0x7F070074 - public static int tag_unhandled_key_event_manager = 2131165300; + // aapt resource value: 0x7f0a000c + public static int tag_unhandled_key_event_manager = 2131361804; - // aapt resource value: 0x7F070075 - public static int tag_unhandled_key_listeners = 2131165301; + // aapt resource value: 0x7f0a000d + public static int tag_unhandled_key_listeners = 2131361805; - // aapt resource value: 0x7F070076 - public static int text = 2131165302; + // aapt resource value: 0x7f0a000e + public static int text = 2131361806; - // aapt resource value: 0x7F070077 - public static int text2 = 2131165303; + // aapt resource value: 0x7f0a000f + public static int text2 = 2131361807; - // aapt resource value: 0x7F070078 - public static int textSpacerNoButtons = 2131165304; + // aapt resource value: 0x7f0a0053 + public static int textSpacerNoButtons = 2131361875; - // aapt resource value: 0x7F070079 - public static int textSpacerNoTitle = 2131165305; + // aapt resource value: 0x7f0a0052 + public static int textSpacerNoTitle = 2131361874; - // aapt resource value: 0x7F07007A - public static int time = 2131165306; + // aapt resource value: 0x7f0a0080 + public static int time = 2131361920; - // aapt resource value: 0x7F07007B - public static int title = 2131165307; + // aapt resource value: 0x7f0a0010 + public static int title = 2131361808; - // aapt resource value: 0x7F07007C - public static int titleDividerNoCustom = 2131165308; + // aapt resource value: 0x7f0a005a + public static int titleDividerNoCustom = 2131361882; - // aapt resource value: 0x7F07007D - public static int title_template = 2131165309; + // aapt resource value: 0x7f0a0058 + public static int title_template = 2131361880; - // aapt resource value: 0x7F07007E - public static int top = 2131165310; + // aapt resource value: 0x7f0a0032 + public static int top = 2131361842; - // aapt resource value: 0x7F07007F - public static int topPanel = 2131165311; + // aapt resource value: 0x7f0a0057 + public static int topPanel = 2131361879; - // aapt resource value: 0x7F070080 - public static int uniform = 2131165312; + // aapt resource value: 0x7f0a0021 + public static int uniform = 2131361825; - // aapt resource value: 0x7F070081 - public static int up = 2131165313; + // aapt resource value: 0x7f0a0008 + public static int up = 2131361800; - // aapt resource value: 0x7F070082 - public static int useLogo = 2131165314; + // aapt resource value: 0x7f0a001a + public static int useLogo = 2131361818; - // aapt resource value: 0x7F070083 - public static int withText = 2131165315; + // aapt resource value: 0x7f0a0030 + public static int withText = 2131361840; - // aapt resource value: 0x7F070084 - public static int wrap_content = 2131165316; + // aapt resource value: 0x7f0a0022 + public static int wrap_content = 2131361826; static Id() { @@ -2266,20 +2266,20 @@ namespace StardewModdingAPI public partial class Integer { - // aapt resource value: 0x7F080000 - public static int abc_config_activityDefaultDur = 2131230720; + // aapt resource value: 0x7f0b0000 + public static int abc_config_activityDefaultDur = 2131427328; - // aapt resource value: 0x7F080001 - public static int abc_config_activityShortDur = 2131230721; + // aapt resource value: 0x7f0b0001 + public static int abc_config_activityShortDur = 2131427329; - // aapt resource value: 0x7F080002 - public static int cancel_button_image_alpha = 2131230722; + // aapt resource value: 0x7f0b0002 + public static int cancel_button_image_alpha = 2131427330; - // aapt resource value: 0x7F080003 - public static int config_tooltipAnimTime = 2131230723; + // aapt resource value: 0x7f0b0003 + public static int config_tooltipAnimTime = 2131427331; - // aapt resource value: 0x7F080004 - public static int status_bar_notification_info_maxnum = 2131230724; + // aapt resource value: 0x7f0b0004 + public static int status_bar_notification_info_maxnum = 2131427332; static Integer() { @@ -2294,119 +2294,119 @@ namespace StardewModdingAPI public partial class Layout { - // aapt resource value: 0x7F090000 - public static int abc_action_bar_title_item = 2131296256; + // aapt resource value: 0x7f030000 + public static int abc_action_bar_title_item = 2130903040; - // aapt resource value: 0x7F090001 - public static int abc_action_bar_up_container = 2131296257; + // aapt resource value: 0x7f030001 + public static int abc_action_bar_up_container = 2130903041; - // aapt resource value: 0x7F090002 - public static int abc_action_menu_item_layout = 2131296258; + // aapt resource value: 0x7f030002 + public static int abc_action_menu_item_layout = 2130903042; - // aapt resource value: 0x7F090003 - public static int abc_action_menu_layout = 2131296259; + // aapt resource value: 0x7f030003 + public static int abc_action_menu_layout = 2130903043; - // aapt resource value: 0x7F090004 - public static int abc_action_mode_bar = 2131296260; + // aapt resource value: 0x7f030004 + public static int abc_action_mode_bar = 2130903044; - // aapt resource value: 0x7F090005 - public static int abc_action_mode_close_item_material = 2131296261; + // aapt resource value: 0x7f030005 + public static int abc_action_mode_close_item_material = 2130903045; - // aapt resource value: 0x7F090006 - public static int abc_activity_chooser_view = 2131296262; + // aapt resource value: 0x7f030006 + public static int abc_activity_chooser_view = 2130903046; - // aapt resource value: 0x7F090007 - public static int abc_activity_chooser_view_list_item = 2131296263; + // aapt resource value: 0x7f030007 + public static int abc_activity_chooser_view_list_item = 2130903047; - // aapt resource value: 0x7F090008 - public static int abc_alert_dialog_button_bar_material = 2131296264; + // aapt resource value: 0x7f030008 + public static int abc_alert_dialog_button_bar_material = 2130903048; - // aapt resource value: 0x7F090009 - public static int abc_alert_dialog_material = 2131296265; + // aapt resource value: 0x7f030009 + public static int abc_alert_dialog_material = 2130903049; - // aapt resource value: 0x7F09000A - public static int abc_alert_dialog_title_material = 2131296266; + // aapt resource value: 0x7f03000a + public static int abc_alert_dialog_title_material = 2130903050; - // aapt resource value: 0x7F09000B - public static int abc_cascading_menu_item_layout = 2131296267; + // aapt resource value: 0x7f03000b + public static int abc_cascading_menu_item_layout = 2130903051; - // aapt resource value: 0x7F09000C - public static int abc_dialog_title_material = 2131296268; + // aapt resource value: 0x7f03000c + public static int abc_dialog_title_material = 2130903052; - // aapt resource value: 0x7F09000D - public static int abc_expanded_menu_layout = 2131296269; + // aapt resource value: 0x7f03000d + public static int abc_expanded_menu_layout = 2130903053; - // aapt resource value: 0x7F09000E - public static int abc_list_menu_item_checkbox = 2131296270; + // aapt resource value: 0x7f03000e + public static int abc_list_menu_item_checkbox = 2130903054; - // aapt resource value: 0x7F09000F - public static int abc_list_menu_item_icon = 2131296271; + // aapt resource value: 0x7f03000f + public static int abc_list_menu_item_icon = 2130903055; - // aapt resource value: 0x7F090010 - public static int abc_list_menu_item_layout = 2131296272; + // aapt resource value: 0x7f030010 + public static int abc_list_menu_item_layout = 2130903056; - // aapt resource value: 0x7F090011 - public static int abc_list_menu_item_radio = 2131296273; + // aapt resource value: 0x7f030011 + public static int abc_list_menu_item_radio = 2130903057; - // aapt resource value: 0x7F090012 - public static int abc_popup_menu_header_item_layout = 2131296274; + // aapt resource value: 0x7f030012 + public static int abc_popup_menu_header_item_layout = 2130903058; - // aapt resource value: 0x7F090013 - public static int abc_popup_menu_item_layout = 2131296275; + // aapt resource value: 0x7f030013 + public static int abc_popup_menu_item_layout = 2130903059; - // aapt resource value: 0x7F090014 - public static int abc_screen_content_include = 2131296276; + // aapt resource value: 0x7f030014 + public static int abc_screen_content_include = 2130903060; - // aapt resource value: 0x7F090015 - public static int abc_screen_simple = 2131296277; + // aapt resource value: 0x7f030015 + public static int abc_screen_simple = 2130903061; - // aapt resource value: 0x7F090016 - public static int abc_screen_simple_overlay_action_mode = 2131296278; + // aapt resource value: 0x7f030016 + public static int abc_screen_simple_overlay_action_mode = 2130903062; - // aapt resource value: 0x7F090017 - public static int abc_screen_toolbar = 2131296279; + // aapt resource value: 0x7f030017 + public static int abc_screen_toolbar = 2130903063; - // aapt resource value: 0x7F090018 - public static int abc_search_dropdown_item_icons_2line = 2131296280; + // aapt resource value: 0x7f030018 + public static int abc_search_dropdown_item_icons_2line = 2130903064; - // aapt resource value: 0x7F090019 - public static int abc_search_view = 2131296281; + // aapt resource value: 0x7f030019 + public static int abc_search_view = 2130903065; - // aapt resource value: 0x7F09001A - public static int abc_select_dialog_material = 2131296282; + // aapt resource value: 0x7f03001a + public static int abc_select_dialog_material = 2130903066; - // aapt resource value: 0x7F09001B - public static int abc_tooltip = 2131296283; + // aapt resource value: 0x7f03001b + public static int abc_tooltip = 2130903067; - // aapt resource value: 0x7F09001C - public static int notification_action = 2131296284; + // aapt resource value: 0x7f03001c + public static int notification_action = 2130903068; - // aapt resource value: 0x7F09001D - public static int notification_action_tombstone = 2131296285; + // aapt resource value: 0x7f03001d + public static int notification_action_tombstone = 2130903069; - // aapt resource value: 0x7F09001E - public static int notification_template_custom_big = 2131296286; + // aapt resource value: 0x7f03001e + public static int notification_template_custom_big = 2130903070; - // aapt resource value: 0x7F09001F - public static int notification_template_icon_group = 2131296287; + // aapt resource value: 0x7f03001f + public static int notification_template_icon_group = 2130903071; - // aapt resource value: 0x7F090020 - public static int notification_template_part_chronometer = 2131296288; + // aapt resource value: 0x7f030020 + public static int notification_template_part_chronometer = 2130903072; - // aapt resource value: 0x7F090021 - public static int notification_template_part_time = 2131296289; + // aapt resource value: 0x7f030021 + public static int notification_template_part_time = 2130903073; - // aapt resource value: 0x7F090022 - public static int select_dialog_item_material = 2131296290; + // aapt resource value: 0x7f030022 + public static int select_dialog_item_material = 2130903074; - // aapt resource value: 0x7F090023 - public static int select_dialog_multichoice_material = 2131296291; + // aapt resource value: 0x7f030023 + public static int select_dialog_multichoice_material = 2130903075; - // aapt resource value: 0x7F090024 - public static int select_dialog_singlechoice_material = 2131296292; + // aapt resource value: 0x7f030024 + public static int select_dialog_singlechoice_material = 2130903076; - // aapt resource value: 0x7F090025 - public static int support_simple_spinner_dropdown_item = 2131296293; + // aapt resource value: 0x7f030025 + public static int support_simple_spinner_dropdown_item = 2130903077; static Layout() { @@ -2421,134 +2421,203 @@ namespace StardewModdingAPI public partial class String { - // aapt resource value: 0x7F0A0000 - public static int abc_action_bar_home_description = 2131361792; + // aapt resource value: 0x7f050000 + public static int abc_action_bar_home_description = 2131034112; - // aapt resource value: 0x7F0A0001 - public static int abc_action_bar_up_description = 2131361793; + // aapt resource value: 0x7f050001 + public static int abc_action_bar_up_description = 2131034113; - // aapt resource value: 0x7F0A0002 - public static int abc_action_menu_overflow_description = 2131361794; + // aapt resource value: 0x7f050002 + public static int abc_action_menu_overflow_description = 2131034114; - // aapt resource value: 0x7F0A0003 - public static int abc_action_mode_done = 2131361795; + // aapt resource value: 0x7f050003 + public static int abc_action_mode_done = 2131034115; - // aapt resource value: 0x7F0A0005 - public static int abc_activitychooserview_choose_application = 2131361797; + // aapt resource value: 0x7f050004 + public static int abc_activity_chooser_view_see_all = 2131034116; - // aapt resource value: 0x7F0A0004 - public static int abc_activity_chooser_view_see_all = 2131361796; + // aapt resource value: 0x7f050005 + public static int abc_activitychooserview_choose_application = 2131034117; - // aapt resource value: 0x7F0A0006 - public static int abc_capital_off = 2131361798; + // aapt resource value: 0x7f050006 + public static int abc_capital_off = 2131034118; - // aapt resource value: 0x7F0A0007 - public static int abc_capital_on = 2131361799; + // aapt resource value: 0x7f050007 + public static int abc_capital_on = 2131034119; - // aapt resource value: 0x7F0A0008 - public static int abc_font_family_body_1_material = 2131361800; + // aapt resource value: 0x7f05001c + public static int abc_font_family_body_1_material = 2131034140; - // aapt resource value: 0x7F0A0009 - public static int abc_font_family_body_2_material = 2131361801; + // aapt resource value: 0x7f05001d + public static int abc_font_family_body_2_material = 2131034141; - // aapt resource value: 0x7F0A000A - public static int abc_font_family_button_material = 2131361802; + // aapt resource value: 0x7f05001e + public static int abc_font_family_button_material = 2131034142; - // aapt resource value: 0x7F0A000B - public static int abc_font_family_caption_material = 2131361803; + // aapt resource value: 0x7f05001f + public static int abc_font_family_caption_material = 2131034143; - // aapt resource value: 0x7F0A000C - public static int abc_font_family_display_1_material = 2131361804; + // aapt resource value: 0x7f050020 + public static int abc_font_family_display_1_material = 2131034144; - // aapt resource value: 0x7F0A000D - public static int abc_font_family_display_2_material = 2131361805; + // aapt resource value: 0x7f050021 + public static int abc_font_family_display_2_material = 2131034145; - // aapt resource value: 0x7F0A000E - public static int abc_font_family_display_3_material = 2131361806; + // aapt resource value: 0x7f050022 + public static int abc_font_family_display_3_material = 2131034146; - // aapt resource value: 0x7F0A000F - public static int abc_font_family_display_4_material = 2131361807; + // aapt resource value: 0x7f050023 + public static int abc_font_family_display_4_material = 2131034147; - // aapt resource value: 0x7F0A0010 - public static int abc_font_family_headline_material = 2131361808; + // aapt resource value: 0x7f050024 + public static int abc_font_family_headline_material = 2131034148; - // aapt resource value: 0x7F0A0011 - public static int abc_font_family_menu_material = 2131361809; + // aapt resource value: 0x7f050025 + public static int abc_font_family_menu_material = 2131034149; - // aapt resource value: 0x7F0A0012 - public static int abc_font_family_subhead_material = 2131361810; + // aapt resource value: 0x7f050026 + public static int abc_font_family_subhead_material = 2131034150; - // aapt resource value: 0x7F0A0013 - public static int abc_font_family_title_material = 2131361811; + // aapt resource value: 0x7f050027 + public static int abc_font_family_title_material = 2131034151; - // aapt resource value: 0x7F0A0014 - public static int abc_menu_alt_shortcut_label = 2131361812; + // aapt resource value: 0x7f050008 + public static int abc_menu_alt_shortcut_label = 2131034120; - // aapt resource value: 0x7F0A0015 - public static int abc_menu_ctrl_shortcut_label = 2131361813; + // aapt resource value: 0x7f050009 + public static int abc_menu_ctrl_shortcut_label = 2131034121; - // aapt resource value: 0x7F0A0016 - public static int abc_menu_delete_shortcut_label = 2131361814; + // aapt resource value: 0x7f05000a + public static int abc_menu_delete_shortcut_label = 2131034122; - // aapt resource value: 0x7F0A0017 - public static int abc_menu_enter_shortcut_label = 2131361815; + // aapt resource value: 0x7f05000b + public static int abc_menu_enter_shortcut_label = 2131034123; - // aapt resource value: 0x7F0A0018 - public static int abc_menu_function_shortcut_label = 2131361816; + // aapt resource value: 0x7f05000c + public static int abc_menu_function_shortcut_label = 2131034124; - // aapt resource value: 0x7F0A0019 - public static int abc_menu_meta_shortcut_label = 2131361817; + // aapt resource value: 0x7f05000d + public static int abc_menu_meta_shortcut_label = 2131034125; - // aapt resource value: 0x7F0A001A - public static int abc_menu_shift_shortcut_label = 2131361818; + // aapt resource value: 0x7f05000e + public static int abc_menu_shift_shortcut_label = 2131034126; - // aapt resource value: 0x7F0A001B - public static int abc_menu_space_shortcut_label = 2131361819; + // aapt resource value: 0x7f05000f + public static int abc_menu_space_shortcut_label = 2131034127; - // aapt resource value: 0x7F0A001C - public static int abc_menu_sym_shortcut_label = 2131361820; + // aapt resource value: 0x7f050010 + public static int abc_menu_sym_shortcut_label = 2131034128; - // aapt resource value: 0x7F0A001D - public static int abc_prepend_shortcut_label = 2131361821; + // aapt resource value: 0x7f050011 + public static int abc_prepend_shortcut_label = 2131034129; - // aapt resource value: 0x7F0A001F - public static int abc_searchview_description_clear = 2131361823; + // aapt resource value: 0x7f050012 + public static int abc_search_hint = 2131034130; - // aapt resource value: 0x7F0A0020 - public static int abc_searchview_description_query = 2131361824; + // aapt resource value: 0x7f050013 + public static int abc_searchview_description_clear = 2131034131; - // aapt resource value: 0x7F0A0021 - public static int abc_searchview_description_search = 2131361825; + // aapt resource value: 0x7f050014 + public static int abc_searchview_description_query = 2131034132; - // aapt resource value: 0x7F0A0022 - public static int abc_searchview_description_submit = 2131361826; + // aapt resource value: 0x7f050015 + public static int abc_searchview_description_search = 2131034133; - // aapt resource value: 0x7F0A0023 - public static int abc_searchview_description_voice = 2131361827; + // aapt resource value: 0x7f050016 + public static int abc_searchview_description_submit = 2131034134; - // aapt resource value: 0x7F0A001E - public static int abc_search_hint = 2131361822; + // aapt resource value: 0x7f050017 + public static int abc_searchview_description_voice = 2131034135; - // aapt resource value: 0x7F0A0024 - public static int abc_shareactionprovider_share_with = 2131361828; + // aapt resource value: 0x7f050018 + public static int abc_shareactionprovider_share_with = 2131034136; - // aapt resource value: 0x7F0A0025 - public static int abc_shareactionprovider_share_with_application = 2131361829; + // aapt resource value: 0x7f050019 + public static int abc_shareactionprovider_share_with_application = 2131034137; - // aapt resource value: 0x7F0A0026 - public static int abc_toolbar_collapse_description = 2131361830; + // aapt resource value: 0x7f05001a + public static int abc_toolbar_collapse_description = 2131034138; - // aapt resource value: 0x7F0A0027 - public static int app_name = 2131361831; + // aapt resource value: 0x7f050041 + public static int app_name = 2131034177; - // aapt resource value: 0x7F0A0028 - public static int hello = 2131361832; + // aapt resource value: 0x7f050040 + public static int hello = 2131034176; - // aapt resource value: 0x7F0A0029 - public static int search_menu_title = 2131361833; + // aapt resource value: 0x7f050029 + public static int kilobytes_per_second = 2131034153; - // aapt resource value: 0x7F0A002A - public static int status_bar_notification_info_overflow = 2131361834; + // aapt resource value: 0x7f05002a + public static int notification_download_complete = 2131034154; + + // aapt resource value: 0x7f05002b + public static int notification_download_failed = 2131034155; + + // aapt resource value: 0x7f05001b + public static int search_menu_title = 2131034139; + + // aapt resource value: 0x7f05002c + public static int state_completed = 2131034156; + + // aapt resource value: 0x7f05002d + public static int state_connecting = 2131034157; + + // aapt resource value: 0x7f05002e + public static int state_downloading = 2131034158; + + // aapt resource value: 0x7f05002f + public static int state_failed = 2131034159; + + // aapt resource value: 0x7f050030 + public static int state_failed_cancelled = 2131034160; + + // aapt resource value: 0x7f050031 + public static int state_failed_fetching_url = 2131034161; + + // aapt resource value: 0x7f050032 + public static int state_failed_sdcard_full = 2131034162; + + // aapt resource value: 0x7f050033 + public static int state_failed_unlicensed = 2131034163; + + // aapt resource value: 0x7f050034 + public static int state_fetching_url = 2131034164; + + // aapt resource value: 0x7f050035 + public static int state_idle = 2131034165; + + // aapt resource value: 0x7f050036 + public static int state_paused_by_request = 2131034166; + + // aapt resource value: 0x7f050037 + public static int state_paused_network_setup_failure = 2131034167; + + // aapt resource value: 0x7f050038 + public static int state_paused_network_unavailable = 2131034168; + + // aapt resource value: 0x7f050039 + public static int state_paused_roaming = 2131034169; + + // aapt resource value: 0x7f05003a + public static int state_paused_sdcard_unavailable = 2131034170; + + // aapt resource value: 0x7f05003b + public static int state_paused_wifi_disabled = 2131034171; + + // aapt resource value: 0x7f05003c + public static int state_paused_wifi_unavailable = 2131034172; + + // aapt resource value: 0x7f05003d + public static int state_unknown = 2131034173; + + // aapt resource value: 0x7f050028 + public static int status_bar_notification_info_overflow = 2131034152; + + // aapt resource value: 0x7f05003e + public static int time_remaining = 2131034174; + + // aapt resource value: 0x7f05003f + public static int time_remaining_notification = 2131034175; static String() { @@ -2563,1043 +2632,1043 @@ namespace StardewModdingAPI public partial class Style { - // aapt resource value: 0x7F0B0000 - public static int AlertDialog_AppCompat = 2131427328; + // aapt resource value: 0x7f070089 + public static int AlertDialog_AppCompat = 2131165321; - // aapt resource value: 0x7F0B0001 - public static int AlertDialog_AppCompat_Light = 2131427329; + // aapt resource value: 0x7f07008a + public static int AlertDialog_AppCompat_Light = 2131165322; - // aapt resource value: 0x7F0B0002 - public static int Animation_AppCompat_Dialog = 2131427330; + // aapt resource value: 0x7f07008b + public static int Animation_AppCompat_Dialog = 2131165323; - // aapt resource value: 0x7F0B0003 - public static int Animation_AppCompat_DropDownUp = 2131427331; + // aapt resource value: 0x7f07008c + public static int Animation_AppCompat_DropDownUp = 2131165324; - // aapt resource value: 0x7F0B0004 - public static int Animation_AppCompat_Tooltip = 2131427332; + // aapt resource value: 0x7f07008d + public static int Animation_AppCompat_Tooltip = 2131165325; - // aapt resource value: 0x7F0B0005 - public static int Base_AlertDialog_AppCompat = 2131427333; + // aapt resource value: 0x7f07008e + public static int Base_AlertDialog_AppCompat = 2131165326; - // aapt resource value: 0x7F0B0006 - public static int Base_AlertDialog_AppCompat_Light = 2131427334; + // aapt resource value: 0x7f07008f + public static int Base_AlertDialog_AppCompat_Light = 2131165327; - // aapt resource value: 0x7F0B0007 - public static int Base_Animation_AppCompat_Dialog = 2131427335; + // aapt resource value: 0x7f070090 + public static int Base_Animation_AppCompat_Dialog = 2131165328; - // aapt resource value: 0x7F0B0008 - public static int Base_Animation_AppCompat_DropDownUp = 2131427336; + // aapt resource value: 0x7f070091 + public static int Base_Animation_AppCompat_DropDownUp = 2131165329; - // aapt resource value: 0x7F0B0009 - public static int Base_Animation_AppCompat_Tooltip = 2131427337; + // aapt resource value: 0x7f070092 + public static int Base_Animation_AppCompat_Tooltip = 2131165330; - // aapt resource value: 0x7F0B000B - public static int Base_DialogWindowTitleBackground_AppCompat = 2131427339; + // aapt resource value: 0x7f070093 + public static int Base_DialogWindowTitle_AppCompat = 2131165331; - // aapt resource value: 0x7F0B000A - public static int Base_DialogWindowTitle_AppCompat = 2131427338; + // aapt resource value: 0x7f070094 + public static int Base_DialogWindowTitleBackground_AppCompat = 2131165332; - // aapt resource value: 0x7F0B000C - public static int Base_TextAppearance_AppCompat = 2131427340; + // aapt resource value: 0x7f07001d + public static int Base_TextAppearance_AppCompat = 2131165213; - // aapt resource value: 0x7F0B000D - public static int Base_TextAppearance_AppCompat_Body1 = 2131427341; + // aapt resource value: 0x7f07001e + public static int Base_TextAppearance_AppCompat_Body1 = 2131165214; - // aapt resource value: 0x7F0B000E - public static int Base_TextAppearance_AppCompat_Body2 = 2131427342; + // aapt resource value: 0x7f07001f + public static int Base_TextAppearance_AppCompat_Body2 = 2131165215; - // aapt resource value: 0x7F0B000F - public static int Base_TextAppearance_AppCompat_Button = 2131427343; + // aapt resource value: 0x7f070020 + public static int Base_TextAppearance_AppCompat_Button = 2131165216; - // aapt resource value: 0x7F0B0010 - public static int Base_TextAppearance_AppCompat_Caption = 2131427344; + // aapt resource value: 0x7f070021 + public static int Base_TextAppearance_AppCompat_Caption = 2131165217; - // aapt resource value: 0x7F0B0011 - public static int Base_TextAppearance_AppCompat_Display1 = 2131427345; + // aapt resource value: 0x7f070022 + public static int Base_TextAppearance_AppCompat_Display1 = 2131165218; - // aapt resource value: 0x7F0B0012 - public static int Base_TextAppearance_AppCompat_Display2 = 2131427346; + // aapt resource value: 0x7f070023 + public static int Base_TextAppearance_AppCompat_Display2 = 2131165219; - // aapt resource value: 0x7F0B0013 - public static int Base_TextAppearance_AppCompat_Display3 = 2131427347; + // aapt resource value: 0x7f070024 + public static int Base_TextAppearance_AppCompat_Display3 = 2131165220; - // aapt resource value: 0x7F0B0014 - public static int Base_TextAppearance_AppCompat_Display4 = 2131427348; + // aapt resource value: 0x7f070025 + public static int Base_TextAppearance_AppCompat_Display4 = 2131165221; - // aapt resource value: 0x7F0B0015 - public static int Base_TextAppearance_AppCompat_Headline = 2131427349; + // aapt resource value: 0x7f070026 + public static int Base_TextAppearance_AppCompat_Headline = 2131165222; - // aapt resource value: 0x7F0B0016 - public static int Base_TextAppearance_AppCompat_Inverse = 2131427350; + // aapt resource value: 0x7f070027 + public static int Base_TextAppearance_AppCompat_Inverse = 2131165223; - // aapt resource value: 0x7F0B0017 - public static int Base_TextAppearance_AppCompat_Large = 2131427351; + // aapt resource value: 0x7f070028 + public static int Base_TextAppearance_AppCompat_Large = 2131165224; - // aapt resource value: 0x7F0B0018 - public static int Base_TextAppearance_AppCompat_Large_Inverse = 2131427352; + // aapt resource value: 0x7f070029 + public static int Base_TextAppearance_AppCompat_Large_Inverse = 2131165225; - // aapt resource value: 0x7F0B0019 - public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427353; + // aapt resource value: 0x7f07002a + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131165226; - // aapt resource value: 0x7F0B001A - public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427354; + // aapt resource value: 0x7f07002b + public static int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131165227; - // aapt resource value: 0x7F0B001B - public static int Base_TextAppearance_AppCompat_Medium = 2131427355; + // aapt resource value: 0x7f07002c + public static int Base_TextAppearance_AppCompat_Medium = 2131165228; - // aapt resource value: 0x7F0B001C - public static int Base_TextAppearance_AppCompat_Medium_Inverse = 2131427356; + // aapt resource value: 0x7f07002d + public static int Base_TextAppearance_AppCompat_Medium_Inverse = 2131165229; - // aapt resource value: 0x7F0B001D - public static int Base_TextAppearance_AppCompat_Menu = 2131427357; + // aapt resource value: 0x7f07002e + public static int Base_TextAppearance_AppCompat_Menu = 2131165230; - // aapt resource value: 0x7F0B001E - public static int Base_TextAppearance_AppCompat_SearchResult = 2131427358; + // aapt resource value: 0x7f070095 + public static int Base_TextAppearance_AppCompat_SearchResult = 2131165333; - // aapt resource value: 0x7F0B001F - public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131427359; + // aapt resource value: 0x7f07002f + public static int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131165231; - // aapt resource value: 0x7F0B0020 - public static int Base_TextAppearance_AppCompat_SearchResult_Title = 2131427360; + // aapt resource value: 0x7f070030 + public static int Base_TextAppearance_AppCompat_SearchResult_Title = 2131165232; - // aapt resource value: 0x7F0B0021 - public static int Base_TextAppearance_AppCompat_Small = 2131427361; + // aapt resource value: 0x7f070031 + public static int Base_TextAppearance_AppCompat_Small = 2131165233; - // aapt resource value: 0x7F0B0022 - public static int Base_TextAppearance_AppCompat_Small_Inverse = 2131427362; + // aapt resource value: 0x7f070032 + public static int Base_TextAppearance_AppCompat_Small_Inverse = 2131165234; - // aapt resource value: 0x7F0B0023 - public static int Base_TextAppearance_AppCompat_Subhead = 2131427363; + // aapt resource value: 0x7f070033 + public static int Base_TextAppearance_AppCompat_Subhead = 2131165235; - // aapt resource value: 0x7F0B0024 - public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131427364; + // aapt resource value: 0x7f070096 + public static int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131165334; - // aapt resource value: 0x7F0B0025 - public static int Base_TextAppearance_AppCompat_Title = 2131427365; + // aapt resource value: 0x7f070034 + public static int Base_TextAppearance_AppCompat_Title = 2131165236; - // aapt resource value: 0x7F0B0026 - public static int Base_TextAppearance_AppCompat_Title_Inverse = 2131427366; + // aapt resource value: 0x7f070097 + public static int Base_TextAppearance_AppCompat_Title_Inverse = 2131165335; - // aapt resource value: 0x7F0B0027 - public static int Base_TextAppearance_AppCompat_Tooltip = 2131427367; + // aapt resource value: 0x7f070098 + public static int Base_TextAppearance_AppCompat_Tooltip = 2131165336; - // aapt resource value: 0x7F0B0028 - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427368; + // aapt resource value: 0x7f070078 + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131165304; - // aapt resource value: 0x7F0B0029 - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427369; + // aapt resource value: 0x7f070035 + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131165237; - // aapt resource value: 0x7F0B002A - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427370; + // aapt resource value: 0x7f070036 + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131165238; - // aapt resource value: 0x7F0B002B - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427371; + // aapt resource value: 0x7f070037 + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131165239; - // aapt resource value: 0x7F0B002C - public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427372; + // aapt resource value: 0x7f070038 + public static int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131165240; - // aapt resource value: 0x7F0B002D - public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427373; + // aapt resource value: 0x7f070039 + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131165241; - // aapt resource value: 0x7F0B002E - public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427374; + // aapt resource value: 0x7f07003a + public static int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131165242; - // aapt resource value: 0x7F0B002F - public static int Base_TextAppearance_AppCompat_Widget_Button = 2131427375; + // aapt resource value: 0x7f07003b + public static int Base_TextAppearance_AppCompat_Widget_Button = 2131165243; - // aapt resource value: 0x7F0B0030 - public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427376; + // aapt resource value: 0x7f07007f + public static int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131165311; - // aapt resource value: 0x7F0B0031 - public static int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131427377; + // aapt resource value: 0x7f070080 + public static int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131165312; - // aapt resource value: 0x7F0B0032 - public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131427378; + // aapt resource value: 0x7f070079 + public static int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131165305; - // aapt resource value: 0x7F0B0033 - public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131427379; + // aapt resource value: 0x7f070099 + public static int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131165337; - // aapt resource value: 0x7F0B0034 - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427380; + // aapt resource value: 0x7f07003c + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131165244; - // aapt resource value: 0x7F0B0035 - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427381; + // aapt resource value: 0x7f07003d + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131165245; - // aapt resource value: 0x7F0B0036 - public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427382; + // aapt resource value: 0x7f07003e + public static int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131165246; - // aapt resource value: 0x7F0B0037 - public static int Base_TextAppearance_AppCompat_Widget_Switch = 2131427383; + // aapt resource value: 0x7f07003f + public static int Base_TextAppearance_AppCompat_Widget_Switch = 2131165247; - // aapt resource value: 0x7F0B0038 - public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427384; + // aapt resource value: 0x7f070040 + public static int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131165248; - // aapt resource value: 0x7F0B0039 - public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427385; + // aapt resource value: 0x7f07009a + public static int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131165338; - // aapt resource value: 0x7F0B003A - public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427386; + // aapt resource value: 0x7f070041 + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131165249; - // aapt resource value: 0x7F0B003B - public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427387; + // aapt resource value: 0x7f070042 + public static int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131165250; - // aapt resource value: 0x7F0B004A - public static int Base_ThemeOverlay_AppCompat = 2131427402; + // aapt resource value: 0x7f070043 + public static int Base_Theme_AppCompat = 2131165251; - // aapt resource value: 0x7F0B004B - public static int Base_ThemeOverlay_AppCompat_ActionBar = 2131427403; + // aapt resource value: 0x7f07009b + public static int Base_Theme_AppCompat_CompactMenu = 2131165339; - // aapt resource value: 0x7F0B004C - public static int Base_ThemeOverlay_AppCompat_Dark = 2131427404; + // aapt resource value: 0x7f070044 + public static int Base_Theme_AppCompat_Dialog = 2131165252; - // aapt resource value: 0x7F0B004D - public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131427405; + // aapt resource value: 0x7f07009c + public static int Base_Theme_AppCompat_Dialog_Alert = 2131165340; - // aapt resource value: 0x7F0B004E - public static int Base_ThemeOverlay_AppCompat_Dialog = 2131427406; + // aapt resource value: 0x7f07009d + public static int Base_Theme_AppCompat_Dialog_FixedSize = 2131165341; - // aapt resource value: 0x7F0B004F - public static int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131427407; + // aapt resource value: 0x7f07009e + public static int Base_Theme_AppCompat_Dialog_MinWidth = 2131165342; - // aapt resource value: 0x7F0B0050 - public static int Base_ThemeOverlay_AppCompat_Light = 2131427408; + // aapt resource value: 0x7f070001 + public static int Base_Theme_AppCompat_DialogWhenLarge = 2131165185; - // aapt resource value: 0x7F0B003C - public static int Base_Theme_AppCompat = 2131427388; + // aapt resource value: 0x7f070045 + public static int Base_Theme_AppCompat_Light = 2131165253; - // aapt resource value: 0x7F0B003D - public static int Base_Theme_AppCompat_CompactMenu = 2131427389; + // aapt resource value: 0x7f07009f + public static int Base_Theme_AppCompat_Light_DarkActionBar = 2131165343; - // aapt resource value: 0x7F0B003E - public static int Base_Theme_AppCompat_Dialog = 2131427390; + // aapt resource value: 0x7f070046 + public static int Base_Theme_AppCompat_Light_Dialog = 2131165254; - // aapt resource value: 0x7F0B0042 - public static int Base_Theme_AppCompat_DialogWhenLarge = 2131427394; + // aapt resource value: 0x7f0700a0 + public static int Base_Theme_AppCompat_Light_Dialog_Alert = 2131165344; - // aapt resource value: 0x7F0B003F - public static int Base_Theme_AppCompat_Dialog_Alert = 2131427391; + // aapt resource value: 0x7f0700a1 + public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131165345; - // aapt resource value: 0x7F0B0040 - public static int Base_Theme_AppCompat_Dialog_FixedSize = 2131427392; + // aapt resource value: 0x7f0700a2 + public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131165346; - // aapt resource value: 0x7F0B0041 - public static int Base_Theme_AppCompat_Dialog_MinWidth = 2131427393; + // aapt resource value: 0x7f070002 + public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131165186; - // aapt resource value: 0x7F0B0043 - public static int Base_Theme_AppCompat_Light = 2131427395; + // aapt resource value: 0x7f0700a3 + public static int Base_ThemeOverlay_AppCompat = 2131165347; - // aapt resource value: 0x7F0B0044 - public static int Base_Theme_AppCompat_Light_DarkActionBar = 2131427396; + // aapt resource value: 0x7f0700a4 + public static int Base_ThemeOverlay_AppCompat_ActionBar = 2131165348; - // aapt resource value: 0x7F0B0045 - public static int Base_Theme_AppCompat_Light_Dialog = 2131427397; + // aapt resource value: 0x7f0700a5 + public static int Base_ThemeOverlay_AppCompat_Dark = 2131165349; - // aapt resource value: 0x7F0B0049 - public static int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131427401; + // aapt resource value: 0x7f0700a6 + public static int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131165350; - // aapt resource value: 0x7F0B0046 - public static int Base_Theme_AppCompat_Light_Dialog_Alert = 2131427398; + // aapt resource value: 0x7f070047 + public static int Base_ThemeOverlay_AppCompat_Dialog = 2131165255; - // aapt resource value: 0x7F0B0047 - public static int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131427399; + // aapt resource value: 0x7f0700a7 + public static int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131165351; - // aapt resource value: 0x7F0B0048 - public static int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131427400; + // aapt resource value: 0x7f0700a8 + public static int Base_ThemeOverlay_AppCompat_Light = 2131165352; - // aapt resource value: 0x7F0B0055 - public static int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131427413; + // aapt resource value: 0x7f070048 + public static int Base_V21_Theme_AppCompat = 2131165256; - // aapt resource value: 0x7F0B0051 - public static int Base_V21_Theme_AppCompat = 2131427409; + // aapt resource value: 0x7f070049 + public static int Base_V21_Theme_AppCompat_Dialog = 2131165257; - // aapt resource value: 0x7F0B0052 - public static int Base_V21_Theme_AppCompat_Dialog = 2131427410; + // aapt resource value: 0x7f07004a + public static int Base_V21_Theme_AppCompat_Light = 2131165258; - // aapt resource value: 0x7F0B0053 - public static int Base_V21_Theme_AppCompat_Light = 2131427411; + // aapt resource value: 0x7f07004b + public static int Base_V21_Theme_AppCompat_Light_Dialog = 2131165259; - // aapt resource value: 0x7F0B0054 - public static int Base_V21_Theme_AppCompat_Light_Dialog = 2131427412; + // aapt resource value: 0x7f07004c + public static int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131165260; - // aapt resource value: 0x7F0B0056 - public static int Base_V22_Theme_AppCompat = 2131427414; + // aapt resource value: 0x7f070076 + public static int Base_V22_Theme_AppCompat = 2131165302; - // aapt resource value: 0x7F0B0057 - public static int Base_V22_Theme_AppCompat_Light = 2131427415; + // aapt resource value: 0x7f070077 + public static int Base_V22_Theme_AppCompat_Light = 2131165303; - // aapt resource value: 0x7F0B0058 - public static int Base_V23_Theme_AppCompat = 2131427416; + // aapt resource value: 0x7f07007a + public static int Base_V23_Theme_AppCompat = 2131165306; - // aapt resource value: 0x7F0B0059 - public static int Base_V23_Theme_AppCompat_Light = 2131427417; + // aapt resource value: 0x7f07007b + public static int Base_V23_Theme_AppCompat_Light = 2131165307; - // aapt resource value: 0x7F0B005A - public static int Base_V26_Theme_AppCompat = 2131427418; + // aapt resource value: 0x7f070083 + public static int Base_V26_Theme_AppCompat = 2131165315; - // aapt resource value: 0x7F0B005B - public static int Base_V26_Theme_AppCompat_Light = 2131427419; + // aapt resource value: 0x7f070084 + public static int Base_V26_Theme_AppCompat_Light = 2131165316; - // aapt resource value: 0x7F0B005C - public static int Base_V26_Widget_AppCompat_Toolbar = 2131427420; + // aapt resource value: 0x7f070085 + public static int Base_V26_Widget_AppCompat_Toolbar = 2131165317; - // aapt resource value: 0x7F0B005D - public static int Base_V28_Theme_AppCompat = 2131427421; + // aapt resource value: 0x7f070087 + public static int Base_V28_Theme_AppCompat = 2131165319; - // aapt resource value: 0x7F0B005E - public static int Base_V28_Theme_AppCompat_Light = 2131427422; + // aapt resource value: 0x7f070088 + public static int Base_V28_Theme_AppCompat_Light = 2131165320; - // aapt resource value: 0x7F0B0063 - public static int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131427427; + // aapt resource value: 0x7f0700a9 + public static int Base_V7_Theme_AppCompat = 2131165353; - // aapt resource value: 0x7F0B005F - public static int Base_V7_Theme_AppCompat = 2131427423; + // aapt resource value: 0x7f0700aa + public static int Base_V7_Theme_AppCompat_Dialog = 2131165354; - // aapt resource value: 0x7F0B0060 - public static int Base_V7_Theme_AppCompat_Dialog = 2131427424; + // aapt resource value: 0x7f0700ab + public static int Base_V7_Theme_AppCompat_Light = 2131165355; - // aapt resource value: 0x7F0B0061 - public static int Base_V7_Theme_AppCompat_Light = 2131427425; + // aapt resource value: 0x7f0700ac + public static int Base_V7_Theme_AppCompat_Light_Dialog = 2131165356; - // aapt resource value: 0x7F0B0062 - public static int Base_V7_Theme_AppCompat_Light_Dialog = 2131427426; + // aapt resource value: 0x7f0700ad + public static int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131165357; - // aapt resource value: 0x7F0B0064 - public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131427428; + // aapt resource value: 0x7f0700ae + public static int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131165358; - // aapt resource value: 0x7F0B0065 - public static int Base_V7_Widget_AppCompat_EditText = 2131427429; + // aapt resource value: 0x7f0700af + public static int Base_V7_Widget_AppCompat_EditText = 2131165359; - // aapt resource value: 0x7F0B0066 - public static int Base_V7_Widget_AppCompat_Toolbar = 2131427430; + // aapt resource value: 0x7f0700b0 + public static int Base_V7_Widget_AppCompat_Toolbar = 2131165360; - // aapt resource value: 0x7F0B0067 - public static int Base_Widget_AppCompat_ActionBar = 2131427431; + // aapt resource value: 0x7f0700b1 + public static int Base_Widget_AppCompat_ActionBar = 2131165361; - // aapt resource value: 0x7F0B0068 - public static int Base_Widget_AppCompat_ActionBar_Solid = 2131427432; + // aapt resource value: 0x7f0700b2 + public static int Base_Widget_AppCompat_ActionBar_Solid = 2131165362; - // aapt resource value: 0x7F0B0069 - public static int Base_Widget_AppCompat_ActionBar_TabBar = 2131427433; + // aapt resource value: 0x7f0700b3 + public static int Base_Widget_AppCompat_ActionBar_TabBar = 2131165363; - // aapt resource value: 0x7F0B006A - public static int Base_Widget_AppCompat_ActionBar_TabText = 2131427434; + // aapt resource value: 0x7f07004d + public static int Base_Widget_AppCompat_ActionBar_TabText = 2131165261; - // aapt resource value: 0x7F0B006B - public static int Base_Widget_AppCompat_ActionBar_TabView = 2131427435; + // aapt resource value: 0x7f07004e + public static int Base_Widget_AppCompat_ActionBar_TabView = 2131165262; - // aapt resource value: 0x7F0B006C - public static int Base_Widget_AppCompat_ActionButton = 2131427436; + // aapt resource value: 0x7f07004f + public static int Base_Widget_AppCompat_ActionButton = 2131165263; - // aapt resource value: 0x7F0B006D - public static int Base_Widget_AppCompat_ActionButton_CloseMode = 2131427437; + // aapt resource value: 0x7f070050 + public static int Base_Widget_AppCompat_ActionButton_CloseMode = 2131165264; - // aapt resource value: 0x7F0B006E - public static int Base_Widget_AppCompat_ActionButton_Overflow = 2131427438; + // aapt resource value: 0x7f070051 + public static int Base_Widget_AppCompat_ActionButton_Overflow = 2131165265; - // aapt resource value: 0x7F0B006F - public static int Base_Widget_AppCompat_ActionMode = 2131427439; + // aapt resource value: 0x7f0700b4 + public static int Base_Widget_AppCompat_ActionMode = 2131165364; - // aapt resource value: 0x7F0B0070 - public static int Base_Widget_AppCompat_ActivityChooserView = 2131427440; + // aapt resource value: 0x7f0700b5 + public static int Base_Widget_AppCompat_ActivityChooserView = 2131165365; - // aapt resource value: 0x7F0B0071 - public static int Base_Widget_AppCompat_AutoCompleteTextView = 2131427441; + // aapt resource value: 0x7f070052 + public static int Base_Widget_AppCompat_AutoCompleteTextView = 2131165266; - // aapt resource value: 0x7F0B0072 - public static int Base_Widget_AppCompat_Button = 2131427442; + // aapt resource value: 0x7f070053 + public static int Base_Widget_AppCompat_Button = 2131165267; - // aapt resource value: 0x7F0B0078 - public static int Base_Widget_AppCompat_ButtonBar = 2131427448; + // aapt resource value: 0x7f070054 + public static int Base_Widget_AppCompat_Button_Borderless = 2131165268; - // aapt resource value: 0x7F0B0079 - public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131427449; + // aapt resource value: 0x7f070055 + public static int Base_Widget_AppCompat_Button_Borderless_Colored = 2131165269; - // aapt resource value: 0x7F0B0073 - public static int Base_Widget_AppCompat_Button_Borderless = 2131427443; + // aapt resource value: 0x7f0700b6 + public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131165366; - // aapt resource value: 0x7F0B0074 - public static int Base_Widget_AppCompat_Button_Borderless_Colored = 2131427444; + // aapt resource value: 0x7f07007c + public static int Base_Widget_AppCompat_Button_Colored = 2131165308; - // aapt resource value: 0x7F0B0075 - public static int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427445; + // aapt resource value: 0x7f070056 + public static int Base_Widget_AppCompat_Button_Small = 2131165270; - // aapt resource value: 0x7F0B0076 - public static int Base_Widget_AppCompat_Button_Colored = 2131427446; + // aapt resource value: 0x7f070057 + public static int Base_Widget_AppCompat_ButtonBar = 2131165271; - // aapt resource value: 0x7F0B0077 - public static int Base_Widget_AppCompat_Button_Small = 2131427447; + // aapt resource value: 0x7f0700b7 + public static int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131165367; - // aapt resource value: 0x7F0B007A - public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131427450; + // aapt resource value: 0x7f070058 + public static int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131165272; - // aapt resource value: 0x7F0B007B - public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131427451; + // aapt resource value: 0x7f070059 + public static int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131165273; - // aapt resource value: 0x7F0B007C - public static int Base_Widget_AppCompat_CompoundButton_Switch = 2131427452; + // aapt resource value: 0x7f0700b8 + public static int Base_Widget_AppCompat_CompoundButton_Switch = 2131165368; - // aapt resource value: 0x7F0B007D - public static int Base_Widget_AppCompat_DrawerArrowToggle = 2131427453; + // aapt resource value: 0x7f070000 + public static int Base_Widget_AppCompat_DrawerArrowToggle = 2131165184; - // aapt resource value: 0x7F0B007E - public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131427454; + // aapt resource value: 0x7f0700b9 + public static int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131165369; - // aapt resource value: 0x7F0B007F - public static int Base_Widget_AppCompat_DropDownItem_Spinner = 2131427455; + // aapt resource value: 0x7f07005a + public static int Base_Widget_AppCompat_DropDownItem_Spinner = 2131165274; - // aapt resource value: 0x7F0B0080 - public static int Base_Widget_AppCompat_EditText = 2131427456; + // aapt resource value: 0x7f07005b + public static int Base_Widget_AppCompat_EditText = 2131165275; - // aapt resource value: 0x7F0B0081 - public static int Base_Widget_AppCompat_ImageButton = 2131427457; + // aapt resource value: 0x7f07005c + public static int Base_Widget_AppCompat_ImageButton = 2131165276; - // aapt resource value: 0x7F0B0082 - public static int Base_Widget_AppCompat_Light_ActionBar = 2131427458; + // aapt resource value: 0x7f0700ba + public static int Base_Widget_AppCompat_Light_ActionBar = 2131165370; - // aapt resource value: 0x7F0B0083 - public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131427459; + // aapt resource value: 0x7f0700bb + public static int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131165371; - // aapt resource value: 0x7F0B0084 - public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131427460; + // aapt resource value: 0x7f0700bc + public static int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131165372; - // aapt resource value: 0x7F0B0085 - public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131427461; + // aapt resource value: 0x7f07005d + public static int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131165277; - // aapt resource value: 0x7F0B0086 - public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427462; + // aapt resource value: 0x7f07005e + public static int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131165278; - // aapt resource value: 0x7F0B0087 - public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131427463; + // aapt resource value: 0x7f07005f + public static int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131165279; - // aapt resource value: 0x7F0B0088 - public static int Base_Widget_AppCompat_Light_PopupMenu = 2131427464; + // aapt resource value: 0x7f070060 + public static int Base_Widget_AppCompat_Light_PopupMenu = 2131165280; - // aapt resource value: 0x7F0B0089 - public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131427465; + // aapt resource value: 0x7f070061 + public static int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131165281; - // aapt resource value: 0x7F0B008A - public static int Base_Widget_AppCompat_ListMenuView = 2131427466; + // aapt resource value: 0x7f0700bd + public static int Base_Widget_AppCompat_ListMenuView = 2131165373; - // aapt resource value: 0x7F0B008B - public static int Base_Widget_AppCompat_ListPopupWindow = 2131427467; + // aapt resource value: 0x7f070062 + public static int Base_Widget_AppCompat_ListPopupWindow = 2131165282; - // aapt resource value: 0x7F0B008C - public static int Base_Widget_AppCompat_ListView = 2131427468; + // aapt resource value: 0x7f070063 + public static int Base_Widget_AppCompat_ListView = 2131165283; - // aapt resource value: 0x7F0B008D - public static int Base_Widget_AppCompat_ListView_DropDown = 2131427469; + // aapt resource value: 0x7f070064 + public static int Base_Widget_AppCompat_ListView_DropDown = 2131165284; - // aapt resource value: 0x7F0B008E - public static int Base_Widget_AppCompat_ListView_Menu = 2131427470; + // aapt resource value: 0x7f070065 + public static int Base_Widget_AppCompat_ListView_Menu = 2131165285; - // aapt resource value: 0x7F0B008F - public static int Base_Widget_AppCompat_PopupMenu = 2131427471; + // aapt resource value: 0x7f070066 + public static int Base_Widget_AppCompat_PopupMenu = 2131165286; - // aapt resource value: 0x7F0B0090 - public static int Base_Widget_AppCompat_PopupMenu_Overflow = 2131427472; + // aapt resource value: 0x7f070067 + public static int Base_Widget_AppCompat_PopupMenu_Overflow = 2131165287; - // aapt resource value: 0x7F0B0091 - public static int Base_Widget_AppCompat_PopupWindow = 2131427473; + // aapt resource value: 0x7f0700be + public static int Base_Widget_AppCompat_PopupWindow = 2131165374; - // aapt resource value: 0x7F0B0092 - public static int Base_Widget_AppCompat_ProgressBar = 2131427474; + // aapt resource value: 0x7f070068 + public static int Base_Widget_AppCompat_ProgressBar = 2131165288; - // aapt resource value: 0x7F0B0093 - public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131427475; + // aapt resource value: 0x7f070069 + public static int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131165289; - // aapt resource value: 0x7F0B0094 - public static int Base_Widget_AppCompat_RatingBar = 2131427476; + // aapt resource value: 0x7f07006a + public static int Base_Widget_AppCompat_RatingBar = 2131165290; - // aapt resource value: 0x7F0B0095 - public static int Base_Widget_AppCompat_RatingBar_Indicator = 2131427477; + // aapt resource value: 0x7f07007d + public static int Base_Widget_AppCompat_RatingBar_Indicator = 2131165309; - // aapt resource value: 0x7F0B0096 - public static int Base_Widget_AppCompat_RatingBar_Small = 2131427478; + // aapt resource value: 0x7f07007e + public static int Base_Widget_AppCompat_RatingBar_Small = 2131165310; - // aapt resource value: 0x7F0B0097 - public static int Base_Widget_AppCompat_SearchView = 2131427479; + // aapt resource value: 0x7f0700bf + public static int Base_Widget_AppCompat_SearchView = 2131165375; - // aapt resource value: 0x7F0B0098 - public static int Base_Widget_AppCompat_SearchView_ActionBar = 2131427480; + // aapt resource value: 0x7f0700c0 + public static int Base_Widget_AppCompat_SearchView_ActionBar = 2131165376; - // aapt resource value: 0x7F0B0099 - public static int Base_Widget_AppCompat_SeekBar = 2131427481; + // aapt resource value: 0x7f07006b + public static int Base_Widget_AppCompat_SeekBar = 2131165291; - // aapt resource value: 0x7F0B009A - public static int Base_Widget_AppCompat_SeekBar_Discrete = 2131427482; + // aapt resource value: 0x7f0700c1 + public static int Base_Widget_AppCompat_SeekBar_Discrete = 2131165377; - // aapt resource value: 0x7F0B009B - public static int Base_Widget_AppCompat_Spinner = 2131427483; + // aapt resource value: 0x7f07006c + public static int Base_Widget_AppCompat_Spinner = 2131165292; - // aapt resource value: 0x7F0B009C - public static int Base_Widget_AppCompat_Spinner_Underlined = 2131427484; + // aapt resource value: 0x7f070003 + public static int Base_Widget_AppCompat_Spinner_Underlined = 2131165187; - // aapt resource value: 0x7F0B009D - public static int Base_Widget_AppCompat_TextView_SpinnerItem = 2131427485; + // aapt resource value: 0x7f07006d + public static int Base_Widget_AppCompat_TextView_SpinnerItem = 2131165293; - // aapt resource value: 0x7F0B009E - public static int Base_Widget_AppCompat_Toolbar = 2131427486; + // aapt resource value: 0x7f070086 + public static int Base_Widget_AppCompat_Toolbar = 2131165318; - // aapt resource value: 0x7F0B009F - public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131427487; + // aapt resource value: 0x7f07006e + public static int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131165294; - // aapt resource value: 0x7F0B00A0 - public static int Platform_AppCompat = 2131427488; + // aapt resource value: 0x7f07006f + public static int Platform_AppCompat = 2131165295; - // aapt resource value: 0x7F0B00A1 - public static int Platform_AppCompat_Light = 2131427489; + // aapt resource value: 0x7f070070 + public static int Platform_AppCompat_Light = 2131165296; - // aapt resource value: 0x7F0B00A2 - public static int Platform_ThemeOverlay_AppCompat = 2131427490; + // aapt resource value: 0x7f070071 + public static int Platform_ThemeOverlay_AppCompat = 2131165297; - // aapt resource value: 0x7F0B00A3 - public static int Platform_ThemeOverlay_AppCompat_Dark = 2131427491; + // aapt resource value: 0x7f070072 + public static int Platform_ThemeOverlay_AppCompat_Dark = 2131165298; - // aapt resource value: 0x7F0B00A4 - public static int Platform_ThemeOverlay_AppCompat_Light = 2131427492; + // aapt resource value: 0x7f070073 + public static int Platform_ThemeOverlay_AppCompat_Light = 2131165299; - // aapt resource value: 0x7F0B00A5 - public static int Platform_V21_AppCompat = 2131427493; + // aapt resource value: 0x7f070074 + public static int Platform_V21_AppCompat = 2131165300; - // aapt resource value: 0x7F0B00A6 - public static int Platform_V21_AppCompat_Light = 2131427494; + // aapt resource value: 0x7f070075 + public static int Platform_V21_AppCompat_Light = 2131165301; - // aapt resource value: 0x7F0B00A7 - public static int Platform_V25_AppCompat = 2131427495; + // aapt resource value: 0x7f070081 + public static int Platform_V25_AppCompat = 2131165313; - // aapt resource value: 0x7F0B00A8 - public static int Platform_V25_AppCompat_Light = 2131427496; + // aapt resource value: 0x7f070082 + public static int Platform_V25_AppCompat_Light = 2131165314; - // aapt resource value: 0x7F0B00A9 - public static int Platform_Widget_AppCompat_Spinner = 2131427497; + // aapt resource value: 0x7f0700c2 + public static int Platform_Widget_AppCompat_Spinner = 2131165378; - // aapt resource value: 0x7F0B00AA - public static int RtlOverlay_DialogWindowTitle_AppCompat = 2131427498; + // aapt resource value: 0x7f07000c + public static int RtlOverlay_DialogWindowTitle_AppCompat = 2131165196; - // aapt resource value: 0x7F0B00AB - public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131427499; + // aapt resource value: 0x7f07000d + public static int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131165197; - // aapt resource value: 0x7F0B00AC - public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131427500; + // aapt resource value: 0x7f07000e + public static int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131165198; - // aapt resource value: 0x7F0B00AD - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131427501; + // aapt resource value: 0x7f07000f + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131165199; - // aapt resource value: 0x7F0B00AE - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131427502; + // aapt resource value: 0x7f070010 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131165200; - // aapt resource value: 0x7F0B00AF - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131427503; + // aapt resource value: 0x7f070011 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131165201; - // aapt resource value: 0x7F0B00B0 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131427504; + // aapt resource value: 0x7f070012 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131165202; - // aapt resource value: 0x7F0B00B1 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131427505; + // aapt resource value: 0x7f070013 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131165203; - // aapt resource value: 0x7F0B00B2 - public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131427506; + // aapt resource value: 0x7f070014 + public static int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131165204; - // aapt resource value: 0x7F0B00B8 - public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131427512; + // aapt resource value: 0x7f070015 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131165205; - // aapt resource value: 0x7F0B00B3 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131427507; + // aapt resource value: 0x7f070016 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131165206; - // aapt resource value: 0x7F0B00B4 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131427508; + // aapt resource value: 0x7f070017 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131165207; - // aapt resource value: 0x7F0B00B5 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131427509; + // aapt resource value: 0x7f070018 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131165208; - // aapt resource value: 0x7F0B00B6 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131427510; + // aapt resource value: 0x7f070019 + public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131165209; - // aapt resource value: 0x7F0B00B7 - public static int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131427511; + // aapt resource value: 0x7f07001a + public static int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131165210; - // aapt resource value: 0x7F0B00B9 - public static int RtlUnderlay_Widget_AppCompat_ActionButton = 2131427513; + // aapt resource value: 0x7f07001b + public static int RtlUnderlay_Widget_AppCompat_ActionButton = 2131165211; - // aapt resource value: 0x7F0B00BA - public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131427514; + // aapt resource value: 0x7f07001c + public static int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131165212; - // aapt resource value: 0x7F0B00BB - public static int TextAppearance_AppCompat = 2131427515; + // aapt resource value: 0x7f0700c3 + public static int TextAppearance_AppCompat = 2131165379; - // aapt resource value: 0x7F0B00BC - public static int TextAppearance_AppCompat_Body1 = 2131427516; + // aapt resource value: 0x7f0700c4 + public static int TextAppearance_AppCompat_Body1 = 2131165380; - // aapt resource value: 0x7F0B00BD - public static int TextAppearance_AppCompat_Body2 = 2131427517; + // aapt resource value: 0x7f0700c5 + public static int TextAppearance_AppCompat_Body2 = 2131165381; - // aapt resource value: 0x7F0B00BE - public static int TextAppearance_AppCompat_Button = 2131427518; + // aapt resource value: 0x7f0700c6 + public static int TextAppearance_AppCompat_Button = 2131165382; - // aapt resource value: 0x7F0B00BF - public static int TextAppearance_AppCompat_Caption = 2131427519; + // aapt resource value: 0x7f0700c7 + public static int TextAppearance_AppCompat_Caption = 2131165383; - // aapt resource value: 0x7F0B00C0 - public static int TextAppearance_AppCompat_Display1 = 2131427520; + // aapt resource value: 0x7f0700c8 + public static int TextAppearance_AppCompat_Display1 = 2131165384; - // aapt resource value: 0x7F0B00C1 - public static int TextAppearance_AppCompat_Display2 = 2131427521; + // aapt resource value: 0x7f0700c9 + public static int TextAppearance_AppCompat_Display2 = 2131165385; - // aapt resource value: 0x7F0B00C2 - public static int TextAppearance_AppCompat_Display3 = 2131427522; + // aapt resource value: 0x7f0700ca + public static int TextAppearance_AppCompat_Display3 = 2131165386; - // aapt resource value: 0x7F0B00C3 - public static int TextAppearance_AppCompat_Display4 = 2131427523; + // aapt resource value: 0x7f0700cb + public static int TextAppearance_AppCompat_Display4 = 2131165387; - // aapt resource value: 0x7F0B00C4 - public static int TextAppearance_AppCompat_Headline = 2131427524; + // aapt resource value: 0x7f0700cc + public static int TextAppearance_AppCompat_Headline = 2131165388; - // aapt resource value: 0x7F0B00C5 - public static int TextAppearance_AppCompat_Inverse = 2131427525; + // aapt resource value: 0x7f0700cd + public static int TextAppearance_AppCompat_Inverse = 2131165389; - // aapt resource value: 0x7F0B00C6 - public static int TextAppearance_AppCompat_Large = 2131427526; + // aapt resource value: 0x7f0700ce + public static int TextAppearance_AppCompat_Large = 2131165390; - // aapt resource value: 0x7F0B00C7 - public static int TextAppearance_AppCompat_Large_Inverse = 2131427527; + // aapt resource value: 0x7f0700cf + public static int TextAppearance_AppCompat_Large_Inverse = 2131165391; - // aapt resource value: 0x7F0B00C8 - public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131427528; + // aapt resource value: 0x7f0700d0 + public static int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131165392; - // aapt resource value: 0x7F0B00C9 - public static int TextAppearance_AppCompat_Light_SearchResult_Title = 2131427529; + // aapt resource value: 0x7f0700d1 + public static int TextAppearance_AppCompat_Light_SearchResult_Title = 2131165393; - // aapt resource value: 0x7F0B00CA - public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427530; + // aapt resource value: 0x7f0700d2 + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131165394; - // aapt resource value: 0x7F0B00CB - public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427531; + // aapt resource value: 0x7f0700d3 + public static int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131165395; - // aapt resource value: 0x7F0B00CC - public static int TextAppearance_AppCompat_Medium = 2131427532; + // aapt resource value: 0x7f0700d4 + public static int TextAppearance_AppCompat_Medium = 2131165396; - // aapt resource value: 0x7F0B00CD - public static int TextAppearance_AppCompat_Medium_Inverse = 2131427533; + // aapt resource value: 0x7f0700d5 + public static int TextAppearance_AppCompat_Medium_Inverse = 2131165397; - // aapt resource value: 0x7F0B00CE - public static int TextAppearance_AppCompat_Menu = 2131427534; + // aapt resource value: 0x7f0700d6 + public static int TextAppearance_AppCompat_Menu = 2131165398; - // aapt resource value: 0x7F0B00CF - public static int TextAppearance_AppCompat_SearchResult_Subtitle = 2131427535; + // aapt resource value: 0x7f0700d7 + public static int TextAppearance_AppCompat_SearchResult_Subtitle = 2131165399; - // aapt resource value: 0x7F0B00D0 - public static int TextAppearance_AppCompat_SearchResult_Title = 2131427536; + // aapt resource value: 0x7f0700d8 + public static int TextAppearance_AppCompat_SearchResult_Title = 2131165400; - // aapt resource value: 0x7F0B00D1 - public static int TextAppearance_AppCompat_Small = 2131427537; + // aapt resource value: 0x7f0700d9 + public static int TextAppearance_AppCompat_Small = 2131165401; - // aapt resource value: 0x7F0B00D2 - public static int TextAppearance_AppCompat_Small_Inverse = 2131427538; + // aapt resource value: 0x7f0700da + public static int TextAppearance_AppCompat_Small_Inverse = 2131165402; - // aapt resource value: 0x7F0B00D3 - public static int TextAppearance_AppCompat_Subhead = 2131427539; + // aapt resource value: 0x7f0700db + public static int TextAppearance_AppCompat_Subhead = 2131165403; - // aapt resource value: 0x7F0B00D4 - public static int TextAppearance_AppCompat_Subhead_Inverse = 2131427540; + // aapt resource value: 0x7f0700dc + public static int TextAppearance_AppCompat_Subhead_Inverse = 2131165404; - // aapt resource value: 0x7F0B00D5 - public static int TextAppearance_AppCompat_Title = 2131427541; + // aapt resource value: 0x7f0700dd + public static int TextAppearance_AppCompat_Title = 2131165405; - // aapt resource value: 0x7F0B00D6 - public static int TextAppearance_AppCompat_Title_Inverse = 2131427542; + // aapt resource value: 0x7f0700de + public static int TextAppearance_AppCompat_Title_Inverse = 2131165406; - // aapt resource value: 0x7F0B00D7 - public static int TextAppearance_AppCompat_Tooltip = 2131427543; + // aapt resource value: 0x7f07000b + public static int TextAppearance_AppCompat_Tooltip = 2131165195; - // aapt resource value: 0x7F0B00D8 - public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427544; + // aapt resource value: 0x7f0700df + public static int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131165407; - // aapt resource value: 0x7F0B00D9 - public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427545; + // aapt resource value: 0x7f0700e0 + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131165408; - // aapt resource value: 0x7F0B00DA - public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427546; + // aapt resource value: 0x7f0700e1 + public static int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131165409; - // aapt resource value: 0x7F0B00DB - public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427547; + // aapt resource value: 0x7f0700e2 + public static int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131165410; - // aapt resource value: 0x7F0B00DC - public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427548; + // aapt resource value: 0x7f0700e3 + public static int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131165411; - // aapt resource value: 0x7F0B00DD - public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427549; + // aapt resource value: 0x7f0700e4 + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131165412; - // aapt resource value: 0x7F0B00DE - public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131427550; + // aapt resource value: 0x7f0700e5 + public static int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131165413; - // aapt resource value: 0x7F0B00DF - public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427551; + // aapt resource value: 0x7f0700e6 + public static int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131165414; - // aapt resource value: 0x7F0B00E0 - public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131427552; + // aapt resource value: 0x7f0700e7 + public static int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131165415; - // aapt resource value: 0x7F0B00E1 - public static int TextAppearance_AppCompat_Widget_Button = 2131427553; + // aapt resource value: 0x7f0700e8 + public static int TextAppearance_AppCompat_Widget_Button = 2131165416; - // aapt resource value: 0x7F0B00E2 - public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427554; + // aapt resource value: 0x7f0700e9 + public static int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131165417; - // aapt resource value: 0x7F0B00E3 - public static int TextAppearance_AppCompat_Widget_Button_Colored = 2131427555; + // aapt resource value: 0x7f0700ea + public static int TextAppearance_AppCompat_Widget_Button_Colored = 2131165418; - // aapt resource value: 0x7F0B00E4 - public static int TextAppearance_AppCompat_Widget_Button_Inverse = 2131427556; + // aapt resource value: 0x7f0700eb + public static int TextAppearance_AppCompat_Widget_Button_Inverse = 2131165419; - // aapt resource value: 0x7F0B00E5 - public static int TextAppearance_AppCompat_Widget_DropDownItem = 2131427557; + // aapt resource value: 0x7f0700ec + public static int TextAppearance_AppCompat_Widget_DropDownItem = 2131165420; - // aapt resource value: 0x7F0B00E6 - public static int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427558; + // aapt resource value: 0x7f0700ed + public static int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131165421; - // aapt resource value: 0x7F0B00E7 - public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427559; + // aapt resource value: 0x7f0700ee + public static int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131165422; - // aapt resource value: 0x7F0B00E8 - public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427560; + // aapt resource value: 0x7f0700ef + public static int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131165423; - // aapt resource value: 0x7F0B00E9 - public static int TextAppearance_AppCompat_Widget_Switch = 2131427561; + // aapt resource value: 0x7f0700f0 + public static int TextAppearance_AppCompat_Widget_Switch = 2131165424; - // aapt resource value: 0x7F0B00EA - public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427562; + // aapt resource value: 0x7f0700f1 + public static int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131165425; - // aapt resource value: 0x7F0B00EB - public static int TextAppearance_Compat_Notification = 2131427563; + // aapt resource value: 0x7f070153 + public static int TextAppearance_Compat_Notification = 2131165523; - // aapt resource value: 0x7F0B00EC - public static int TextAppearance_Compat_Notification_Info = 2131427564; + // aapt resource value: 0x7f070154 + public static int TextAppearance_Compat_Notification_Info = 2131165524; - // aapt resource value: 0x7F0B00ED - public static int TextAppearance_Compat_Notification_Line2 = 2131427565; + // aapt resource value: 0x7f070159 + public static int TextAppearance_Compat_Notification_Line2 = 2131165529; - // aapt resource value: 0x7F0B00EE - public static int TextAppearance_Compat_Notification_Time = 2131427566; + // aapt resource value: 0x7f070155 + public static int TextAppearance_Compat_Notification_Time = 2131165525; - // aapt resource value: 0x7F0B00EF - public static int TextAppearance_Compat_Notification_Title = 2131427567; + // aapt resource value: 0x7f070156 + public static int TextAppearance_Compat_Notification_Title = 2131165526; - // aapt resource value: 0x7F0B00F0 - public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427568; + // aapt resource value: 0x7f0700f2 + public static int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131165426; - // aapt resource value: 0x7F0B00F1 - public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427569; + // aapt resource value: 0x7f0700f3 + public static int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131165427; - // aapt resource value: 0x7F0B00F2 - public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427570; + // aapt resource value: 0x7f0700f4 + public static int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131165428; - // aapt resource value: 0x7F0B0108 - public static int ThemeOverlay_AppCompat = 2131427592; + // aapt resource value: 0x7f0700f5 + public static int Theme_AppCompat = 2131165429; - // aapt resource value: 0x7F0B0109 - public static int ThemeOverlay_AppCompat_ActionBar = 2131427593; + // aapt resource value: 0x7f0700f6 + public static int Theme_AppCompat_CompactMenu = 2131165430; - // aapt resource value: 0x7F0B010A - public static int ThemeOverlay_AppCompat_Dark = 2131427594; + // aapt resource value: 0x7f070004 + public static int Theme_AppCompat_DayNight = 2131165188; - // aapt resource value: 0x7F0B010B - public static int ThemeOverlay_AppCompat_Dark_ActionBar = 2131427595; + // aapt resource value: 0x7f070005 + public static int Theme_AppCompat_DayNight_DarkActionBar = 2131165189; - // aapt resource value: 0x7F0B010C - public static int ThemeOverlay_AppCompat_Dialog = 2131427596; + // aapt resource value: 0x7f070006 + public static int Theme_AppCompat_DayNight_Dialog = 2131165190; - // aapt resource value: 0x7F0B010D - public static int ThemeOverlay_AppCompat_Dialog_Alert = 2131427597; + // aapt resource value: 0x7f070007 + public static int Theme_AppCompat_DayNight_Dialog_Alert = 2131165191; - // aapt resource value: 0x7F0B010E - public static int ThemeOverlay_AppCompat_Light = 2131427598; + // aapt resource value: 0x7f070008 + public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131165192; - // aapt resource value: 0x7F0B00F3 - public static int Theme_AppCompat = 2131427571; + // aapt resource value: 0x7f070009 + public static int Theme_AppCompat_DayNight_DialogWhenLarge = 2131165193; - // aapt resource value: 0x7F0B00F4 - public static int Theme_AppCompat_CompactMenu = 2131427572; + // aapt resource value: 0x7f07000a + public static int Theme_AppCompat_DayNight_NoActionBar = 2131165194; - // aapt resource value: 0x7F0B00F5 - public static int Theme_AppCompat_DayNight = 2131427573; + // aapt resource value: 0x7f0700f7 + public static int Theme_AppCompat_Dialog = 2131165431; - // aapt resource value: 0x7F0B00F6 - public static int Theme_AppCompat_DayNight_DarkActionBar = 2131427574; + // aapt resource value: 0x7f0700f8 + public static int Theme_AppCompat_Dialog_Alert = 2131165432; - // aapt resource value: 0x7F0B00F7 - public static int Theme_AppCompat_DayNight_Dialog = 2131427575; + // aapt resource value: 0x7f0700f9 + public static int Theme_AppCompat_Dialog_MinWidth = 2131165433; - // aapt resource value: 0x7F0B00FA - public static int Theme_AppCompat_DayNight_DialogWhenLarge = 2131427578; + // aapt resource value: 0x7f0700fa + public static int Theme_AppCompat_DialogWhenLarge = 2131165434; - // aapt resource value: 0x7F0B00F8 - public static int Theme_AppCompat_DayNight_Dialog_Alert = 2131427576; + // aapt resource value: 0x7f0700fb + public static int Theme_AppCompat_Light = 2131165435; - // aapt resource value: 0x7F0B00F9 - public static int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131427577; + // aapt resource value: 0x7f0700fc + public static int Theme_AppCompat_Light_DarkActionBar = 2131165436; - // aapt resource value: 0x7F0B00FB - public static int Theme_AppCompat_DayNight_NoActionBar = 2131427579; + // aapt resource value: 0x7f0700fd + public static int Theme_AppCompat_Light_Dialog = 2131165437; - // aapt resource value: 0x7F0B00FC - public static int Theme_AppCompat_Dialog = 2131427580; + // aapt resource value: 0x7f0700fe + public static int Theme_AppCompat_Light_Dialog_Alert = 2131165438; - // aapt resource value: 0x7F0B00FF - public static int Theme_AppCompat_DialogWhenLarge = 2131427583; + // aapt resource value: 0x7f0700ff + public static int Theme_AppCompat_Light_Dialog_MinWidth = 2131165439; - // aapt resource value: 0x7F0B00FD - public static int Theme_AppCompat_Dialog_Alert = 2131427581; + // aapt resource value: 0x7f070100 + public static int Theme_AppCompat_Light_DialogWhenLarge = 2131165440; - // aapt resource value: 0x7F0B00FE - public static int Theme_AppCompat_Dialog_MinWidth = 2131427582; + // aapt resource value: 0x7f070101 + public static int Theme_AppCompat_Light_NoActionBar = 2131165441; - // aapt resource value: 0x7F0B0100 - public static int Theme_AppCompat_Light = 2131427584; + // aapt resource value: 0x7f070102 + public static int Theme_AppCompat_NoActionBar = 2131165442; - // aapt resource value: 0x7F0B0101 - public static int Theme_AppCompat_Light_DarkActionBar = 2131427585; + // aapt resource value: 0x7f070103 + public static int ThemeOverlay_AppCompat = 2131165443; - // aapt resource value: 0x7F0B0102 - public static int Theme_AppCompat_Light_Dialog = 2131427586; + // aapt resource value: 0x7f070104 + public static int ThemeOverlay_AppCompat_ActionBar = 2131165444; - // aapt resource value: 0x7F0B0105 - public static int Theme_AppCompat_Light_DialogWhenLarge = 2131427589; + // aapt resource value: 0x7f070105 + public static int ThemeOverlay_AppCompat_Dark = 2131165445; - // aapt resource value: 0x7F0B0103 - public static int Theme_AppCompat_Light_Dialog_Alert = 2131427587; + // aapt resource value: 0x7f070106 + public static int ThemeOverlay_AppCompat_Dark_ActionBar = 2131165446; - // aapt resource value: 0x7F0B0104 - public static int Theme_AppCompat_Light_Dialog_MinWidth = 2131427588; + // aapt resource value: 0x7f070107 + public static int ThemeOverlay_AppCompat_Dialog = 2131165447; - // aapt resource value: 0x7F0B0106 - public static int Theme_AppCompat_Light_NoActionBar = 2131427590; + // aapt resource value: 0x7f070108 + public static int ThemeOverlay_AppCompat_Dialog_Alert = 2131165448; - // aapt resource value: 0x7F0B0107 - public static int Theme_AppCompat_NoActionBar = 2131427591; + // aapt resource value: 0x7f070109 + public static int ThemeOverlay_AppCompat_Light = 2131165449; - // aapt resource value: 0x7F0B010F - public static int Widget_AppCompat_ActionBar = 2131427599; + // aapt resource value: 0x7f07010a + public static int Widget_AppCompat_ActionBar = 2131165450; - // aapt resource value: 0x7F0B0110 - public static int Widget_AppCompat_ActionBar_Solid = 2131427600; + // aapt resource value: 0x7f07010b + public static int Widget_AppCompat_ActionBar_Solid = 2131165451; - // aapt resource value: 0x7F0B0111 - public static int Widget_AppCompat_ActionBar_TabBar = 2131427601; + // aapt resource value: 0x7f07010c + public static int Widget_AppCompat_ActionBar_TabBar = 2131165452; - // aapt resource value: 0x7F0B0112 - public static int Widget_AppCompat_ActionBar_TabText = 2131427602; + // aapt resource value: 0x7f07010d + public static int Widget_AppCompat_ActionBar_TabText = 2131165453; - // aapt resource value: 0x7F0B0113 - public static int Widget_AppCompat_ActionBar_TabView = 2131427603; + // aapt resource value: 0x7f07010e + public static int Widget_AppCompat_ActionBar_TabView = 2131165454; - // aapt resource value: 0x7F0B0114 - public static int Widget_AppCompat_ActionButton = 2131427604; + // aapt resource value: 0x7f07010f + public static int Widget_AppCompat_ActionButton = 2131165455; - // aapt resource value: 0x7F0B0115 - public static int Widget_AppCompat_ActionButton_CloseMode = 2131427605; + // aapt resource value: 0x7f070110 + public static int Widget_AppCompat_ActionButton_CloseMode = 2131165456; - // aapt resource value: 0x7F0B0116 - public static int Widget_AppCompat_ActionButton_Overflow = 2131427606; + // aapt resource value: 0x7f070111 + public static int Widget_AppCompat_ActionButton_Overflow = 2131165457; - // aapt resource value: 0x7F0B0117 - public static int Widget_AppCompat_ActionMode = 2131427607; + // aapt resource value: 0x7f070112 + public static int Widget_AppCompat_ActionMode = 2131165458; - // aapt resource value: 0x7F0B0118 - public static int Widget_AppCompat_ActivityChooserView = 2131427608; + // aapt resource value: 0x7f070113 + public static int Widget_AppCompat_ActivityChooserView = 2131165459; - // aapt resource value: 0x7F0B0119 - public static int Widget_AppCompat_AutoCompleteTextView = 2131427609; + // aapt resource value: 0x7f070114 + public static int Widget_AppCompat_AutoCompleteTextView = 2131165460; - // aapt resource value: 0x7F0B011A - public static int Widget_AppCompat_Button = 2131427610; + // aapt resource value: 0x7f070115 + public static int Widget_AppCompat_Button = 2131165461; - // aapt resource value: 0x7F0B0120 - public static int Widget_AppCompat_ButtonBar = 2131427616; + // aapt resource value: 0x7f070116 + public static int Widget_AppCompat_Button_Borderless = 2131165462; - // aapt resource value: 0x7F0B0121 - public static int Widget_AppCompat_ButtonBar_AlertDialog = 2131427617; + // aapt resource value: 0x7f070117 + public static int Widget_AppCompat_Button_Borderless_Colored = 2131165463; - // aapt resource value: 0x7F0B011B - public static int Widget_AppCompat_Button_Borderless = 2131427611; + // aapt resource value: 0x7f070118 + public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131165464; - // aapt resource value: 0x7F0B011C - public static int Widget_AppCompat_Button_Borderless_Colored = 2131427612; + // aapt resource value: 0x7f070119 + public static int Widget_AppCompat_Button_Colored = 2131165465; - // aapt resource value: 0x7F0B011D - public static int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427613; + // aapt resource value: 0x7f07011a + public static int Widget_AppCompat_Button_Small = 2131165466; - // aapt resource value: 0x7F0B011E - public static int Widget_AppCompat_Button_Colored = 2131427614; + // aapt resource value: 0x7f07011b + public static int Widget_AppCompat_ButtonBar = 2131165467; - // aapt resource value: 0x7F0B011F - public static int Widget_AppCompat_Button_Small = 2131427615; + // aapt resource value: 0x7f07011c + public static int Widget_AppCompat_ButtonBar_AlertDialog = 2131165468; - // aapt resource value: 0x7F0B0122 - public static int Widget_AppCompat_CompoundButton_CheckBox = 2131427618; + // aapt resource value: 0x7f07011d + public static int Widget_AppCompat_CompoundButton_CheckBox = 2131165469; - // aapt resource value: 0x7F0B0123 - public static int Widget_AppCompat_CompoundButton_RadioButton = 2131427619; + // aapt resource value: 0x7f07011e + public static int Widget_AppCompat_CompoundButton_RadioButton = 2131165470; - // aapt resource value: 0x7F0B0124 - public static int Widget_AppCompat_CompoundButton_Switch = 2131427620; + // aapt resource value: 0x7f07011f + public static int Widget_AppCompat_CompoundButton_Switch = 2131165471; - // aapt resource value: 0x7F0B0125 - public static int Widget_AppCompat_DrawerArrowToggle = 2131427621; + // aapt resource value: 0x7f070120 + public static int Widget_AppCompat_DrawerArrowToggle = 2131165472; - // aapt resource value: 0x7F0B0126 - public static int Widget_AppCompat_DropDownItem_Spinner = 2131427622; + // aapt resource value: 0x7f070121 + public static int Widget_AppCompat_DropDownItem_Spinner = 2131165473; - // aapt resource value: 0x7F0B0127 - public static int Widget_AppCompat_EditText = 2131427623; + // aapt resource value: 0x7f070122 + public static int Widget_AppCompat_EditText = 2131165474; - // aapt resource value: 0x7F0B0128 - public static int Widget_AppCompat_ImageButton = 2131427624; + // aapt resource value: 0x7f070123 + public static int Widget_AppCompat_ImageButton = 2131165475; - // aapt resource value: 0x7F0B0129 - public static int Widget_AppCompat_Light_ActionBar = 2131427625; + // aapt resource value: 0x7f070124 + public static int Widget_AppCompat_Light_ActionBar = 2131165476; - // aapt resource value: 0x7F0B012A - public static int Widget_AppCompat_Light_ActionBar_Solid = 2131427626; + // aapt resource value: 0x7f070125 + public static int Widget_AppCompat_Light_ActionBar_Solid = 2131165477; - // aapt resource value: 0x7F0B012B - public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131427627; + // aapt resource value: 0x7f070126 + public static int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131165478; - // aapt resource value: 0x7F0B012C - public static int Widget_AppCompat_Light_ActionBar_TabBar = 2131427628; + // aapt resource value: 0x7f070127 + public static int Widget_AppCompat_Light_ActionBar_TabBar = 2131165479; - // aapt resource value: 0x7F0B012D - public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131427629; + // aapt resource value: 0x7f070128 + public static int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131165480; - // aapt resource value: 0x7F0B012E - public static int Widget_AppCompat_Light_ActionBar_TabText = 2131427630; + // aapt resource value: 0x7f070129 + public static int Widget_AppCompat_Light_ActionBar_TabText = 2131165481; - // aapt resource value: 0x7F0B012F - public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427631; + // aapt resource value: 0x7f07012a + public static int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131165482; - // aapt resource value: 0x7F0B0130 - public static int Widget_AppCompat_Light_ActionBar_TabView = 2131427632; + // aapt resource value: 0x7f07012b + public static int Widget_AppCompat_Light_ActionBar_TabView = 2131165483; - // aapt resource value: 0x7F0B0131 - public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131427633; + // aapt resource value: 0x7f07012c + public static int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131165484; - // aapt resource value: 0x7F0B0132 - public static int Widget_AppCompat_Light_ActionButton = 2131427634; + // aapt resource value: 0x7f07012d + public static int Widget_AppCompat_Light_ActionButton = 2131165485; - // aapt resource value: 0x7F0B0133 - public static int Widget_AppCompat_Light_ActionButton_CloseMode = 2131427635; + // aapt resource value: 0x7f07012e + public static int Widget_AppCompat_Light_ActionButton_CloseMode = 2131165486; - // aapt resource value: 0x7F0B0134 - public static int Widget_AppCompat_Light_ActionButton_Overflow = 2131427636; + // aapt resource value: 0x7f07012f + public static int Widget_AppCompat_Light_ActionButton_Overflow = 2131165487; - // aapt resource value: 0x7F0B0135 - public static int Widget_AppCompat_Light_ActionMode_Inverse = 2131427637; + // aapt resource value: 0x7f070130 + public static int Widget_AppCompat_Light_ActionMode_Inverse = 2131165488; - // aapt resource value: 0x7F0B0136 - public static int Widget_AppCompat_Light_ActivityChooserView = 2131427638; + // aapt resource value: 0x7f070131 + public static int Widget_AppCompat_Light_ActivityChooserView = 2131165489; - // aapt resource value: 0x7F0B0137 - public static int Widget_AppCompat_Light_AutoCompleteTextView = 2131427639; + // aapt resource value: 0x7f070132 + public static int Widget_AppCompat_Light_AutoCompleteTextView = 2131165490; - // aapt resource value: 0x7F0B0138 - public static int Widget_AppCompat_Light_DropDownItem_Spinner = 2131427640; + // aapt resource value: 0x7f070133 + public static int Widget_AppCompat_Light_DropDownItem_Spinner = 2131165491; - // aapt resource value: 0x7F0B0139 - public static int Widget_AppCompat_Light_ListPopupWindow = 2131427641; + // aapt resource value: 0x7f070134 + public static int Widget_AppCompat_Light_ListPopupWindow = 2131165492; - // aapt resource value: 0x7F0B013A - public static int Widget_AppCompat_Light_ListView_DropDown = 2131427642; + // aapt resource value: 0x7f070135 + public static int Widget_AppCompat_Light_ListView_DropDown = 2131165493; - // aapt resource value: 0x7F0B013B - public static int Widget_AppCompat_Light_PopupMenu = 2131427643; + // aapt resource value: 0x7f070136 + public static int Widget_AppCompat_Light_PopupMenu = 2131165494; - // aapt resource value: 0x7F0B013C - public static int Widget_AppCompat_Light_PopupMenu_Overflow = 2131427644; + // aapt resource value: 0x7f070137 + public static int Widget_AppCompat_Light_PopupMenu_Overflow = 2131165495; - // aapt resource value: 0x7F0B013D - public static int Widget_AppCompat_Light_SearchView = 2131427645; + // aapt resource value: 0x7f070138 + public static int Widget_AppCompat_Light_SearchView = 2131165496; - // aapt resource value: 0x7F0B013E - public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131427646; + // aapt resource value: 0x7f070139 + public static int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131165497; - // aapt resource value: 0x7F0B013F - public static int Widget_AppCompat_ListMenuView = 2131427647; + // aapt resource value: 0x7f07013a + public static int Widget_AppCompat_ListMenuView = 2131165498; - // aapt resource value: 0x7F0B0140 - public static int Widget_AppCompat_ListPopupWindow = 2131427648; + // aapt resource value: 0x7f07013b + public static int Widget_AppCompat_ListPopupWindow = 2131165499; - // aapt resource value: 0x7F0B0141 - public static int Widget_AppCompat_ListView = 2131427649; + // aapt resource value: 0x7f07013c + public static int Widget_AppCompat_ListView = 2131165500; - // aapt resource value: 0x7F0B0142 - public static int Widget_AppCompat_ListView_DropDown = 2131427650; + // aapt resource value: 0x7f07013d + public static int Widget_AppCompat_ListView_DropDown = 2131165501; - // aapt resource value: 0x7F0B0143 - public static int Widget_AppCompat_ListView_Menu = 2131427651; + // aapt resource value: 0x7f07013e + public static int Widget_AppCompat_ListView_Menu = 2131165502; - // aapt resource value: 0x7F0B0144 - public static int Widget_AppCompat_PopupMenu = 2131427652; + // aapt resource value: 0x7f07013f + public static int Widget_AppCompat_PopupMenu = 2131165503; - // aapt resource value: 0x7F0B0145 - public static int Widget_AppCompat_PopupMenu_Overflow = 2131427653; + // aapt resource value: 0x7f070140 + public static int Widget_AppCompat_PopupMenu_Overflow = 2131165504; - // aapt resource value: 0x7F0B0146 - public static int Widget_AppCompat_PopupWindow = 2131427654; + // aapt resource value: 0x7f070141 + public static int Widget_AppCompat_PopupWindow = 2131165505; - // aapt resource value: 0x7F0B0147 - public static int Widget_AppCompat_ProgressBar = 2131427655; + // aapt resource value: 0x7f070142 + public static int Widget_AppCompat_ProgressBar = 2131165506; - // aapt resource value: 0x7F0B0148 - public static int Widget_AppCompat_ProgressBar_Horizontal = 2131427656; + // aapt resource value: 0x7f070143 + public static int Widget_AppCompat_ProgressBar_Horizontal = 2131165507; - // aapt resource value: 0x7F0B0149 - public static int Widget_AppCompat_RatingBar = 2131427657; + // aapt resource value: 0x7f070144 + public static int Widget_AppCompat_RatingBar = 2131165508; - // aapt resource value: 0x7F0B014A - public static int Widget_AppCompat_RatingBar_Indicator = 2131427658; + // aapt resource value: 0x7f070145 + public static int Widget_AppCompat_RatingBar_Indicator = 2131165509; - // aapt resource value: 0x7F0B014B - public static int Widget_AppCompat_RatingBar_Small = 2131427659; + // aapt resource value: 0x7f070146 + public static int Widget_AppCompat_RatingBar_Small = 2131165510; - // aapt resource value: 0x7F0B014C - public static int Widget_AppCompat_SearchView = 2131427660; + // aapt resource value: 0x7f070147 + public static int Widget_AppCompat_SearchView = 2131165511; - // aapt resource value: 0x7F0B014D - public static int Widget_AppCompat_SearchView_ActionBar = 2131427661; + // aapt resource value: 0x7f070148 + public static int Widget_AppCompat_SearchView_ActionBar = 2131165512; - // aapt resource value: 0x7F0B014E - public static int Widget_AppCompat_SeekBar = 2131427662; + // aapt resource value: 0x7f070149 + public static int Widget_AppCompat_SeekBar = 2131165513; - // aapt resource value: 0x7F0B014F - public static int Widget_AppCompat_SeekBar_Discrete = 2131427663; + // aapt resource value: 0x7f07014a + public static int Widget_AppCompat_SeekBar_Discrete = 2131165514; - // aapt resource value: 0x7F0B0150 - public static int Widget_AppCompat_Spinner = 2131427664; + // aapt resource value: 0x7f07014b + public static int Widget_AppCompat_Spinner = 2131165515; - // aapt resource value: 0x7F0B0151 - public static int Widget_AppCompat_Spinner_DropDown = 2131427665; + // aapt resource value: 0x7f07014c + public static int Widget_AppCompat_Spinner_DropDown = 2131165516; - // aapt resource value: 0x7F0B0152 - public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131427666; + // aapt resource value: 0x7f07014d + public static int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131165517; - // aapt resource value: 0x7F0B0153 - public static int Widget_AppCompat_Spinner_Underlined = 2131427667; + // aapt resource value: 0x7f07014e + public static int Widget_AppCompat_Spinner_Underlined = 2131165518; - // aapt resource value: 0x7F0B0154 - public static int Widget_AppCompat_TextView_SpinnerItem = 2131427668; + // aapt resource value: 0x7f07014f + public static int Widget_AppCompat_TextView_SpinnerItem = 2131165519; - // aapt resource value: 0x7F0B0155 - public static int Widget_AppCompat_Toolbar = 2131427669; + // aapt resource value: 0x7f070150 + public static int Widget_AppCompat_Toolbar = 2131165520; - // aapt resource value: 0x7F0B0156 - public static int Widget_AppCompat_Toolbar_Button_Navigation = 2131427670; + // aapt resource value: 0x7f070151 + public static int Widget_AppCompat_Toolbar_Button_Navigation = 2131165521; - // aapt resource value: 0x7F0B0157 - public static int Widget_Compat_NotificationActionContainer = 2131427671; + // aapt resource value: 0x7f070157 + public static int Widget_Compat_NotificationActionContainer = 2131165527; - // aapt resource value: 0x7F0B0158 - public static int Widget_Compat_NotificationActionText = 2131427672; + // aapt resource value: 0x7f070158 + public static int Widget_Compat_NotificationActionText = 2131165528; - // aapt resource value: 0x7F0B0159 - public static int Widget_Support_CoordinatorLayout = 2131427673; + // aapt resource value: 0x7f070152 + public static int Widget_Support_CoordinatorLayout = 2131165522; static Style() { @@ -3614,217 +3683,208 @@ namespace StardewModdingAPI public partial class Styleable { - // aapt resource value: { 0x7F020031,0x7F020032,0x7F020033,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F02005F,0x7F020064,0x7F020065,0x7F020070,0x7F020080,0x7F020081,0x7F020082,0x7F020083,0x7F020084,0x7F020089,0x7F02008C,0x7F0200A2,0x7F0200A9,0x7F0200B4,0x7F0200B7,0x7F0200B8,0x7F0200D3,0x7F0200D6,0x7F0200F1,0x7F0200FA } public static int[] ActionBar = new int[] { - 2130837553, - 2130837554, - 2130837555, - 2130837591, - 2130837592, - 2130837593, - 2130837594, - 2130837595, - 2130837596, - 2130837599, - 2130837604, - 2130837605, - 2130837616, - 2130837632, - 2130837633, - 2130837634, - 2130837635, - 2130837636, - 2130837641, - 2130837644, - 2130837666, - 2130837673, - 2130837684, - 2130837687, - 2130837688, - 2130837715, - 2130837718, - 2130837745, - 2130837754}; + 2130771969, + 2130771971, + 2130771972, + 2130771973, + 2130771974, + 2130771975, + 2130771976, + 2130771977, + 2130771978, + 2130771979, + 2130771980, + 2130771981, + 2130771982, + 2130771983, + 2130771984, + 2130771985, + 2130771986, + 2130771987, + 2130771988, + 2130771989, + 2130771990, + 2130771991, + 2130771992, + 2130771993, + 2130771994, + 2130771995, + 2130771996, + 2130771997, + 2130772072}; + + // aapt resource value: 10 + public static int ActionBar_background = 10; + + // aapt resource value: 12 + public static int ActionBar_backgroundSplit = 12; + + // aapt resource value: 11 + public static int ActionBar_backgroundStacked = 11; + + // aapt resource value: 21 + public static int ActionBar_contentInsetEnd = 21; + + // aapt resource value: 25 + public static int ActionBar_contentInsetEndWithActions = 25; + + // aapt resource value: 22 + public static int ActionBar_contentInsetLeft = 22; + + // aapt resource value: 23 + public static int ActionBar_contentInsetRight = 23; + + // aapt resource value: 20 + public static int ActionBar_contentInsetStart = 20; + + // aapt resource value: 24 + public static int ActionBar_contentInsetStartWithNavigation = 24; + + // aapt resource value: 13 + public static int ActionBar_customNavigationLayout = 13; + + // aapt resource value: 3 + public static int ActionBar_displayOptions = 3; + + // aapt resource value: 9 + public static int ActionBar_divider = 9; + + // aapt resource value: 26 + public static int ActionBar_elevation = 26; + + // aapt resource value: 0 + public static int ActionBar_height = 0; + + // aapt resource value: 19 + public static int ActionBar_hideOnContentScroll = 19; + + // aapt resource value: 28 + public static int ActionBar_homeAsUpIndicator = 28; + + // aapt resource value: 14 + public static int ActionBar_homeLayout = 14; + + // aapt resource value: 7 + public static int ActionBar_icon = 7; + + // aapt resource value: 16 + public static int ActionBar_indeterminateProgressStyle = 16; + + // aapt resource value: 18 + public static int ActionBar_itemPadding = 18; + + // aapt resource value: 8 + public static int ActionBar_logo = 8; + + // aapt resource value: 2 + public static int ActionBar_navigationMode = 2; + + // aapt resource value: 27 + public static int ActionBar_popupTheme = 27; + + // aapt resource value: 17 + public static int ActionBar_progressBarPadding = 17; + + // aapt resource value: 15 + public static int ActionBar_progressBarStyle = 15; + + // aapt resource value: 4 + public static int ActionBar_subtitle = 4; + + // aapt resource value: 6 + public static int ActionBar_subtitleTextStyle = 6; + + // aapt resource value: 1 + public static int ActionBar_title = 1; + + // aapt resource value: 5 + public static int ActionBar_titleTextStyle = 5; - // aapt resource value: { 0x10100B3 } public static int[] ActionBarLayout = new int[] { 16842931}; // aapt resource value: 0 public static int ActionBarLayout_android_layout_gravity = 0; - // aapt resource value: 0 - public static int ActionBar_background = 0; - - // aapt resource value: 1 - public static int ActionBar_backgroundSplit = 1; - - // aapt resource value: 2 - public static int ActionBar_backgroundStacked = 2; - - // aapt resource value: 3 - public static int ActionBar_contentInsetEnd = 3; - - // aapt resource value: 4 - public static int ActionBar_contentInsetEndWithActions = 4; - - // aapt resource value: 5 - public static int ActionBar_contentInsetLeft = 5; - - // aapt resource value: 6 - public static int ActionBar_contentInsetRight = 6; - - // aapt resource value: 7 - public static int ActionBar_contentInsetStart = 7; - - // aapt resource value: 8 - public static int ActionBar_contentInsetStartWithNavigation = 8; - - // aapt resource value: 9 - public static int ActionBar_customNavigationLayout = 9; - - // aapt resource value: 10 - public static int ActionBar_displayOptions = 10; - - // aapt resource value: 11 - public static int ActionBar_divider = 11; - - // aapt resource value: 12 - public static int ActionBar_elevation = 12; - - // aapt resource value: 13 - public static int ActionBar_height = 13; - - // aapt resource value: 14 - public static int ActionBar_hideOnContentScroll = 14; - - // aapt resource value: 15 - public static int ActionBar_homeAsUpIndicator = 15; - - // aapt resource value: 16 - public static int ActionBar_homeLayout = 16; - - // aapt resource value: 17 - public static int ActionBar_icon = 17; - - // aapt resource value: 18 - public static int ActionBar_indeterminateProgressStyle = 18; - - // aapt resource value: 19 - public static int ActionBar_itemPadding = 19; - - // aapt resource value: 20 - public static int ActionBar_logo = 20; - - // aapt resource value: 21 - public static int ActionBar_navigationMode = 21; - - // aapt resource value: 22 - public static int ActionBar_popupTheme = 22; - - // aapt resource value: 23 - public static int ActionBar_progressBarPadding = 23; - - // aapt resource value: 24 - public static int ActionBar_progressBarStyle = 24; - - // aapt resource value: 25 - public static int ActionBar_subtitle = 25; - - // aapt resource value: 26 - public static int ActionBar_subtitleTextStyle = 26; - - // aapt resource value: 27 - public static int ActionBar_title = 27; - - // aapt resource value: 28 - public static int ActionBar_titleTextStyle = 28; - - // aapt resource value: { 0x101013F } public static int[] ActionMenuItemView = new int[] { 16843071}; // aapt resource value: 0 public static int ActionMenuItemView_android_minWidth = 0; - // aapt resource value: { 0xFFFFFFFF } - public static int[] ActionMenuView = new int[] { - -1}; + public static int[] ActionMenuView; - // aapt resource value: { 0x7F020031,0x7F020032,0x7F020047,0x7F020080,0x7F0200D6,0x7F0200FA } public static int[] ActionMode = new int[] { - 2130837553, - 2130837554, - 2130837575, - 2130837632, - 2130837718, - 2130837754}; - - // aapt resource value: 0 - public static int ActionMode_background = 0; - - // aapt resource value: 1 - public static int ActionMode_backgroundSplit = 1; - - // aapt resource value: 2 - public static int ActionMode_closeItemLayout = 2; + 2130771969, + 2130771975, + 2130771976, + 2130771980, + 2130771982, + 2130771998}; // aapt resource value: 3 - public static int ActionMode_height = 3; + public static int ActionMode_background = 3; // aapt resource value: 4 - public static int ActionMode_subtitleTextStyle = 4; + public static int ActionMode_backgroundSplit = 4; // aapt resource value: 5 - public static int ActionMode_titleTextStyle = 5; - - // aapt resource value: { 0x7F020071,0x7F02008A } - public static int[] ActivityChooserView = new int[] { - 2130837617, - 2130837642}; + public static int ActionMode_closeItemLayout = 5; // aapt resource value: 0 - public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static int ActionMode_height = 0; + + // aapt resource value: 2 + public static int ActionMode_subtitleTextStyle = 2; // aapt resource value: 1 - public static int ActivityChooserView_initialActivityCount = 1; + public static int ActionMode_titleTextStyle = 1; + + public static int[] ActivityChooserView = new int[] { + 2130771999, + 2130772000}; + + // aapt resource value: 1 + public static int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; + + // aapt resource value: 0 + public static int ActivityChooserView_initialActivityCount = 0; - // aapt resource value: { 0x10100F2,0x7F02003E,0x7F02003F,0x7F020099,0x7F02009A,0x7F0200A6,0x7F0200C8,0x7F0200C9 } public static int[] AlertDialog = new int[] { 16842994, - 2130837566, - 2130837567, - 2130837657, - 2130837658, - 2130837670, - 2130837704, - 2130837705}; + 2130772001, + 2130772002, + 2130772003, + 2130772004, + 2130772005, + 2130772006, + 2130772007}; // aapt resource value: 0 public static int AlertDialog_android_layout = 0; + // aapt resource value: 7 + public static int AlertDialog_buttonIconDimen = 7; + // aapt resource value: 1 - public static int AlertDialog_buttonIconDimen = 1; - - // aapt resource value: 2 - public static int AlertDialog_buttonPanelSideLayout = 2; - - // aapt resource value: 3 - public static int AlertDialog_listItemLayout = 3; - - // aapt resource value: 4 - public static int AlertDialog_listLayout = 4; + public static int AlertDialog_buttonPanelSideLayout = 1; // aapt resource value: 5 - public static int AlertDialog_multiChoiceItemLayout = 5; + public static int AlertDialog_listItemLayout = 5; + + // aapt resource value: 2 + public static int AlertDialog_listLayout = 2; + + // aapt resource value: 3 + public static int AlertDialog_multiChoiceItemLayout = 3; // aapt resource value: 6 public static int AlertDialog_showTitle = 6; - // aapt resource value: 7 - public static int AlertDialog_singleChoiceItemLayout = 7; + // aapt resource value: 4 + public static int AlertDialog_singleChoiceItemLayout = 4; - // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } public static int[] AnimatedStateListDrawableCompat = new int[] { 16843036, 16843156, @@ -3851,7 +3911,6 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int AnimatedStateListDrawableCompat_android_visible = 1; - // aapt resource value: { 0x10100D0,0x1010199 } public static int[] AnimatedStateListDrawableItem = new int[] { 16842960, 16843161}; @@ -3862,7 +3921,6 @@ namespace StardewModdingAPI // aapt resource value: 0 public static int AnimatedStateListDrawableItem_android_id = 0; - // aapt resource value: { 0x1010199,0x1010449,0x101044A,0x101044B } public static int[] AnimatedStateListDrawableTransition = new int[] { 16843161, 16843849, @@ -3881,12 +3939,11 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int AnimatedStateListDrawableTransition_android_toId = 1; - // aapt resource value: { 0x1010119,0x7F0200CE,0x7F0200EF,0x7F0200F0 } public static int[] AppCompatImageView = new int[] { 16843033, - 2130837710, - 2130837743, - 2130837744}; + 2130772008, + 2130772009, + 2130772010}; // aapt resource value: 0 public static int AppCompatImageView_android_src = 0; @@ -3900,12 +3957,11 @@ namespace StardewModdingAPI // aapt resource value: 3 public static int AppCompatImageView_tintMode = 3; - // aapt resource value: { 0x1010142,0x7F0200EC,0x7F0200ED,0x7F0200EE } public static int[] AppCompatSeekBar = new int[] { 16843074, - 2130837740, - 2130837741, - 2130837742}; + 2130772011, + 2130772012, + 2130772013}; // aapt resource value: 0 public static int AppCompatSeekBar_android_thumb = 0; @@ -3919,7 +3975,6 @@ namespace StardewModdingAPI // aapt resource value: 3 public static int AppCompatSeekBar_tickMarkTintMode = 3; - // aapt resource value: { 0x1010034,0x101016D,0x101016E,0x101016F,0x1010170,0x1010392,0x1010393 } public static int[] AppCompatTextHelper = new int[] { 16842804, 16843117, @@ -3950,281 +4005,279 @@ namespace StardewModdingAPI // aapt resource value: 0 public static int AppCompatTextHelper_android_textAppearance = 0; - // aapt resource value: { 0x1010034,0x7F02002C,0x7F02002D,0x7F02002E,0x7F02002F,0x7F020030,0x7F020072,0x7F020074,0x7F02008E,0x7F020096,0x7F0200DC } public static int[] AppCompatTextView = new int[] { 16842804, - 2130837548, - 2130837549, - 2130837550, - 2130837551, - 2130837552, - 2130837618, - 2130837620, - 2130837646, - 2130837654, - 2130837724}; + 2130772014, + 2130772015, + 2130772016, + 2130772017, + 2130772018, + 2130772019, + 2130772020, + 2130772021, + 2130772022, + 2130772023}; // aapt resource value: 0 public static int AppCompatTextView_android_textAppearance = 0; - // aapt resource value: 1 - public static int AppCompatTextView_autoSizeMaxTextSize = 1; - - // aapt resource value: 2 - public static int AppCompatTextView_autoSizeMinTextSize = 2; - - // aapt resource value: 3 - public static int AppCompatTextView_autoSizePresetSizes = 3; - - // aapt resource value: 4 - public static int AppCompatTextView_autoSizeStepGranularity = 4; + // aapt resource value: 6 + public static int AppCompatTextView_autoSizeMaxTextSize = 6; // aapt resource value: 5 - public static int AppCompatTextView_autoSizeTextType = 5; + public static int AppCompatTextView_autoSizeMinTextSize = 5; - // aapt resource value: 6 - public static int AppCompatTextView_firstBaselineToTopHeight = 6; + // aapt resource value: 4 + public static int AppCompatTextView_autoSizePresetSizes = 4; + + // aapt resource value: 3 + public static int AppCompatTextView_autoSizeStepGranularity = 3; + + // aapt resource value: 2 + public static int AppCompatTextView_autoSizeTextType = 2; + + // aapt resource value: 9 + public static int AppCompatTextView_firstBaselineToTopHeight = 9; // aapt resource value: 7 public static int AppCompatTextView_fontFamily = 7; - // aapt resource value: 8 - public static int AppCompatTextView_lastBaselineToBottomHeight = 8; - - // aapt resource value: 9 - public static int AppCompatTextView_lineHeight = 9; - // aapt resource value: 10 - public static int AppCompatTextView_textAllCaps = 10; + public static int AppCompatTextView_lastBaselineToBottomHeight = 10; + + // aapt resource value: 8 + public static int AppCompatTextView_lineHeight = 8; + + // aapt resource value: 1 + public static int AppCompatTextView_textAllCaps = 1; - // aapt resource value: { 0x1010057,0x10100AE,0x7F020000,0x7F020001,0x7F020002,0x7F020003,0x7F020004,0x7F020005,0x7F020006,0x7F020007,0x7F020008,0x7F020009,0x7F02000A,0x7F02000B,0x7F02000C,0x7F02000E,0x7F02000F,0x7F020010,0x7F020011,0x7F020012,0x7F020013,0x7F020014,0x7F020015,0x7F020016,0x7F020017,0x7F020018,0x7F020019,0x7F02001A,0x7F02001B,0x7F02001C,0x7F02001D,0x7F02001E,0x7F020021,0x7F020022,0x7F020023,0x7F020024,0x7F020025,0x7F02002B,0x7F020037,0x7F020038,0x7F020039,0x7F02003A,0x7F02003B,0x7F02003C,0x7F020040,0x7F020041,0x7F020044,0x7F020045,0x7F02004B,0x7F02004C,0x7F02004D,0x7F02004E,0x7F02004F,0x7F020050,0x7F020051,0x7F020052,0x7F020053,0x7F020054,0x7F02005D,0x7F020061,0x7F020062,0x7F020063,0x7F020066,0x7F020068,0x7F02006B,0x7F02006C,0x7F02006D,0x7F02006E,0x7F02006F,0x7F020082,0x7F020088,0x7F020097,0x7F020098,0x7F02009B,0x7F02009C,0x7F02009D,0x7F02009E,0x7F02009F,0x7F0200A0,0x7F0200A1,0x7F0200B0,0x7F0200B1,0x7F0200B2,0x7F0200B3,0x7F0200B5,0x7F0200BB,0x7F0200BC,0x7F0200BD,0x7F0200BE,0x7F0200C1,0x7F0200C2,0x7F0200C3,0x7F0200C4,0x7F0200CB,0x7F0200CC,0x7F0200DA,0x7F0200DD,0x7F0200DE,0x7F0200DF,0x7F0200E0,0x7F0200E1,0x7F0200E2,0x7F0200E3,0x7F0200E4,0x7F0200E5,0x7F0200E6,0x7F0200FB,0x7F0200FC,0x7F0200FD,0x7F0200FE,0x7F020104,0x7F020106,0x7F020107,0x7F020108,0x7F020109,0x7F02010A,0x7F02010B,0x7F02010C,0x7F02010D,0x7F02010E,0x7F02010F } public static int[] AppCompatTheme = new int[] { 16842839, 16842926, - 2130837504, - 2130837505, - 2130837506, - 2130837507, - 2130837508, - 2130837509, - 2130837510, - 2130837511, - 2130837512, - 2130837513, - 2130837514, - 2130837515, - 2130837516, - 2130837518, - 2130837519, - 2130837520, - 2130837521, - 2130837522, - 2130837523, - 2130837524, - 2130837525, - 2130837526, - 2130837527, - 2130837528, - 2130837529, - 2130837530, - 2130837531, - 2130837532, - 2130837533, - 2130837534, - 2130837537, - 2130837538, - 2130837539, - 2130837540, - 2130837541, - 2130837547, - 2130837559, - 2130837560, - 2130837561, - 2130837562, - 2130837563, - 2130837564, - 2130837568, - 2130837569, - 2130837572, - 2130837573, - 2130837579, - 2130837580, - 2130837581, - 2130837582, - 2130837583, - 2130837584, - 2130837585, - 2130837586, - 2130837587, - 2130837588, - 2130837597, - 2130837601, - 2130837602, - 2130837603, - 2130837606, - 2130837608, - 2130837611, - 2130837612, - 2130837613, - 2130837614, - 2130837615, - 2130837634, - 2130837640, - 2130837655, - 2130837656, - 2130837659, - 2130837660, - 2130837661, - 2130837662, - 2130837663, - 2130837664, - 2130837665, - 2130837680, - 2130837681, - 2130837682, - 2130837683, - 2130837685, - 2130837691, - 2130837692, - 2130837693, - 2130837694, - 2130837697, - 2130837698, - 2130837699, - 2130837700, - 2130837707, - 2130837708, - 2130837722, - 2130837725, - 2130837726, - 2130837727, - 2130837728, - 2130837729, - 2130837730, - 2130837731, - 2130837732, - 2130837733, - 2130837734, - 2130837755, - 2130837756, - 2130837757, - 2130837758, - 2130837764, - 2130837766, - 2130837767, - 2130837768, - 2130837769, - 2130837770, - 2130837771, - 2130837772, - 2130837773, - 2130837774, - 2130837775}; - - // aapt resource value: 2 - public static int AppCompatTheme_actionBarDivider = 2; - - // aapt resource value: 3 - public static int AppCompatTheme_actionBarItemBackground = 3; - - // aapt resource value: 4 - public static int AppCompatTheme_actionBarPopupTheme = 4; - - // aapt resource value: 5 - public static int AppCompatTheme_actionBarSize = 5; - - // aapt resource value: 6 - public static int AppCompatTheme_actionBarSplitStyle = 6; - - // aapt resource value: 7 - public static int AppCompatTheme_actionBarStyle = 7; - - // aapt resource value: 8 - public static int AppCompatTheme_actionBarTabBarStyle = 8; - - // aapt resource value: 9 - public static int AppCompatTheme_actionBarTabStyle = 9; - - // aapt resource value: 10 - public static int AppCompatTheme_actionBarTabTextStyle = 10; - - // aapt resource value: 11 - public static int AppCompatTheme_actionBarTheme = 11; - - // aapt resource value: 12 - public static int AppCompatTheme_actionBarWidgetTheme = 12; - - // aapt resource value: 13 - public static int AppCompatTheme_actionButtonStyle = 13; - - // aapt resource value: 14 - public static int AppCompatTheme_actionDropDownStyle = 14; - - // aapt resource value: 15 - public static int AppCompatTheme_actionMenuTextAppearance = 15; - - // aapt resource value: 16 - public static int AppCompatTheme_actionMenuTextColor = 16; - - // aapt resource value: 17 - public static int AppCompatTheme_actionModeBackground = 17; - - // aapt resource value: 18 - public static int AppCompatTheme_actionModeCloseButtonStyle = 18; - - // aapt resource value: 19 - public static int AppCompatTheme_actionModeCloseDrawable = 19; - - // aapt resource value: 20 - public static int AppCompatTheme_actionModeCopyDrawable = 20; - - // aapt resource value: 21 - public static int AppCompatTheme_actionModeCutDrawable = 21; - - // aapt resource value: 22 - public static int AppCompatTheme_actionModeFindDrawable = 22; + 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, + 2130772131, + 2130772132, + 2130772133, + 2130772134, + 2130772135, + 2130772136, + 2130772137, + 2130772138, + 2130772139, + 2130772140, + 2130772141, + 2130772142}; // aapt resource value: 23 - public static int AppCompatTheme_actionModePasteDrawable = 23; + public static int AppCompatTheme_actionBarDivider = 23; // aapt resource value: 24 - public static int AppCompatTheme_actionModePopupWindowStyle = 24; + public static int AppCompatTheme_actionBarItemBackground = 24; + + // aapt resource value: 17 + public static int AppCompatTheme_actionBarPopupTheme = 17; + + // aapt resource value: 22 + public static int AppCompatTheme_actionBarSize = 22; + + // aapt resource value: 19 + public static int AppCompatTheme_actionBarSplitStyle = 19; + + // aapt resource value: 18 + public static int AppCompatTheme_actionBarStyle = 18; + + // aapt resource value: 13 + public static int AppCompatTheme_actionBarTabBarStyle = 13; + + // aapt resource value: 12 + public static int AppCompatTheme_actionBarTabStyle = 12; + + // aapt resource value: 14 + public static int AppCompatTheme_actionBarTabTextStyle = 14; + + // aapt resource value: 20 + public static int AppCompatTheme_actionBarTheme = 20; + + // aapt resource value: 21 + public static int AppCompatTheme_actionBarWidgetTheme = 21; + + // aapt resource value: 51 + public static int AppCompatTheme_actionButtonStyle = 51; + + // aapt resource value: 47 + public static int AppCompatTheme_actionDropDownStyle = 47; // aapt resource value: 25 - public static int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static int AppCompatTheme_actionMenuTextAppearance = 25; // aapt resource value: 26 - public static int AppCompatTheme_actionModeShareDrawable = 26; - - // aapt resource value: 27 - public static int AppCompatTheme_actionModeSplitBackground = 27; - - // aapt resource value: 28 - public static int AppCompatTheme_actionModeStyle = 28; + public static int AppCompatTheme_actionMenuTextColor = 26; // aapt resource value: 29 - public static int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static int AppCompatTheme_actionModeBackground = 29; - // aapt resource value: 30 - public static int AppCompatTheme_actionOverflowButtonStyle = 30; + // aapt resource value: 28 + public static int AppCompatTheme_actionModeCloseButtonStyle = 28; // aapt resource value: 31 - public static int AppCompatTheme_actionOverflowMenuStyle = 31; - - // aapt resource value: 32 - public static int AppCompatTheme_activityChooserViewStyle = 32; + public static int AppCompatTheme_actionModeCloseDrawable = 31; // aapt resource value: 33 - public static int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static int AppCompatTheme_actionModeCopyDrawable = 33; + + // aapt resource value: 32 + public static int AppCompatTheme_actionModeCutDrawable = 32; + + // aapt resource value: 37 + public static int AppCompatTheme_actionModeFindDrawable = 37; // aapt resource value: 34 - public static int AppCompatTheme_alertDialogCenterButtons = 34; + public static int AppCompatTheme_actionModePasteDrawable = 34; + + // aapt resource value: 39 + public static int AppCompatTheme_actionModePopupWindowStyle = 39; // aapt resource value: 35 - public static int AppCompatTheme_alertDialogStyle = 35; + public static int AppCompatTheme_actionModeSelectAllDrawable = 35; // aapt resource value: 36 - public static int AppCompatTheme_alertDialogTheme = 36; + public static int AppCompatTheme_actionModeShareDrawable = 36; + + // aapt resource value: 30 + public static int AppCompatTheme_actionModeSplitBackground = 30; + + // aapt resource value: 27 + public static int AppCompatTheme_actionModeStyle = 27; + + // aapt resource value: 38 + public static int AppCompatTheme_actionModeWebSearchDrawable = 38; + + // aapt resource value: 15 + public static int AppCompatTheme_actionOverflowButtonStyle = 15; + + // aapt resource value: 16 + public static int AppCompatTheme_actionOverflowMenuStyle = 16; + + // aapt resource value: 59 + public static int AppCompatTheme_activityChooserViewStyle = 59; + + // aapt resource value: 96 + public static int AppCompatTheme_alertDialogButtonGroupStyle = 96; + + // aapt resource value: 97 + public static int AppCompatTheme_alertDialogCenterButtons = 97; + + // aapt resource value: 95 + public static int AppCompatTheme_alertDialogStyle = 95; + + // aapt resource value: 98 + public static int AppCompatTheme_alertDialogTheme = 98; // aapt resource value: 1 public static int AppCompatTheme_android_windowAnimationStyle = 1; @@ -4232,270 +4285,268 @@ namespace StardewModdingAPI // aapt resource value: 0 public static int AppCompatTheme_android_windowIsFloating = 0; - // aapt resource value: 37 - public static int AppCompatTheme_autoCompleteTextViewStyle = 37; - - // aapt resource value: 38 - public static int AppCompatTheme_borderlessButtonStyle = 38; - - // aapt resource value: 39 - public static int AppCompatTheme_buttonBarButtonStyle = 39; - - // aapt resource value: 40 - public static int AppCompatTheme_buttonBarNegativeButtonStyle = 40; - - // aapt resource value: 41 - public static int AppCompatTheme_buttonBarNeutralButtonStyle = 41; - - // aapt resource value: 42 - public static int AppCompatTheme_buttonBarPositiveButtonStyle = 42; - - // aapt resource value: 43 - public static int AppCompatTheme_buttonBarStyle = 43; - - // aapt resource value: 44 - public static int AppCompatTheme_buttonStyle = 44; - - // aapt resource value: 45 - public static int AppCompatTheme_buttonStyleSmall = 45; - - // aapt resource value: 46 - public static int AppCompatTheme_checkboxStyle = 46; - - // aapt resource value: 47 - public static int AppCompatTheme_checkedTextViewStyle = 47; - - // aapt resource value: 48 - public static int AppCompatTheme_colorAccent = 48; - - // aapt resource value: 49 - public static int AppCompatTheme_colorBackgroundFloating = 49; - - // aapt resource value: 50 - public static int AppCompatTheme_colorButtonNormal = 50; - - // aapt resource value: 51 - public static int AppCompatTheme_colorControlActivated = 51; - - // aapt resource value: 52 - public static int AppCompatTheme_colorControlHighlight = 52; - - // aapt resource value: 53 - public static int AppCompatTheme_colorControlNormal = 53; - - // aapt resource value: 54 - public static int AppCompatTheme_colorError = 54; - - // aapt resource value: 55 - public static int AppCompatTheme_colorPrimary = 55; + // aapt resource value: 103 + public static int AppCompatTheme_autoCompleteTextViewStyle = 103; // aapt resource value: 56 - public static int AppCompatTheme_colorPrimaryDark = 56; + public static int AppCompatTheme_borderlessButtonStyle = 56; - // aapt resource value: 57 - public static int AppCompatTheme_colorSwitchThumbNormal = 57; + // aapt resource value: 53 + public static int AppCompatTheme_buttonBarButtonStyle = 53; + + // aapt resource value: 101 + public static int AppCompatTheme_buttonBarNegativeButtonStyle = 101; + + // aapt resource value: 102 + public static int AppCompatTheme_buttonBarNeutralButtonStyle = 102; + + // aapt resource value: 100 + public static int AppCompatTheme_buttonBarPositiveButtonStyle = 100; + + // aapt resource value: 52 + public static int AppCompatTheme_buttonBarStyle = 52; + + // aapt resource value: 104 + public static int AppCompatTheme_buttonStyle = 104; + + // aapt resource value: 105 + public static int AppCompatTheme_buttonStyleSmall = 105; + + // aapt resource value: 106 + public static int AppCompatTheme_checkboxStyle = 106; + + // aapt resource value: 107 + public static int AppCompatTheme_checkedTextViewStyle = 107; + + // aapt resource value: 87 + public static int AppCompatTheme_colorAccent = 87; + + // aapt resource value: 94 + public static int AppCompatTheme_colorBackgroundFloating = 94; + + // aapt resource value: 91 + public static int AppCompatTheme_colorButtonNormal = 91; + + // aapt resource value: 89 + public static int AppCompatTheme_colorControlActivated = 89; + + // aapt resource value: 90 + public static int AppCompatTheme_colorControlHighlight = 90; + + // aapt resource value: 88 + public static int AppCompatTheme_colorControlNormal = 88; + + // aapt resource value: 119 + public static int AppCompatTheme_colorError = 119; + + // aapt resource value: 85 + public static int AppCompatTheme_colorPrimary = 85; + + // aapt resource value: 86 + public static int AppCompatTheme_colorPrimaryDark = 86; + + // aapt resource value: 92 + public static int AppCompatTheme_colorSwitchThumbNormal = 92; + + // aapt resource value: 93 + public static int AppCompatTheme_controlBackground = 93; + + // aapt resource value: 46 + public static int AppCompatTheme_dialogCornerRadius = 46; + + // aapt resource value: 44 + public static int AppCompatTheme_dialogPreferredPadding = 44; + + // aapt resource value: 43 + public static int AppCompatTheme_dialogTheme = 43; // aapt resource value: 58 - public static int AppCompatTheme_controlBackground = 58; + public static int AppCompatTheme_dividerHorizontal = 58; - // aapt resource value: 59 - public static int AppCompatTheme_dialogCornerRadius = 59; - - // aapt resource value: 60 - public static int AppCompatTheme_dialogPreferredPadding = 60; - - // aapt resource value: 61 - public static int AppCompatTheme_dialogTheme = 61; - - // aapt resource value: 62 - public static int AppCompatTheme_dividerHorizontal = 62; - - // aapt resource value: 63 - public static int AppCompatTheme_dividerVertical = 63; - - // aapt resource value: 65 - public static int AppCompatTheme_dropdownListPreferredItemHeight = 65; - - // aapt resource value: 64 - public static int AppCompatTheme_dropDownListViewStyle = 64; - - // aapt resource value: 66 - public static int AppCompatTheme_editTextBackground = 66; - - // aapt resource value: 67 - public static int AppCompatTheme_editTextColor = 67; - - // aapt resource value: 68 - public static int AppCompatTheme_editTextStyle = 68; - - // aapt resource value: 69 - public static int AppCompatTheme_homeAsUpIndicator = 69; - - // aapt resource value: 70 - public static int AppCompatTheme_imageButtonStyle = 70; - - // aapt resource value: 71 - public static int AppCompatTheme_listChoiceBackgroundIndicator = 71; - - // aapt resource value: 72 - public static int AppCompatTheme_listDividerAlertDialog = 72; - - // aapt resource value: 73 - public static int AppCompatTheme_listMenuViewStyle = 73; - - // aapt resource value: 74 - public static int AppCompatTheme_listPopupWindowStyle = 74; - - // aapt resource value: 75 - public static int AppCompatTheme_listPreferredItemHeight = 75; + // aapt resource value: 57 + public static int AppCompatTheme_dividerVertical = 57; // aapt resource value: 76 - public static int AppCompatTheme_listPreferredItemHeightLarge = 76; + public static int AppCompatTheme_dropDownListViewStyle = 76; + + // aapt resource value: 48 + public static int AppCompatTheme_dropdownListPreferredItemHeight = 48; + + // aapt resource value: 65 + public static int AppCompatTheme_editTextBackground = 65; + + // aapt resource value: 64 + public static int AppCompatTheme_editTextColor = 64; + + // aapt resource value: 108 + public static int AppCompatTheme_editTextStyle = 108; + + // aapt resource value: 50 + public static int AppCompatTheme_homeAsUpIndicator = 50; + + // aapt resource value: 66 + public static int AppCompatTheme_imageButtonStyle = 66; + + // aapt resource value: 84 + public static int AppCompatTheme_listChoiceBackgroundIndicator = 84; + + // aapt resource value: 45 + public static int AppCompatTheme_listDividerAlertDialog = 45; + + // aapt resource value: 116 + public static int AppCompatTheme_listMenuViewStyle = 116; // aapt resource value: 77 - public static int AppCompatTheme_listPreferredItemHeightSmall = 77; + public static int AppCompatTheme_listPopupWindowStyle = 77; - // aapt resource value: 78 - public static int AppCompatTheme_listPreferredItemPaddingLeft = 78; + // aapt resource value: 71 + public static int AppCompatTheme_listPreferredItemHeight = 71; - // aapt resource value: 79 - public static int AppCompatTheme_listPreferredItemPaddingRight = 79; + // aapt resource value: 73 + public static int AppCompatTheme_listPreferredItemHeightLarge = 73; - // aapt resource value: 80 - public static int AppCompatTheme_panelBackground = 80; + // aapt resource value: 72 + public static int AppCompatTheme_listPreferredItemHeightSmall = 72; + + // aapt resource value: 74 + public static int AppCompatTheme_listPreferredItemPaddingLeft = 74; + + // aapt resource value: 75 + public static int AppCompatTheme_listPreferredItemPaddingRight = 75; // aapt resource value: 81 - public static int AppCompatTheme_panelMenuListTheme = 81; + public static int AppCompatTheme_panelBackground = 81; + + // aapt resource value: 83 + public static int AppCompatTheme_panelMenuListTheme = 83; // aapt resource value: 82 public static int AppCompatTheme_panelMenuListWidth = 82; - // aapt resource value: 83 - public static int AppCompatTheme_popupMenuStyle = 83; + // aapt resource value: 62 + public static int AppCompatTheme_popupMenuStyle = 62; - // aapt resource value: 84 - public static int AppCompatTheme_popupWindowStyle = 84; - - // aapt resource value: 85 - public static int AppCompatTheme_radioButtonStyle = 85; - - // aapt resource value: 86 - public static int AppCompatTheme_ratingBarStyle = 86; - - // aapt resource value: 87 - public static int AppCompatTheme_ratingBarStyleIndicator = 87; - - // aapt resource value: 88 - public static int AppCompatTheme_ratingBarStyleSmall = 88; - - // aapt resource value: 89 - public static int AppCompatTheme_searchViewStyle = 89; - - // aapt resource value: 90 - public static int AppCompatTheme_seekBarStyle = 90; - - // aapt resource value: 91 - public static int AppCompatTheme_selectableItemBackground = 91; - - // aapt resource value: 92 - public static int AppCompatTheme_selectableItemBackgroundBorderless = 92; - - // aapt resource value: 93 - public static int AppCompatTheme_spinnerDropDownItemStyle = 93; - - // aapt resource value: 94 - public static int AppCompatTheme_spinnerStyle = 94; - - // aapt resource value: 95 - public static int AppCompatTheme_switchStyle = 95; - - // aapt resource value: 96 - public static int AppCompatTheme_textAppearanceLargePopupMenu = 96; - - // aapt resource value: 97 - public static int AppCompatTheme_textAppearanceListItem = 97; - - // aapt resource value: 98 - public static int AppCompatTheme_textAppearanceListItemSecondary = 98; - - // aapt resource value: 99 - public static int AppCompatTheme_textAppearanceListItemSmall = 99; - - // aapt resource value: 100 - public static int AppCompatTheme_textAppearancePopupMenuHeader = 100; - - // aapt resource value: 101 - public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 101; - - // aapt resource value: 102 - public static int AppCompatTheme_textAppearanceSearchResultTitle = 102; - - // aapt resource value: 103 - public static int AppCompatTheme_textAppearanceSmallPopupMenu = 103; - - // aapt resource value: 104 - public static int AppCompatTheme_textColorAlertDialogListItem = 104; - - // aapt resource value: 105 - public static int AppCompatTheme_textColorSearchUrl = 105; - - // aapt resource value: 106 - public static int AppCompatTheme_toolbarNavigationButtonStyle = 106; - - // aapt resource value: 107 - public static int AppCompatTheme_toolbarStyle = 107; - - // aapt resource value: 108 - public static int AppCompatTheme_tooltipForegroundColor = 108; + // aapt resource value: 63 + public static int AppCompatTheme_popupWindowStyle = 63; // aapt resource value: 109 - public static int AppCompatTheme_tooltipFrameBackground = 109; + public static int AppCompatTheme_radioButtonStyle = 109; // aapt resource value: 110 - public static int AppCompatTheme_viewInflaterClass = 110; + public static int AppCompatTheme_ratingBarStyle = 110; // aapt resource value: 111 - public static int AppCompatTheme_windowActionBar = 111; + public static int AppCompatTheme_ratingBarStyleIndicator = 111; // aapt resource value: 112 - public static int AppCompatTheme_windowActionBarOverlay = 112; + public static int AppCompatTheme_ratingBarStyleSmall = 112; + + // aapt resource value: 70 + public static int AppCompatTheme_searchViewStyle = 70; // aapt resource value: 113 - public static int AppCompatTheme_windowActionModeOverlay = 113; + public static int AppCompatTheme_seekBarStyle = 113; + + // aapt resource value: 54 + public static int AppCompatTheme_selectableItemBackground = 54; + + // aapt resource value: 55 + public static int AppCompatTheme_selectableItemBackgroundBorderless = 55; + + // aapt resource value: 49 + public static int AppCompatTheme_spinnerDropDownItemStyle = 49; // aapt resource value: 114 - public static int AppCompatTheme_windowFixedHeightMajor = 114; + public static int AppCompatTheme_spinnerStyle = 114; // aapt resource value: 115 - public static int AppCompatTheme_windowFixedHeightMinor = 115; + public static int AppCompatTheme_switchStyle = 115; - // aapt resource value: 116 - public static int AppCompatTheme_windowFixedWidthMajor = 116; + // aapt resource value: 40 + public static int AppCompatTheme_textAppearanceLargePopupMenu = 40; - // aapt resource value: 117 - public static int AppCompatTheme_windowFixedWidthMinor = 117; + // aapt resource value: 78 + public static int AppCompatTheme_textAppearanceListItem = 78; + + // aapt resource value: 79 + public static int AppCompatTheme_textAppearanceListItemSecondary = 79; + + // aapt resource value: 80 + public static int AppCompatTheme_textAppearanceListItemSmall = 80; + + // aapt resource value: 42 + public static int AppCompatTheme_textAppearancePopupMenuHeader = 42; + + // aapt resource value: 68 + public static int AppCompatTheme_textAppearanceSearchResultSubtitle = 68; + + // aapt resource value: 67 + public static int AppCompatTheme_textAppearanceSearchResultTitle = 67; + + // aapt resource value: 41 + public static int AppCompatTheme_textAppearanceSmallPopupMenu = 41; + + // aapt resource value: 99 + public static int AppCompatTheme_textColorAlertDialogListItem = 99; + + // aapt resource value: 69 + public static int AppCompatTheme_textColorSearchUrl = 69; + + // aapt resource value: 61 + public static int AppCompatTheme_toolbarNavigationButtonStyle = 61; + + // aapt resource value: 60 + public static int AppCompatTheme_toolbarStyle = 60; // aapt resource value: 118 - public static int AppCompatTheme_windowMinWidthMajor = 118; + public static int AppCompatTheme_tooltipForegroundColor = 118; - // aapt resource value: 119 - public static int AppCompatTheme_windowMinWidthMinor = 119; + // aapt resource value: 117 + public static int AppCompatTheme_tooltipFrameBackground = 117; // aapt resource value: 120 - public static int AppCompatTheme_windowNoTitle = 120; + public static int AppCompatTheme_viewInflaterClass = 120; + + // aapt resource value: 2 + public static int AppCompatTheme_windowActionBar = 2; + + // aapt resource value: 4 + public static int AppCompatTheme_windowActionBarOverlay = 4; + + // aapt resource value: 5 + public static int AppCompatTheme_windowActionModeOverlay = 5; + + // aapt resource value: 9 + public static int AppCompatTheme_windowFixedHeightMajor = 9; + + // aapt resource value: 7 + public static int AppCompatTheme_windowFixedHeightMinor = 7; + + // aapt resource value: 6 + public static int AppCompatTheme_windowFixedWidthMajor = 6; + + // aapt resource value: 8 + public static int AppCompatTheme_windowFixedWidthMinor = 8; + + // aapt resource value: 10 + public static int AppCompatTheme_windowMinWidthMajor = 10; + + // aapt resource value: 11 + public static int AppCompatTheme_windowMinWidthMinor = 11; + + // aapt resource value: 3 + public static int AppCompatTheme_windowNoTitle = 3; - // aapt resource value: { 0x7F020026 } public static int[] ButtonBarLayout = new int[] { - 2130837542}; + 2130772143}; // aapt resource value: 0 public static int ButtonBarLayout_allowStacking = 0; - // aapt resource value: { 0x10101A5,0x101031F,0x7F020027 } public static int[] ColorStateListItem = new int[] { 16843173, 16843551, - 2130837543}; + 2130772228}; // aapt resource value: 2 public static int ColorStateListItem_alpha = 2; @@ -4506,11 +4557,10 @@ namespace StardewModdingAPI // aapt resource value: 0 public static int ColorStateListItem_android_color = 0; - // aapt resource value: { 0x1010107,0x7F020042,0x7F020043 } public static int[] CompoundButton = new int[] { 16843015, - 2130837570, - 2130837571}; + 2130772144, + 2130772145}; // aapt resource value: 0 public static int CompoundButton_android_button = 0; @@ -4521,104 +4571,117 @@ namespace StardewModdingAPI // aapt resource value: 2 public static int CompoundButton_buttonTintMode = 2; - // aapt resource value: { 0x7F02008D,0x7F0200D0 } public static int[] CoordinatorLayout = new int[] { - 2130837645, - 2130837712}; + 2130772220, + 2130772221}; // aapt resource value: 0 public static int CoordinatorLayout_keylines = 0; - // aapt resource value: { 0x10100B3,0x7F020090,0x7F020091,0x7F020092,0x7F020093,0x7F020094,0x7F020095 } + // aapt resource value: 1 + public static int CoordinatorLayout_statusBarBackground = 1; + public static int[] CoordinatorLayout_Layout = new int[] { 16842931, - 2130837648, - 2130837649, - 2130837650, - 2130837651, - 2130837652, - 2130837653}; + 2130772222, + 2130772223, + 2130772224, + 2130772225, + 2130772226, + 2130772227}; // aapt resource value: 0 public static int CoordinatorLayout_Layout_android_layout_gravity = 0; - // aapt resource value: 1 - public static int CoordinatorLayout_Layout_layout_anchor = 1; - // aapt resource value: 2 - public static int CoordinatorLayout_Layout_layout_anchorGravity = 2; - - // aapt resource value: 3 - public static int CoordinatorLayout_Layout_layout_behavior = 3; + public static int CoordinatorLayout_Layout_layout_anchor = 2; // aapt resource value: 4 - public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 4; + public static int CoordinatorLayout_Layout_layout_anchorGravity = 4; + + // aapt resource value: 1 + public static int CoordinatorLayout_Layout_layout_behavior = 1; + + // aapt resource value: 6 + public static int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6; // aapt resource value: 5 public static int CoordinatorLayout_Layout_layout_insetEdge = 5; - // aapt resource value: 6 - public static int CoordinatorLayout_Layout_layout_keyline = 6; - - // aapt resource value: 1 - public static int CoordinatorLayout_statusBarBackground = 1; - - // aapt resource value: { 0x7F020029,0x7F02002A,0x7F020036,0x7F02004A,0x7F020069,0x7F02007E,0x7F0200CA,0x7F0200E8 } - public static int[] DrawerArrowToggle = new int[] { - 2130837545, - 2130837546, - 2130837558, - 2130837578, - 2130837609, - 2130837630, - 2130837706, - 2130837736}; - - // aapt resource value: 0 - public static int DrawerArrowToggle_arrowHeadLength = 0; - - // aapt resource value: 1 - public static int DrawerArrowToggle_arrowShaftLength = 1; - - // aapt resource value: 2 - public static int DrawerArrowToggle_barLength = 2; - // aapt resource value: 3 - public static int DrawerArrowToggle_color = 3; + public static int CoordinatorLayout_Layout_layout_keyline = 3; + + public static int[] DrawerArrowToggle = new int[] { + 2130772146, + 2130772147, + 2130772148, + 2130772149, + 2130772150, + 2130772151, + 2130772152, + 2130772153}; // aapt resource value: 4 - public static int DrawerArrowToggle_drawableSize = 4; + public static int DrawerArrowToggle_arrowHeadLength = 4; // aapt resource value: 5 - public static int DrawerArrowToggle_gapBetweenBars = 5; + public static int DrawerArrowToggle_arrowShaftLength = 5; // aapt resource value: 6 - public static int DrawerArrowToggle_spinBars = 6; + public static int DrawerArrowToggle_barLength = 6; + + // aapt resource value: 0 + public static int DrawerArrowToggle_color = 0; + + // aapt resource value: 2 + public static int DrawerArrowToggle_drawableSize = 2; + + // aapt resource value: 3 + public static int DrawerArrowToggle_gapBetweenBars = 3; + + // aapt resource value: 1 + public static int DrawerArrowToggle_spinBars = 1; // aapt resource value: 7 public static int DrawerArrowToggle_thickness = 7; - // aapt resource value: { 0x7F020075,0x7F020076,0x7F020077,0x7F020078,0x7F020079,0x7F02007A } public static int[] FontFamily = new int[] { - 2130837621, - 2130837622, - 2130837623, - 2130837624, - 2130837625, - 2130837626}; + 2130772229, + 2130772230, + 2130772231, + 2130772232, + 2130772233, + 2130772234}; + + // aapt resource value: 0 + public static int FontFamily_fontProviderAuthority = 0; + + // aapt resource value: 3 + public static int FontFamily_fontProviderCerts = 3; + + // aapt resource value: 4 + public static int FontFamily_fontProviderFetchStrategy = 4; + + // aapt resource value: 5 + public static int FontFamily_fontProviderFetchTimeout = 5; + + // aapt resource value: 1 + public static int FontFamily_fontProviderPackage = 1; + + // aapt resource value: 2 + public static int FontFamily_fontProviderQuery = 2; - // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F020073,0x7F02007B,0x7F02007C,0x7F02007D,0x7F020103 } public static int[] FontFamilyFont = new int[] { 16844082, 16844083, 16844095, 16844143, 16844144, - 2130837619, - 2130837627, - 2130837628, - 2130837629, - 2130837763}; + 2130772235, + 2130772236, + 2130772237, + 2130772238, + 2130772239}; // aapt resource value: 0 public static int FontFamilyFont_android_font = 0; @@ -4635,40 +4698,21 @@ namespace StardewModdingAPI // aapt resource value: 3 public static int FontFamilyFont_android_ttcIndex = 3; - // aapt resource value: 5 - public static int FontFamilyFont_font = 5; - // aapt resource value: 6 - public static int FontFamilyFont_fontStyle = 6; + public static int FontFamilyFont_font = 6; - // aapt resource value: 7 - public static int FontFamilyFont_fontVariationSettings = 7; + // aapt resource value: 5 + public static int FontFamilyFont_fontStyle = 5; // aapt resource value: 8 - public static int FontFamilyFont_fontWeight = 8; + public static int FontFamilyFont_fontVariationSettings = 8; + + // aapt resource value: 7 + public static int FontFamilyFont_fontWeight = 7; // aapt resource value: 9 public static int FontFamilyFont_ttcIndex = 9; - // aapt resource value: 0 - public static int FontFamily_fontProviderAuthority = 0; - - // aapt resource value: 1 - public static int FontFamily_fontProviderCerts = 1; - - // aapt resource value: 2 - public static int FontFamily_fontProviderFetchStrategy = 2; - - // aapt resource value: 3 - public static int FontFamily_fontProviderFetchTimeout = 3; - - // aapt resource value: 4 - public static int FontFamily_fontProviderPackage = 4; - - // aapt resource value: 5 - public static int FontFamily_fontProviderQuery = 5; - - // aapt resource value: { 0x101019D,0x101019E,0x10101A1,0x10101A2,0x10101A3,0x10101A4,0x1010201,0x101020B,0x1010510,0x1010511,0x1010512,0x1010513 } public static int[] GradientColor = new int[] { 16843165, 16843166, @@ -4683,17 +4727,6 @@ namespace StardewModdingAPI 16844050, 16844051}; - // aapt resource value: { 0x10101A5,0x1010514 } - public static int[] GradientColorItem = new int[] { - 16843173, - 16844052}; - - // aapt resource value: 0 - public static int GradientColorItem_android_color = 0; - - // aapt resource value: 1 - public static int GradientColorItem_android_offset = 1; - // aapt resource value: 7 public static int GradientColor_android_centerColor = 7; @@ -4730,17 +4763,26 @@ namespace StardewModdingAPI // aapt resource value: 2 public static int GradientColor_android_type = 2; - // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F020065,0x7F020067,0x7F0200A5,0x7F0200C6 } + public static int[] GradientColorItem = new int[] { + 16843173, + 16844052}; + + // aapt resource value: 0 + public static int GradientColorItem_android_color = 0; + + // aapt resource value: 1 + public static int GradientColorItem_android_offset = 1; + public static int[] LinearLayoutCompat = new int[] { 16842927, 16842948, 16843046, 16843047, 16843048, - 2130837605, - 2130837607, - 2130837669, - 2130837702}; + 2130771979, + 2130772154, + 2130772155, + 2130772156}; // aapt resource value: 2 public static int LinearLayoutCompat_android_baselineAligned = 2; @@ -4760,10 +4802,15 @@ namespace StardewModdingAPI // aapt resource value: 5 public static int LinearLayoutCompat_divider = 5; - // aapt resource value: 6 - public static int LinearLayoutCompat_dividerPadding = 6; + // aapt resource value: 8 + public static int LinearLayoutCompat_dividerPadding = 8; + + // aapt resource value: 6 + public static int LinearLayoutCompat_measureWithLargestChild = 6; + + // aapt resource value: 7 + public static int LinearLayoutCompat_showDividers = 7; - // aapt resource value: { 0x10100B3,0x10100F4,0x10100F5,0x1010181 } public static int[] LinearLayoutCompat_Layout = new int[] { 16842931, 16842996, @@ -4782,13 +4829,6 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int LinearLayoutCompat_Layout_android_layout_width = 1; - // aapt resource value: 7 - public static int LinearLayoutCompat_measureWithLargestChild = 7; - - // aapt resource value: 8 - public static int LinearLayoutCompat_showDividers = 8; - - // aapt resource value: { 0x10102AC,0x10102AD } public static int[] ListPopupWindow = new int[] { 16843436, 16843437}; @@ -4799,7 +4839,6 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int ListPopupWindow_android_dropDownVerticalOffset = 1; - // aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 } public static int[] MenuGroup = new int[] { 16842766, 16842960, @@ -4826,7 +4865,6 @@ namespace StardewModdingAPI // aapt resource value: 2 public static int MenuGroup_android_visible = 2; - // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F02000D,0x7F02001F,0x7F020020,0x7F020028,0x7F020056,0x7F020085,0x7F020086,0x7F0200AA,0x7F0200C5,0x7F0200FF } public static int[] MenuItem = new int[] { 16842754, 16842766, @@ -4841,28 +4879,28 @@ namespace StardewModdingAPI 16843236, 16843237, 16843375, - 2130837517, - 2130837535, - 2130837536, - 2130837544, - 2130837590, - 2130837637, - 2130837638, - 2130837674, - 2130837701, - 2130837759}; - - // aapt resource value: 13 - public static int MenuItem_actionLayout = 13; - - // aapt resource value: 14 - public static int MenuItem_actionProviderClass = 14; - - // aapt resource value: 15 - public static int MenuItem_actionViewClass = 15; + 2130772157, + 2130772158, + 2130772159, + 2130772160, + 2130772161, + 2130772162, + 2130772163, + 2130772164, + 2130772165, + 2130772166}; // aapt resource value: 16 - public static int MenuItem_alphabeticModifiers = 16; + public static int MenuItem_actionLayout = 16; + + // aapt resource value: 18 + public static int MenuItem_actionProviderClass = 18; + + // aapt resource value: 17 + public static int MenuItem_actionViewClass = 17; + + // aapt resource value: 13 + public static int MenuItem_alphabeticModifiers = 13; // aapt resource value: 9 public static int MenuItem_android_alphabeticShortcut = 9; @@ -4903,25 +4941,24 @@ namespace StardewModdingAPI // aapt resource value: 4 public static int MenuItem_android_visible = 4; - // aapt resource value: 17 - public static int MenuItem_contentDescription = 17; - - // aapt resource value: 18 - public static int MenuItem_iconTint = 18; - // aapt resource value: 19 - public static int MenuItem_iconTintMode = 19; - - // aapt resource value: 20 - public static int MenuItem_numericModifiers = 20; + public static int MenuItem_contentDescription = 19; // aapt resource value: 21 - public static int MenuItem_showAsAction = 21; + public static int MenuItem_iconTint = 21; // aapt resource value: 22 - public static int MenuItem_tooltipText = 22; + public static int MenuItem_iconTintMode = 22; + + // aapt resource value: 14 + public static int MenuItem_numericModifiers = 14; + + // aapt resource value: 15 + public static int MenuItem_showAsAction = 15; + + // aapt resource value: 20 + public static int MenuItem_tooltipText = 20; - // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0200B6,0x7F0200D1 } public static int[] MenuView = new int[] { 16842926, 16843052, @@ -4930,8 +4967,8 @@ namespace StardewModdingAPI 16843055, 16843056, 16843057, - 2130837686, - 2130837713}; + 2130772167, + 2130772168}; // aapt resource value: 4 public static int MenuView_android_headerBackground = 4; @@ -4960,18 +4997,10 @@ namespace StardewModdingAPI // aapt resource value: 8 public static int MenuView_subMenuArrow = 8; - // aapt resource value: { 0x1010176,0x10102C9,0x7F0200AB } public static int[] PopupWindow = new int[] { 16843126, 16843465, - 2130837675}; - - // aapt resource value: { 0x7F0200CF } - public static int[] PopupWindowBackgroundState = new int[] { - 2130837711}; - - // aapt resource value: 0 - public static int PopupWindowBackgroundState_state_above_anchor = 0; + 2130772169}; // aapt resource value: 1 public static int PopupWindow_android_popupAnimationStyle = 1; @@ -4982,10 +5011,15 @@ namespace StardewModdingAPI // aapt resource value: 2 public static int PopupWindow_overlapAnchor = 2; - // aapt resource value: { 0x7F0200AC,0x7F0200AF } + public static int[] PopupWindowBackgroundState = new int[] { + 2130772170}; + + // aapt resource value: 0 + public static int PopupWindowBackgroundState_state_above_anchor = 0; + public static int[] RecycleListView = new int[] { - 2130837676, - 2130837679}; + 2130772171, + 2130772172}; // aapt resource value: 0 public static int RecycleListView_paddingBottomNoButtons = 0; @@ -4993,25 +5027,24 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int RecycleListView_paddingTopNoTitle = 1; - // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F020046,0x7F020055,0x7F020060,0x7F02007F,0x7F020087,0x7F02008F,0x7F0200B9,0x7F0200BA,0x7F0200BF,0x7F0200C0,0x7F0200D2,0x7F0200D7,0x7F020105 } public static int[] SearchView = new int[] { 16842970, 16843039, 16843296, 16843364, - 2130837574, - 2130837589, - 2130837600, - 2130837631, - 2130837639, - 2130837647, - 2130837689, - 2130837690, - 2130837695, - 2130837696, - 2130837714, - 2130837719, - 2130837765}; + 2130772173, + 2130772174, + 2130772175, + 2130772176, + 2130772177, + 2130772178, + 2130772179, + 2130772180, + 2130772181, + 2130772182, + 2130772183, + 2130772184, + 2130772185}; // aapt resource value: 0 public static int SearchView_android_focusable = 0; @@ -5025,52 +5058,51 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int SearchView_android_maxWidth = 1; - // aapt resource value: 4 - public static int SearchView_closeIcon = 4; - - // aapt resource value: 5 - public static int SearchView_commitIcon = 5; - - // aapt resource value: 6 - public static int SearchView_defaultQueryHint = 6; - - // aapt resource value: 7 - public static int SearchView_goIcon = 7; - // aapt resource value: 8 - public static int SearchView_iconifiedByDefault = 8; - - // aapt resource value: 9 - public static int SearchView_layout = 9; - - // aapt resource value: 10 - public static int SearchView_queryBackground = 10; - - // aapt resource value: 11 - public static int SearchView_queryHint = 11; - - // aapt resource value: 12 - public static int SearchView_searchHintIcon = 12; + public static int SearchView_closeIcon = 8; // aapt resource value: 13 - public static int SearchView_searchIcon = 13; + public static int SearchView_commitIcon = 13; - // aapt resource value: 14 - public static int SearchView_submitBackground = 14; + // aapt resource value: 7 + public static int SearchView_defaultQueryHint = 7; + + // aapt resource value: 9 + public static int SearchView_goIcon = 9; + + // aapt resource value: 5 + public static int SearchView_iconifiedByDefault = 5; + + // aapt resource value: 4 + public static int SearchView_layout = 4; // aapt resource value: 15 - public static int SearchView_suggestionRowLayout = 15; + public static int SearchView_queryBackground = 15; + + // aapt resource value: 6 + public static int SearchView_queryHint = 6; + + // aapt resource value: 11 + public static int SearchView_searchHintIcon = 11; + + // aapt resource value: 10 + public static int SearchView_searchIcon = 10; // aapt resource value: 16 - public static int SearchView_voiceIcon = 16; + public static int SearchView_submitBackground = 16; + + // aapt resource value: 14 + public static int SearchView_suggestionRowLayout = 14; + + // aapt resource value: 12 + public static int SearchView_voiceIcon = 12; - // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0200B4 } public static int[] Spinner = new int[] { 16842930, 16843126, 16843131, 16843362, - 2130837684}; + 2130771997}; // aapt resource value: 3 public static int Spinner_android_dropDownWidth = 3; @@ -5087,7 +5119,6 @@ namespace StardewModdingAPI // aapt resource value: 4 public static int Spinner_popupTheme = 4; - // aapt resource value: { 0x101011C,0x1010194,0x1010195,0x1010196,0x101030C,0x101030D } public static int[] StateListDrawable = new int[] { 16843036, 16843156, @@ -5096,13 +5127,6 @@ namespace StardewModdingAPI 16843532, 16843533}; - // aapt resource value: { 0x1010199 } - public static int[] StateListDrawableItem = new int[] { - 16843161}; - - // aapt resource value: 0 - public static int StateListDrawableItem_android_drawable = 0; - // aapt resource value: 3 public static int StateListDrawable_android_constantSize = 3; @@ -5121,22 +5145,27 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int StateListDrawable_android_visible = 1; - // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0200C7,0x7F0200CD,0x7F0200D8,0x7F0200D9,0x7F0200DB,0x7F0200E9,0x7F0200EA,0x7F0200EB,0x7F020100,0x7F020101,0x7F020102 } + public static int[] StateListDrawableItem = new int[] { + 16843161}; + + // aapt resource value: 0 + public static int StateListDrawableItem_android_drawable = 0; + public static int[] SwitchCompat = new int[] { 16843044, 16843045, 16843074, - 2130837703, - 2130837709, - 2130837720, - 2130837721, - 2130837723, - 2130837737, - 2130837738, - 2130837739, - 2130837760, - 2130837761, - 2130837762}; + 2130772186, + 2130772187, + 2130772188, + 2130772189, + 2130772190, + 2130772191, + 2130772192, + 2130772193, + 2130772194, + 2130772195, + 2130772196}; // aapt resource value: 1 public static int SwitchCompat_android_textOff = 1; @@ -5147,40 +5176,39 @@ namespace StardewModdingAPI // aapt resource value: 2 public static int SwitchCompat_android_thumb = 2; - // aapt resource value: 3 - public static int SwitchCompat_showText = 3; + // aapt resource value: 13 + public static int SwitchCompat_showText = 13; - // aapt resource value: 4 - public static int SwitchCompat_splitTrack = 4; + // aapt resource value: 12 + public static int SwitchCompat_splitTrack = 12; - // aapt resource value: 5 - public static int SwitchCompat_switchMinWidth = 5; + // aapt resource value: 10 + public static int SwitchCompat_switchMinWidth = 10; - // aapt resource value: 6 - public static int SwitchCompat_switchPadding = 6; + // aapt resource value: 11 + public static int SwitchCompat_switchPadding = 11; - // aapt resource value: 7 - public static int SwitchCompat_switchTextAppearance = 7; + // aapt resource value: 9 + public static int SwitchCompat_switchTextAppearance = 9; // aapt resource value: 8 public static int SwitchCompat_thumbTextPadding = 8; - // aapt resource value: 9 - public static int SwitchCompat_thumbTint = 9; + // aapt resource value: 3 + public static int SwitchCompat_thumbTint = 3; - // aapt resource value: 10 - public static int SwitchCompat_thumbTintMode = 10; + // aapt resource value: 4 + public static int SwitchCompat_thumbTintMode = 4; - // aapt resource value: 11 - public static int SwitchCompat_track = 11; + // aapt resource value: 5 + public static int SwitchCompat_track = 5; - // aapt resource value: 12 - public static int SwitchCompat_trackTint = 12; + // aapt resource value: 6 + public static int SwitchCompat_trackTint = 6; - // aapt resource value: 13 - public static int SwitchCompat_trackTintMode = 13; + // aapt resource value: 7 + public static int SwitchCompat_trackTintMode = 7; - // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x7F020074,0x7F0200DC } public static int[] TextAppearance = new int[] { 16842901, 16842902, @@ -5193,8 +5221,8 @@ namespace StardewModdingAPI 16843107, 16843108, 16843692, - 2130837620, - 2130837724}; + 2130772014, + 2130772020}; // aapt resource value: 10 public static int TextAppearance_android_fontFamily = 10; @@ -5229,43 +5257,42 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int TextAppearance_android_typeface = 1; - // aapt resource value: 11 - public static int TextAppearance_fontFamily = 11; - // aapt resource value: 12 - public static int TextAppearance_textAllCaps = 12; + public static int TextAppearance_fontFamily = 12; + + // aapt resource value: 11 + public static int TextAppearance_textAllCaps = 11; - // aapt resource value: { 0x10100AF,0x1010140,0x7F02003D,0x7F020048,0x7F020049,0x7F020057,0x7F020058,0x7F020059,0x7F02005A,0x7F02005B,0x7F02005C,0x7F0200A2,0x7F0200A3,0x7F0200A4,0x7F0200A7,0x7F0200A8,0x7F0200B4,0x7F0200D3,0x7F0200D4,0x7F0200D5,0x7F0200F1,0x7F0200F2,0x7F0200F3,0x7F0200F4,0x7F0200F5,0x7F0200F6,0x7F0200F7,0x7F0200F8,0x7F0200F9 } public static int[] Toolbar = new int[] { 16842927, 16843072, - 2130837565, - 2130837576, - 2130837577, - 2130837591, - 2130837592, - 2130837593, - 2130837594, - 2130837595, - 2130837596, - 2130837666, - 2130837667, - 2130837668, - 2130837671, - 2130837672, - 2130837684, - 2130837715, - 2130837716, - 2130837717, - 2130837745, - 2130837746, - 2130837747, - 2130837748, - 2130837749, - 2130837750, - 2130837751, - 2130837752, - 2130837753}; + 2130771971, + 2130771974, + 2130771978, + 2130771990, + 2130771991, + 2130771992, + 2130771993, + 2130771994, + 2130771995, + 2130771997, + 2130772197, + 2130772198, + 2130772199, + 2130772200, + 2130772201, + 2130772202, + 2130772203, + 2130772204, + 2130772205, + 2130772206, + 2130772207, + 2130772208, + 2130772209, + 2130772210, + 2130772211, + 2130772212, + 2130772213}; // aapt resource value: 0 public static int Toolbar_android_gravity = 0; @@ -5273,20 +5300,20 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int Toolbar_android_minHeight = 1; - // aapt resource value: 2 - public static int Toolbar_buttonGravity = 2; + // aapt resource value: 21 + public static int Toolbar_buttonGravity = 21; - // aapt resource value: 3 - public static int Toolbar_collapseContentDescription = 3; + // aapt resource value: 23 + public static int Toolbar_collapseContentDescription = 23; - // aapt resource value: 4 - public static int Toolbar_collapseIcon = 4; - - // aapt resource value: 5 - public static int Toolbar_contentInsetEnd = 5; + // aapt resource value: 22 + public static int Toolbar_collapseIcon = 22; // aapt resource value: 6 - public static int Toolbar_contentInsetEndWithActions = 6; + public static int Toolbar_contentInsetEnd = 6; + + // aapt resource value: 10 + public static int Toolbar_contentInsetEndWithActions = 10; // aapt resource value: 7 public static int Toolbar_contentInsetLeft = 7; @@ -5294,79 +5321,92 @@ namespace StardewModdingAPI // aapt resource value: 8 public static int Toolbar_contentInsetRight = 8; + // aapt resource value: 5 + public static int Toolbar_contentInsetStart = 5; + // aapt resource value: 9 - public static int Toolbar_contentInsetStart = 9; + public static int Toolbar_contentInsetStartWithNavigation = 9; - // aapt resource value: 10 - public static int Toolbar_contentInsetStartWithNavigation = 10; - - // aapt resource value: 11 - public static int Toolbar_logo = 11; - - // aapt resource value: 12 - public static int Toolbar_logoDescription = 12; - - // aapt resource value: 13 - public static int Toolbar_maxButtonHeight = 13; - - // aapt resource value: 14 - public static int Toolbar_navigationContentDescription = 14; - - // aapt resource value: 15 - public static int Toolbar_navigationIcon = 15; - - // aapt resource value: 16 - public static int Toolbar_popupTheme = 16; - - // aapt resource value: 17 - public static int Toolbar_subtitle = 17; - - // aapt resource value: 18 - public static int Toolbar_subtitleTextAppearance = 18; - - // aapt resource value: 19 - public static int Toolbar_subtitleTextColor = 19; - - // aapt resource value: 20 - public static int Toolbar_title = 20; - - // aapt resource value: 21 - public static int Toolbar_titleMargin = 21; - - // aapt resource value: 22 - public static int Toolbar_titleMarginBottom = 22; - - // aapt resource value: 23 - public static int Toolbar_titleMarginEnd = 23; + // aapt resource value: 4 + public static int Toolbar_logo = 4; // aapt resource value: 26 - public static int Toolbar_titleMargins = 26; + public static int Toolbar_logoDescription = 26; - // aapt resource value: 24 - public static int Toolbar_titleMarginStart = 24; + // aapt resource value: 20 + public static int Toolbar_maxButtonHeight = 20; // aapt resource value: 25 - public static int Toolbar_titleMarginTop = 25; + public static int Toolbar_navigationContentDescription = 25; - // aapt resource value: 27 - public static int Toolbar_titleTextAppearance = 27; + // aapt resource value: 24 + public static int Toolbar_navigationIcon = 24; + + // aapt resource value: 11 + public static int Toolbar_popupTheme = 11; + + // aapt resource value: 3 + public static int Toolbar_subtitle = 3; + + // aapt resource value: 13 + public static int Toolbar_subtitleTextAppearance = 13; // aapt resource value: 28 - public static int Toolbar_titleTextColor = 28; + public static int Toolbar_subtitleTextColor = 28; + + // aapt resource value: 2 + public static int Toolbar_title = 2; + + // aapt resource value: 14 + public static int Toolbar_titleMargin = 14; + + // aapt resource value: 18 + public static int Toolbar_titleMarginBottom = 18; + + // aapt resource value: 16 + public static int Toolbar_titleMarginEnd = 16; + + // aapt resource value: 15 + public static int Toolbar_titleMarginStart = 15; + + // aapt resource value: 17 + public static int Toolbar_titleMarginTop = 17; + + // aapt resource value: 19 + public static int Toolbar_titleMargins = 19; + + // aapt resource value: 12 + public static int Toolbar_titleTextAppearance = 12; + + // aapt resource value: 27 + public static int Toolbar_titleTextColor = 27; - // aapt resource value: { 0x1010000,0x10100DA,0x7F0200AD,0x7F0200AE,0x7F0200E7 } public static int[] View = new int[] { 16842752, 16842970, - 2130837677, - 2130837678, - 2130837735}; + 2130772214, + 2130772215, + 2130772216}; + + // aapt resource value: 1 + public static int View_android_focusable = 1; + + // aapt resource value: 0 + public static int View_android_theme = 0; + + // aapt resource value: 3 + public static int View_paddingEnd = 3; + + // aapt resource value: 2 + public static int View_paddingStart = 2; + + // aapt resource value: 4 + public static int View_theme = 4; - // aapt resource value: { 0x10100D4,0x7F020034,0x7F020035 } public static int[] ViewBackgroundHelper = new int[] { 16842964, - 2130837556, - 2130837557}; + 2130772217, + 2130772218}; // aapt resource value: 0 public static int ViewBackgroundHelper_android_background = 0; @@ -5377,7 +5417,6 @@ namespace StardewModdingAPI // aapt resource value: 2 public static int ViewBackgroundHelper_backgroundTintMode = 2; - // aapt resource value: { 0x10100D0,0x10100F2,0x10100F3 } public static int[] ViewStubCompat = new int[] { 16842960, 16842994, @@ -5392,21 +5431,6 @@ namespace StardewModdingAPI // aapt resource value: 1 public static int ViewStubCompat_android_layout = 1; - // aapt resource value: 1 - public static int View_android_focusable = 1; - - // aapt resource value: 0 - public static int View_android_theme = 0; - - // aapt resource value: 2 - public static int View_paddingEnd = 2; - - // aapt resource value: 3 - public static int View_paddingStart = 3; - - // aapt resource value: 4 - public static int View_theme = 4; - static Styleable() { global::Android.Runtime.ResourceIdManager.UpdateIdValues();