diff --git a/GUT.Schedule/GUTSchedule.Droid/Activities/MainActivity.cs b/GUT.Schedule/GUTSchedule.Droid/Activities/MainActivity.cs
index 20fa905..febc7d2 100644
--- a/GUT.Schedule/GUTSchedule.Droid/Activities/MainActivity.cs
+++ b/GUT.Schedule/GUTSchedule.Droid/Activities/MainActivity.cs
@@ -4,7 +4,6 @@ using Android.App;
using Android.Content;
using Android.Content.PM;
using Android.OS;
-using Android.Preferences;
using Android.Support.V7.App;
using Android.Text.Method;
using Android.Views;
@@ -13,6 +12,7 @@ using GUTSchedule.Models;
using GUTSchedule.Droid.Fragments;
using System.Collections.Generic;
using System.Threading.Tasks;
+using AndroidX.Preference;
namespace GUTSchedule.Droid.Activities
{
@@ -27,17 +27,6 @@ namespace GUTSchedule.Droid.Activities
public static int SelectedCalendarIndex { get; set; }
public static int Reminder { get; set; }
- private List<(string, string)> _availableOccupations;
- private List<(string, string)> AvailableOccupations
- {
- get => _availableOccupations;
- set
- {
- _availableOccupations = value;
- applyForOccupation.Visibility = value.Count > 0 ? ViewStates.Visible : ViewStates.Gone;
- }
- }
-
DateTime startDate = DateTime.Today;
DateTime endDate = DateTime.Today.AddDays(7);
@@ -101,11 +90,12 @@ namespace GUTSchedule.Droid.Activities
try
{
- AvailableOccupations = await Parser.CheckAvailableOccupations(email.Text, password.Text);
+ var classes = await Parser.CheckAvailableOccupations(email.Text, password.Text);
+ applyForOccupation.Visibility = classes.Count > 0 ? ViewStates.Visible : ViewStates.Gone;
}
catch
{
- AvailableOccupations = new List<(string, string)>();
+ applyForOccupation.Visibility = ViewStates.Gone;
}
}
@@ -291,19 +281,23 @@ namespace GUTSchedule.Droid.Activities
};
applyForOccupation.Click += async (s, e) =>
{
+ List<(string, string)> classes = null;
try
{
applyForOccupation.Visibility = ViewStates.Gone;
- var occupations = await Parser.CheckAvailableOccupations(email.Text, password.Text);
- await Parser.ApplyForOccupations(email.Text, password.Text, occupations);
+ classes = await Parser.CheckAvailableOccupations(email.Text, password.Text);
+ await Parser.ApplyForOccupations(email.Text, password.Text, classes);
Toast.MakeText(ApplicationContext, Resources.GetText(Resource.String.attendSuccess), ToastLength.Short).Show();
}
catch (Exception ex)
{
Toast.MakeText(ApplicationContext, $"{Resources.GetText(Resource.String.attendFailed)}\n{ex.Message}", ToastLength.Short).Show();
}
- AvailableOccupations = await Parser.CheckAvailableOccupations(email.Text, password.Text);
+
+ classes = await Parser.CheckAvailableOccupations(email.Text, password.Text);
+ applyForOccupation.Visibility = classes.Count > 0 ? ViewStates.Visible : ViewStates.Gone;
};
+
validateCredential.Click += async (s, e) =>
{
try
@@ -314,7 +308,8 @@ namespace GUTSchedule.Droid.Activities
PreferenceManager.GetDefaultSharedPreferences(this).Edit().PutString("email", email.Text).Apply();
PreferenceManager.GetDefaultSharedPreferences(this).Edit().PutString("password", password.Text).Apply();
- AvailableOccupations = await Parser.CheckAvailableOccupations(email.Text, password.Text);
+ var classes = await Parser.CheckAvailableOccupations(email.Text, password.Text);
+ applyForOccupation.Visibility = classes.Count > 0 ? ViewStates.Visible : ViewStates.Gone;
Toast.MakeText(ApplicationContext, Resources.GetText(Resource.String.validationSuccess), ToastLength.Short).Show();
}
catch (Exception ex)
diff --git a/GUT.Schedule/GUTSchedule.Droid/GUTSchedule.Droid.csproj b/GUT.Schedule/GUTSchedule.Droid/GUTSchedule.Droid.csproj
index 5acf8e6..2ecf2db 100644
--- a/GUT.Schedule/GUTSchedule.Droid/GUTSchedule.Droid.csproj
+++ b/GUT.Schedule/GUTSchedule.Droid/GUTSchedule.Droid.csproj
@@ -133,7 +133,10 @@
4.7.0
- 13.0.1
+ 13.0.3
+
+
+ 4.3.4
@@ -141,7 +144,19 @@
28.0.0.3
-
+
+ 1.0.0.18
+
+
+ 1.0.0.17
+
+
+ 2.5.1.2
+
+
+ 1.2.0.4
+
+
diff --git a/GUT.Schedule/GUTSchedule.Droid/Properties/AndroidManifest.xml b/GUT.Schedule/GUTSchedule.Droid/Properties/AndroidManifest.xml
index af69b01..9e06538 100644
--- a/GUT.Schedule/GUTSchedule.Droid/Properties/AndroidManifest.xml
+++ b/GUT.Schedule/GUTSchedule.Droid/Properties/AndroidManifest.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/GUT.Schedule/GUTSchedule.Droid/Resources/Resource.designer.cs b/GUT.Schedule/GUTSchedule.Droid/Resources/Resource.designer.cs
index d13342e..3de204e 100644
--- a/GUT.Schedule/GUTSchedule.Droid/Resources/Resource.designer.cs
+++ b/GUT.Schedule/GUTSchedule.Droid/Resources/Resource.designer.cs
@@ -455,898 +455,1072 @@ namespace GUTSchedule.Droid
public const int activityName = 2130903077;
// aapt resource value: 0x7F030026
- public const int alertDialogButtonGroupStyle = 2130903078;
+ public const int adjustable = 2130903078;
// aapt resource value: 0x7F030027
- public const int alertDialogCenterButtons = 2130903079;
+ public const int alertDialogButtonGroupStyle = 2130903079;
// aapt resource value: 0x7F030028
- public const int alertDialogStyle = 2130903080;
+ public const int alertDialogCenterButtons = 2130903080;
// aapt resource value: 0x7F030029
- public const int alertDialogTheme = 2130903081;
+ public const int alertDialogStyle = 2130903081;
// aapt resource value: 0x7F03002A
- public const int allowStacking = 2130903082;
+ public const int alertDialogTheme = 2130903082;
// aapt resource value: 0x7F03002B
- public const int alpha = 2130903083;
+ public const int allowDividerAbove = 2130903083;
// aapt resource value: 0x7F03002C
- public const int alphabeticModifiers = 2130903084;
+ public const int allowDividerAfterLastItem = 2130903084;
// aapt resource value: 0x7F03002D
- public const int alwaysExpand = 2130903085;
+ public const int allowDividerBelow = 2130903085;
// aapt resource value: 0x7F03002E
- public const int arrowHeadLength = 2130903086;
+ public const int allowStacking = 2130903086;
// aapt resource value: 0x7F03002F
- public const int arrowShaftLength = 2130903087;
+ public const int alpha = 2130903087;
// aapt resource value: 0x7F030030
- public const int autoCompleteTextViewStyle = 2130903088;
+ public const int alphabeticModifiers = 2130903088;
// aapt resource value: 0x7F030031
- public const int autoSizeMaxTextSize = 2130903089;
+ public const int alwaysExpand = 2130903089;
// aapt resource value: 0x7F030032
- public const int autoSizeMinTextSize = 2130903090;
+ public const int arrowHeadLength = 2130903090;
// aapt resource value: 0x7F030033
- public const int autoSizePresetSizes = 2130903091;
+ public const int arrowShaftLength = 2130903091;
// aapt resource value: 0x7F030034
- public const int autoSizeStepGranularity = 2130903092;
+ public const int autoCompleteTextViewStyle = 2130903092;
// aapt resource value: 0x7F030035
- public const int autoSizeTextType = 2130903093;
+ public const int autoSizeMaxTextSize = 2130903093;
// aapt resource value: 0x7F030036
- public const int background = 2130903094;
+ public const int autoSizeMinTextSize = 2130903094;
// aapt resource value: 0x7F030037
- public const int backgroundSplit = 2130903095;
+ public const int autoSizePresetSizes = 2130903095;
// aapt resource value: 0x7F030038
- public const int backgroundStacked = 2130903096;
+ public const int autoSizeStepGranularity = 2130903096;
// aapt resource value: 0x7F030039
- public const int backgroundTint = 2130903097;
+ public const int autoSizeTextType = 2130903097;
// aapt resource value: 0x7F03003A
- public const int backgroundTintMode = 2130903098;
+ public const int background = 2130903098;
// aapt resource value: 0x7F03003B
- public const int barLength = 2130903099;
+ public const int backgroundSplit = 2130903099;
// aapt resource value: 0x7F03003C
- public const int borderlessButtonStyle = 2130903100;
+ public const int backgroundStacked = 2130903100;
// aapt resource value: 0x7F03003D
- public const int buttonBarButtonStyle = 2130903101;
+ public const int backgroundTint = 2130903101;
// aapt resource value: 0x7F03003E
- public const int buttonBarNegativeButtonStyle = 2130903102;
+ public const int backgroundTintMode = 2130903102;
// aapt resource value: 0x7F03003F
- public const int buttonBarNeutralButtonStyle = 2130903103;
+ public const int barLength = 2130903103;
// aapt resource value: 0x7F030040
- public const int buttonBarPositiveButtonStyle = 2130903104;
+ public const int borderlessButtonStyle = 2130903104;
// aapt resource value: 0x7F030041
- public const int buttonBarStyle = 2130903105;
+ public const int buttonBarButtonStyle = 2130903105;
// aapt resource value: 0x7F030042
- public const int buttonCompat = 2130903106;
+ public const int buttonBarNegativeButtonStyle = 2130903106;
// aapt resource value: 0x7F030043
- public const int buttonGravity = 2130903107;
+ public const int buttonBarNeutralButtonStyle = 2130903107;
// aapt resource value: 0x7F030044
- public const int buttonIconDimen = 2130903108;
+ public const int buttonBarPositiveButtonStyle = 2130903108;
// aapt resource value: 0x7F030045
- public const int buttonPanelSideLayout = 2130903109;
+ public const int buttonBarStyle = 2130903109;
// aapt resource value: 0x7F030046
- public const int buttonStyle = 2130903110;
+ public const int buttonCompat = 2130903110;
// aapt resource value: 0x7F030047
- public const int buttonStyleSmall = 2130903111;
+ public const int buttonGravity = 2130903111;
// aapt resource value: 0x7F030048
- public const int buttonTint = 2130903112;
+ public const int buttonIconDimen = 2130903112;
// aapt resource value: 0x7F030049
- public const int buttonTintMode = 2130903113;
+ public const int buttonPanelSideLayout = 2130903113;
// aapt resource value: 0x7F03004A
- public const int cardBackgroundColor = 2130903114;
+ public const int buttonStyle = 2130903114;
// aapt resource value: 0x7F03004B
- public const int cardCornerRadius = 2130903115;
+ public const int buttonStyleSmall = 2130903115;
// aapt resource value: 0x7F03004C
- public const int cardElevation = 2130903116;
+ public const int buttonTint = 2130903116;
// aapt resource value: 0x7F03004D
- public const int cardMaxElevation = 2130903117;
+ public const int buttonTintMode = 2130903117;
// aapt resource value: 0x7F03004E
- public const int cardPreventCornerOverlap = 2130903118;
+ public const int cardBackgroundColor = 2130903118;
// aapt resource value: 0x7F03004F
- public const int cardUseCompatPadding = 2130903119;
+ public const int cardCornerRadius = 2130903119;
// aapt resource value: 0x7F030050
- public const int cardViewStyle = 2130903120;
-
- // aapt resource value: 0x7F030054
- public const int checkboxStyle = 2130903124;
-
- // aapt resource value: 0x7F030055
- public const int checkedTextViewStyle = 2130903125;
+ public const int cardElevation = 2130903120;
// aapt resource value: 0x7F030051
- public const int checkMarkCompat = 2130903121;
+ public const int cardMaxElevation = 2130903121;
// aapt resource value: 0x7F030052
- public const int checkMarkTint = 2130903122;
+ public const int cardPreventCornerOverlap = 2130903122;
// aapt resource value: 0x7F030053
- public const int checkMarkTintMode = 2130903123;
+ public const int cardUseCompatPadding = 2130903123;
- // aapt resource value: 0x7F030056
- public const int clearTop = 2130903126;
+ // aapt resource value: 0x7F030054
+ public const int cardViewStyle = 2130903124;
- // aapt resource value: 0x7F030057
- public const int closeIcon = 2130903127;
-
- // aapt resource value: 0x7F030058
- public const int closeItemLayout = 2130903128;
+ // aapt resource value: 0x7F030055
+ public const int checkBoxPreferenceStyle = 2130903125;
// aapt resource value: 0x7F030059
- public const int collapseContentDescription = 2130903129;
+ public const int checkboxStyle = 2130903129;
// aapt resource value: 0x7F03005A
- public const int collapseIcon = 2130903130;
+ public const int checkedTextViewStyle = 2130903130;
+
+ // aapt resource value: 0x7F030056
+ public const int checkMarkCompat = 2130903126;
+
+ // aapt resource value: 0x7F030057
+ public const int checkMarkTint = 2130903127;
+
+ // aapt resource value: 0x7F030058
+ public const int checkMarkTintMode = 2130903128;
// aapt resource value: 0x7F03005B
- public const int color = 2130903131;
+ public const int clearTop = 2130903131;
// aapt resource value: 0x7F03005C
- public const int colorAccent = 2130903132;
+ public const int closeIcon = 2130903132;
// aapt resource value: 0x7F03005D
- public const int colorBackgroundFloating = 2130903133;
+ public const int closeItemLayout = 2130903133;
// aapt resource value: 0x7F03005E
- public const int colorButtonNormal = 2130903134;
+ public const int collapseContentDescription = 2130903134;
// aapt resource value: 0x7F03005F
- public const int colorControlActivated = 2130903135;
+ public const int collapseIcon = 2130903135;
// aapt resource value: 0x7F030060
- public const int colorControlHighlight = 2130903136;
+ public const int color = 2130903136;
// aapt resource value: 0x7F030061
- public const int colorControlNormal = 2130903137;
+ public const int colorAccent = 2130903137;
// aapt resource value: 0x7F030062
- public const int colorError = 2130903138;
+ public const int colorBackgroundFloating = 2130903138;
// aapt resource value: 0x7F030063
- public const int colorPrimary = 2130903139;
+ public const int colorButtonNormal = 2130903139;
// aapt resource value: 0x7F030064
- public const int colorPrimaryDark = 2130903140;
+ public const int colorControlActivated = 2130903140;
// aapt resource value: 0x7F030065
- public const int colorSwitchThumbNormal = 2130903141;
+ public const int colorControlHighlight = 2130903141;
// aapt resource value: 0x7F030066
- public const int commitIcon = 2130903142;
+ public const int colorControlNormal = 2130903142;
// aapt resource value: 0x7F030067
- public const int contentDescription = 2130903143;
+ public const int colorError = 2130903143;
// aapt resource value: 0x7F030068
- public const int contentInsetEnd = 2130903144;
+ public const int colorPrimary = 2130903144;
// aapt resource value: 0x7F030069
- public const int contentInsetEndWithActions = 2130903145;
+ public const int colorPrimaryDark = 2130903145;
// aapt resource value: 0x7F03006A
- public const int contentInsetLeft = 2130903146;
+ public const int colorSwitchThumbNormal = 2130903146;
// aapt resource value: 0x7F03006B
- public const int contentInsetRight = 2130903147;
+ public const int commitIcon = 2130903147;
// aapt resource value: 0x7F03006C
- public const int contentInsetStart = 2130903148;
+ public const int contentDescription = 2130903148;
// aapt resource value: 0x7F03006D
- public const int contentInsetStartWithNavigation = 2130903149;
+ public const int contentInsetEnd = 2130903149;
// aapt resource value: 0x7F03006E
- public const int contentPadding = 2130903150;
+ public const int contentInsetEndWithActions = 2130903150;
// aapt resource value: 0x7F03006F
- public const int contentPaddingBottom = 2130903151;
+ public const int contentInsetLeft = 2130903151;
// aapt resource value: 0x7F030070
- public const int contentPaddingLeft = 2130903152;
+ public const int contentInsetRight = 2130903152;
// aapt resource value: 0x7F030071
- public const int contentPaddingRight = 2130903153;
+ public const int contentInsetStart = 2130903153;
// aapt resource value: 0x7F030072
- public const int contentPaddingTop = 2130903154;
+ public const int contentInsetStartWithNavigation = 2130903154;
// aapt resource value: 0x7F030073
- public const int controlBackground = 2130903155;
+ public const int contentPadding = 2130903155;
// aapt resource value: 0x7F030074
- public const int coordinatorLayoutStyle = 2130903156;
+ public const int contentPaddingBottom = 2130903156;
// aapt resource value: 0x7F030075
- public const int customNavigationLayout = 2130903157;
+ public const int contentPaddingLeft = 2130903157;
// aapt resource value: 0x7F030076
- public const int defaultQueryHint = 2130903158;
+ public const int contentPaddingRight = 2130903158;
// aapt resource value: 0x7F030077
- public const int dialogCornerRadius = 2130903159;
+ public const int contentPaddingTop = 2130903159;
// aapt resource value: 0x7F030078
- public const int dialogPreferredPadding = 2130903160;
+ public const int controlBackground = 2130903160;
// aapt resource value: 0x7F030079
- public const int dialogTheme = 2130903161;
+ public const int coordinatorLayoutStyle = 2130903161;
// aapt resource value: 0x7F03007A
- public const int displayOptions = 2130903162;
+ public const int customNavigationLayout = 2130903162;
// aapt resource value: 0x7F03007B
- public const int divider = 2130903163;
+ public const int defaultQueryHint = 2130903163;
// aapt resource value: 0x7F03007C
- public const int dividerHorizontal = 2130903164;
+ public const int defaultValue = 2130903164;
// aapt resource value: 0x7F03007D
- public const int dividerPadding = 2130903165;
+ public const int dependency = 2130903165;
// aapt resource value: 0x7F03007E
- public const int dividerVertical = 2130903166;
+ public const int dialogCornerRadius = 2130903166;
// aapt resource value: 0x7F03007F
- public const int drawableBottomCompat = 2130903167;
+ public const int dialogIcon = 2130903167;
// aapt resource value: 0x7F030080
- public const int drawableEndCompat = 2130903168;
+ public const int dialogLayout = 2130903168;
// aapt resource value: 0x7F030081
- public const int drawableLeftCompat = 2130903169;
+ public const int dialogMessage = 2130903169;
// aapt resource value: 0x7F030082
- public const int drawableRightCompat = 2130903170;
+ public const int dialogPreferenceStyle = 2130903170;
// aapt resource value: 0x7F030083
- public const int drawableSize = 2130903171;
+ public const int dialogPreferredPadding = 2130903171;
// aapt resource value: 0x7F030084
- public const int drawableStartCompat = 2130903172;
+ public const int dialogTheme = 2130903172;
// aapt resource value: 0x7F030085
- public const int drawableTint = 2130903173;
+ public const int dialogTitle = 2130903173;
// aapt resource value: 0x7F030086
- public const int drawableTintMode = 2130903174;
+ public const int disableDependentsState = 2130903174;
// aapt resource value: 0x7F030087
- public const int drawableTopCompat = 2130903175;
+ public const int displayOptions = 2130903175;
// aapt resource value: 0x7F030088
- public const int drawerArrowStyle = 2130903176;
+ public const int divider = 2130903176;
// aapt resource value: 0x7F030089
- public const int drawerLayoutStyle = 2130903177;
-
- // aapt resource value: 0x7F03008B
- public const int dropdownListPreferredItemHeight = 2130903179;
+ public const int dividerHorizontal = 2130903177;
// aapt resource value: 0x7F03008A
- public const int dropDownListViewStyle = 2130903178;
+ public const int dividerPadding = 2130903178;
+
+ // aapt resource value: 0x7F03008B
+ public const int dividerVertical = 2130903179;
// aapt resource value: 0x7F03008C
- public const int editTextBackground = 2130903180;
+ public const int drawableBottomCompat = 2130903180;
// aapt resource value: 0x7F03008D
- public const int editTextColor = 2130903181;
+ public const int drawableEndCompat = 2130903181;
// aapt resource value: 0x7F03008E
- public const int editTextStyle = 2130903182;
+ public const int drawableLeftCompat = 2130903182;
// aapt resource value: 0x7F03008F
- public const int elevation = 2130903183;
+ public const int drawableRightCompat = 2130903183;
// aapt resource value: 0x7F030090
- public const int emojiCompatEnabled = 2130903184;
+ public const int drawableSize = 2130903184;
// aapt resource value: 0x7F030091
- public const int expandActivityOverflowButtonDrawable = 2130903185;
+ public const int drawableStartCompat = 2130903185;
// aapt resource value: 0x7F030092
- public const int fastScrollEnabled = 2130903186;
+ public const int drawableTint = 2130903186;
// aapt resource value: 0x7F030093
- public const int fastScrollHorizontalThumbDrawable = 2130903187;
+ public const int drawableTintMode = 2130903187;
// aapt resource value: 0x7F030094
- public const int fastScrollHorizontalTrackDrawable = 2130903188;
+ public const int drawableTopCompat = 2130903188;
// aapt resource value: 0x7F030095
- public const int fastScrollVerticalThumbDrawable = 2130903189;
+ public const int drawerArrowStyle = 2130903189;
// aapt resource value: 0x7F030096
- public const int fastScrollVerticalTrackDrawable = 2130903190;
-
- // aapt resource value: 0x7F030097
- public const int finishPrimaryWithSecondary = 2130903191;
+ public const int drawerLayoutStyle = 2130903190;
// aapt resource value: 0x7F030098
- public const int finishSecondaryWithPrimary = 2130903192;
+ public const int dropdownListPreferredItemHeight = 2130903192;
+
+ // aapt resource value: 0x7F030097
+ public const int dropDownListViewStyle = 2130903191;
// aapt resource value: 0x7F030099
- public const int firstBaselineToTopHeight = 2130903193;
+ public const int dropdownPreferenceStyle = 2130903193;
// aapt resource value: 0x7F03009A
- public const int font = 2130903194;
+ public const int editTextBackground = 2130903194;
// aapt resource value: 0x7F03009B
- public const int fontFamily = 2130903195;
+ public const int editTextColor = 2130903195;
// aapt resource value: 0x7F03009C
- public const int fontProviderAuthority = 2130903196;
+ public const int editTextPreferenceStyle = 2130903196;
// aapt resource value: 0x7F03009D
- public const int fontProviderCerts = 2130903197;
+ public const int editTextStyle = 2130903197;
// aapt resource value: 0x7F03009E
- public const int fontProviderFetchStrategy = 2130903198;
+ public const int elevation = 2130903198;
// aapt resource value: 0x7F03009F
- public const int fontProviderFetchTimeout = 2130903199;
+ public const int emojiCompatEnabled = 2130903199;
// aapt resource value: 0x7F0300A0
- public const int fontProviderPackage = 2130903200;
+ public const int enableCopying = 2130903200;
// aapt resource value: 0x7F0300A1
- public const int fontProviderQuery = 2130903201;
+ public const int enabled = 2130903201;
// aapt resource value: 0x7F0300A2
- public const int fontProviderSystemFontFamily = 2130903202;
+ public const int entries = 2130903202;
// aapt resource value: 0x7F0300A3
- public const int fontStyle = 2130903203;
+ public const int entryValues = 2130903203;
// aapt resource value: 0x7F0300A4
- public const int fontVariationSettings = 2130903204;
+ public const int expandActivityOverflowButtonDrawable = 2130903204;
// aapt resource value: 0x7F0300A5
- public const int fontWeight = 2130903205;
+ public const int fastScrollEnabled = 2130903205;
// aapt resource value: 0x7F0300A6
- public const int gapBetweenBars = 2130903206;
+ public const int fastScrollHorizontalThumbDrawable = 2130903206;
// aapt resource value: 0x7F0300A7
- public const int goIcon = 2130903207;
+ public const int fastScrollHorizontalTrackDrawable = 2130903207;
// aapt resource value: 0x7F0300A8
- public const int height = 2130903208;
+ public const int fastScrollVerticalThumbDrawable = 2130903208;
// aapt resource value: 0x7F0300A9
- public const int hideOnContentScroll = 2130903209;
+ public const int fastScrollVerticalTrackDrawable = 2130903209;
// aapt resource value: 0x7F0300AA
- public const int homeAsUpIndicator = 2130903210;
+ public const int finishPrimaryWithSecondary = 2130903210;
// aapt resource value: 0x7F0300AB
- public const int homeLayout = 2130903211;
+ public const int finishSecondaryWithPrimary = 2130903211;
// aapt resource value: 0x7F0300AC
- public const int icon = 2130903212;
-
- // aapt resource value: 0x7F0300AF
- public const int iconifiedByDefault = 2130903215;
+ public const int firstBaselineToTopHeight = 2130903212;
// aapt resource value: 0x7F0300AD
- public const int iconTint = 2130903213;
+ public const int font = 2130903213;
// aapt resource value: 0x7F0300AE
- public const int iconTintMode = 2130903214;
+ public const int fontFamily = 2130903214;
+
+ // aapt resource value: 0x7F0300AF
+ public const int fontProviderAuthority = 2130903215;
// aapt resource value: 0x7F0300B0
- public const int imageButtonStyle = 2130903216;
+ public const int fontProviderCerts = 2130903216;
// aapt resource value: 0x7F0300B1
- public const int indeterminateProgressStyle = 2130903217;
+ public const int fontProviderFetchStrategy = 2130903217;
// aapt resource value: 0x7F0300B2
- public const int initialActivityCount = 2130903218;
+ public const int fontProviderFetchTimeout = 2130903218;
// aapt resource value: 0x7F0300B3
- public const int isLightTheme = 2130903219;
+ public const int fontProviderPackage = 2130903219;
// aapt resource value: 0x7F0300B4
- public const int itemPadding = 2130903220;
+ public const int fontProviderQuery = 2130903220;
// aapt resource value: 0x7F0300B5
- public const int keylines = 2130903221;
-
- // aapt resource value: 0x7F0300B7
- public const int lastBaselineToBottomHeight = 2130903223;
-
- // aapt resource value: 0x7F0300B8
- public const int layout = 2130903224;
-
- // aapt resource value: 0x7F0300B9
- public const int layoutManager = 2130903225;
-
- // aapt resource value: 0x7F0300BA
- public const int layout_anchor = 2130903226;
-
- // aapt resource value: 0x7F0300BB
- public const int layout_anchorGravity = 2130903227;
-
- // aapt resource value: 0x7F0300BC
- public const int layout_behavior = 2130903228;
-
- // aapt resource value: 0x7F0300BD
- public const int layout_dodgeInsetEdges = 2130903229;
-
- // aapt resource value: 0x7F0300BE
- public const int layout_insetEdge = 2130903230;
-
- // aapt resource value: 0x7F0300BF
- public const int layout_keyline = 2130903231;
-
- // aapt resource value: 0x7F0300C0
- public const int lineHeight = 2130903232;
-
- // aapt resource value: 0x7F0300C1
- public const int listChoiceBackgroundIndicator = 2130903233;
-
- // aapt resource value: 0x7F0300C2
- public const int listChoiceIndicatorMultipleAnimated = 2130903234;
-
- // aapt resource value: 0x7F0300C3
- public const int listChoiceIndicatorSingleAnimated = 2130903235;
-
- // aapt resource value: 0x7F0300C4
- public const int listDividerAlertDialog = 2130903236;
-
- // aapt resource value: 0x7F0300C5
- public const int listItemLayout = 2130903237;
-
- // aapt resource value: 0x7F0300C6
- public const int listLayout = 2130903238;
-
- // aapt resource value: 0x7F0300C7
- public const int listMenuViewStyle = 2130903239;
-
- // aapt resource value: 0x7F0300C8
- public const int listPopupWindowStyle = 2130903240;
-
- // aapt resource value: 0x7F0300C9
- public const int listPreferredItemHeight = 2130903241;
-
- // aapt resource value: 0x7F0300CA
- public const int listPreferredItemHeightLarge = 2130903242;
-
- // aapt resource value: 0x7F0300CB
- public const int listPreferredItemHeightSmall = 2130903243;
-
- // aapt resource value: 0x7F0300CC
- public const int listPreferredItemPaddingEnd = 2130903244;
-
- // aapt resource value: 0x7F0300CD
- public const int listPreferredItemPaddingLeft = 2130903245;
-
- // aapt resource value: 0x7F0300CE
- public const int listPreferredItemPaddingRight = 2130903246;
-
- // aapt resource value: 0x7F0300CF
- public const int listPreferredItemPaddingStart = 2130903247;
-
- // aapt resource value: 0x7F0300D0
- public const int logo = 2130903248;
-
- // aapt resource value: 0x7F0300D1
- public const int logoDescription = 2130903249;
+ public const int fontProviderSystemFontFamily = 2130903221;
// aapt resource value: 0x7F0300B6
- public const int lStar = 2130903222;
+ public const int fontStyle = 2130903222;
+
+ // aapt resource value: 0x7F0300B7
+ public const int fontVariationSettings = 2130903223;
+
+ // aapt resource value: 0x7F0300B8
+ public const int fontWeight = 2130903224;
+
+ // aapt resource value: 0x7F0300B9
+ public const int fragment = 2130903225;
+
+ // aapt resource value: 0x7F0300BA
+ public const int gapBetweenBars = 2130903226;
+
+ // aapt resource value: 0x7F0300BB
+ public const int goIcon = 2130903227;
+
+ // aapt resource value: 0x7F0300BC
+ public const int height = 2130903228;
+
+ // aapt resource value: 0x7F0300BD
+ public const int hideOnContentScroll = 2130903229;
+
+ // aapt resource value: 0x7F0300BE
+ public const int homeAsUpIndicator = 2130903230;
+
+ // aapt resource value: 0x7F0300BF
+ public const int homeLayout = 2130903231;
+
+ // aapt resource value: 0x7F0300C0
+ public const int icon = 2130903232;
+
+ // aapt resource value: 0x7F0300C4
+ public const int iconifiedByDefault = 2130903236;
+
+ // aapt resource value: 0x7F0300C1
+ public const int iconSpaceReserved = 2130903233;
+
+ // aapt resource value: 0x7F0300C2
+ public const int iconTint = 2130903234;
+
+ // aapt resource value: 0x7F0300C3
+ public const int iconTintMode = 2130903235;
+
+ // aapt resource value: 0x7F0300C5
+ public const int imageButtonStyle = 2130903237;
+
+ // aapt resource value: 0x7F0300C6
+ public const int indeterminateProgressStyle = 2130903238;
+
+ // aapt resource value: 0x7F0300C7
+ public const int initialActivityCount = 2130903239;
+
+ // aapt resource value: 0x7F0300C8
+ public const int initialExpandedChildrenCount = 2130903240;
+
+ // aapt resource value: 0x7F0300C9
+ public const int isLightTheme = 2130903241;
+
+ // aapt resource value: 0x7F0300CA
+ public const int isPreferenceVisible = 2130903242;
+
+ // aapt resource value: 0x7F0300CB
+ public const int itemPadding = 2130903243;
+
+ // aapt resource value: 0x7F0300CC
+ public const int key = 2130903244;
+
+ // aapt resource value: 0x7F0300CD
+ public const int keylines = 2130903245;
+
+ // aapt resource value: 0x7F0300CF
+ public const int lastBaselineToBottomHeight = 2130903247;
+
+ // aapt resource value: 0x7F0300D0
+ public const int layout = 2130903248;
+
+ // aapt resource value: 0x7F0300D1
+ public const int layoutManager = 2130903249;
// aapt resource value: 0x7F0300D2
- public const int maxButtonHeight = 2130903250;
+ public const int layout_anchor = 2130903250;
// aapt resource value: 0x7F0300D3
- public const int measureWithLargestChild = 2130903251;
+ public const int layout_anchorGravity = 2130903251;
// aapt resource value: 0x7F0300D4
- public const int menu = 2130903252;
+ public const int layout_behavior = 2130903252;
// aapt resource value: 0x7F0300D5
- public const int multiChoiceItemLayout = 2130903253;
+ public const int layout_dodgeInsetEdges = 2130903253;
// aapt resource value: 0x7F0300D6
- public const int navigationContentDescription = 2130903254;
+ public const int layout_insetEdge = 2130903254;
// aapt resource value: 0x7F0300D7
- public const int navigationIcon = 2130903255;
+ public const int layout_keyline = 2130903255;
// aapt resource value: 0x7F0300D8
- public const int navigationMode = 2130903256;
+ public const int lineHeight = 2130903256;
// aapt resource value: 0x7F0300D9
- public const int nestedScrollViewStyle = 2130903257;
+ public const int listChoiceBackgroundIndicator = 2130903257;
// aapt resource value: 0x7F0300DA
- public const int numericModifiers = 2130903258;
+ public const int listChoiceIndicatorMultipleAnimated = 2130903258;
// aapt resource value: 0x7F0300DB
- public const int overlapAnchor = 2130903259;
+ public const int listChoiceIndicatorSingleAnimated = 2130903259;
// aapt resource value: 0x7F0300DC
- public const int paddingBottomNoButtons = 2130903260;
+ public const int listDividerAlertDialog = 2130903260;
// aapt resource value: 0x7F0300DD
- public const int paddingEnd = 2130903261;
+ public const int listItemLayout = 2130903261;
// aapt resource value: 0x7F0300DE
- public const int paddingStart = 2130903262;
+ public const int listLayout = 2130903262;
// aapt resource value: 0x7F0300DF
- public const int paddingTopNoTitle = 2130903263;
+ public const int listMenuViewStyle = 2130903263;
// aapt resource value: 0x7F0300E0
- public const int panelBackground = 2130903264;
+ public const int listPopupWindowStyle = 2130903264;
// aapt resource value: 0x7F0300E1
- public const int panelMenuListTheme = 2130903265;
+ public const int listPreferredItemHeight = 2130903265;
// aapt resource value: 0x7F0300E2
- public const int panelMenuListWidth = 2130903266;
+ public const int listPreferredItemHeightLarge = 2130903266;
// aapt resource value: 0x7F0300E3
- public const int placeholderActivityName = 2130903267;
+ public const int listPreferredItemHeightSmall = 2130903267;
// aapt resource value: 0x7F0300E4
- public const int popupMenuStyle = 2130903268;
+ public const int listPreferredItemPaddingEnd = 2130903268;
// aapt resource value: 0x7F0300E5
- public const int popupTheme = 2130903269;
+ public const int listPreferredItemPaddingLeft = 2130903269;
// aapt resource value: 0x7F0300E6
- public const int popupWindowStyle = 2130903270;
+ public const int listPreferredItemPaddingRight = 2130903270;
// aapt resource value: 0x7F0300E7
- public const int preserveIconSpacing = 2130903271;
+ public const int listPreferredItemPaddingStart = 2130903271;
// aapt resource value: 0x7F0300E8
- public const int primaryActivityName = 2130903272;
+ public const int logo = 2130903272;
// aapt resource value: 0x7F0300E9
- public const int progressBarPadding = 2130903273;
+ public const int logoDescription = 2130903273;
+
+ // aapt resource value: 0x7F0300CE
+ public const int lStar = 2130903246;
// aapt resource value: 0x7F0300EA
- public const int progressBarStyle = 2130903274;
+ public const int maxButtonHeight = 2130903274;
// aapt resource value: 0x7F0300EB
- public const int queryBackground = 2130903275;
+ public const int maxHeight = 2130903275;
// aapt resource value: 0x7F0300EC
- public const int queryHint = 2130903276;
+ public const int maxWidth = 2130903276;
// aapt resource value: 0x7F0300ED
- public const int queryPatterns = 2130903277;
+ public const int measureWithLargestChild = 2130903277;
// aapt resource value: 0x7F0300EE
- public const int radioButtonStyle = 2130903278;
+ public const int menu = 2130903278;
// aapt resource value: 0x7F0300EF
- public const int ratingBarStyle = 2130903279;
+ public const int min = 2130903279;
// aapt resource value: 0x7F0300F0
- public const int ratingBarStyleIndicator = 2130903280;
+ public const int multiChoiceItemLayout = 2130903280;
// aapt resource value: 0x7F0300F1
- public const int ratingBarStyleSmall = 2130903281;
+ public const int navigationContentDescription = 2130903281;
// aapt resource value: 0x7F0300F2
- public const int recyclerViewStyle = 2130903282;
+ public const int navigationIcon = 2130903282;
// aapt resource value: 0x7F0300F3
- public const int reverseLayout = 2130903283;
+ public const int navigationMode = 2130903283;
// aapt resource value: 0x7F0300F4
- public const int searchHintIcon = 2130903284;
+ public const int negativeButtonText = 2130903284;
// aapt resource value: 0x7F0300F5
- public const int searchIcon = 2130903285;
+ public const int nestedScrollViewStyle = 2130903285;
// aapt resource value: 0x7F0300F6
- public const int searchViewStyle = 2130903286;
+ public const int numericModifiers = 2130903286;
// aapt resource value: 0x7F0300F7
- public const int secondaryActivityAction = 2130903287;
+ public const int order = 2130903287;
// aapt resource value: 0x7F0300F8
- public const int secondaryActivityName = 2130903288;
+ public const int orderingFromXml = 2130903288;
// aapt resource value: 0x7F0300F9
- public const int seekBarStyle = 2130903289;
+ public const int overlapAnchor = 2130903289;
// aapt resource value: 0x7F0300FA
- public const int selectableItemBackground = 2130903290;
+ public const int paddingBottomNoButtons = 2130903290;
// aapt resource value: 0x7F0300FB
- public const int selectableItemBackgroundBorderless = 2130903291;
+ public const int paddingEnd = 2130903291;
// aapt resource value: 0x7F0300FC
- public const int shortcutMatchRequired = 2130903292;
+ public const int paddingStart = 2130903292;
// aapt resource value: 0x7F0300FD
- public const int showAsAction = 2130903293;
+ public const int paddingTopNoTitle = 2130903293;
// aapt resource value: 0x7F0300FE
- public const int showDividers = 2130903294;
+ public const int panelBackground = 2130903294;
// aapt resource value: 0x7F0300FF
- public const int showText = 2130903295;
+ public const int panelMenuListTheme = 2130903295;
// aapt resource value: 0x7F030100
- public const int showTitle = 2130903296;
+ public const int panelMenuListWidth = 2130903296;
// aapt resource value: 0x7F030101
- public const int singleChoiceItemLayout = 2130903297;
+ public const int persistent = 2130903297;
// aapt resource value: 0x7F030102
- public const int spanCount = 2130903298;
+ public const int placeholderActivityName = 2130903298;
// aapt resource value: 0x7F030103
- public const int spinBars = 2130903299;
+ public const int popupMenuStyle = 2130903299;
// aapt resource value: 0x7F030104
- public const int spinnerDropDownItemStyle = 2130903300;
+ public const int popupTheme = 2130903300;
// aapt resource value: 0x7F030105
- public const int spinnerStyle = 2130903301;
+ public const int popupWindowStyle = 2130903301;
// aapt resource value: 0x7F030106
- public const int splitLayoutDirection = 2130903302;
+ public const int positiveButtonText = 2130903302;
// aapt resource value: 0x7F030107
- public const int splitMinSmallestWidth = 2130903303;
+ public const int preferenceCategoryStyle = 2130903303;
// aapt resource value: 0x7F030108
- public const int splitMinWidth = 2130903304;
+ public const int preferenceCategoryTitleTextAppearance = 2130903304;
// aapt resource value: 0x7F030109
- public const int splitRatio = 2130903305;
+ public const int preferenceCategoryTitleTextColor = 2130903305;
// aapt resource value: 0x7F03010A
- public const int splitTrack = 2130903306;
+ public const int preferenceFragmentCompatStyle = 2130903306;
// aapt resource value: 0x7F03010B
- public const int srcCompat = 2130903307;
+ public const int preferenceFragmentListStyle = 2130903307;
// aapt resource value: 0x7F03010C
- public const int stackFromEnd = 2130903308;
+ public const int preferenceFragmentStyle = 2130903308;
// aapt resource value: 0x7F03010D
- public const int state_above_anchor = 2130903309;
+ public const int preferenceInformationStyle = 2130903309;
// aapt resource value: 0x7F03010E
- public const int statusBarBackground = 2130903310;
+ public const int preferenceScreenStyle = 2130903310;
// aapt resource value: 0x7F03010F
- public const int subMenuArrow = 2130903311;
+ public const int preferenceStyle = 2130903311;
// aapt resource value: 0x7F030110
- public const int submitBackground = 2130903312;
+ public const int preferenceTheme = 2130903312;
// aapt resource value: 0x7F030111
- public const int subtitle = 2130903313;
+ public const int preserveIconSpacing = 2130903313;
// aapt resource value: 0x7F030112
- public const int subtitleTextAppearance = 2130903314;
+ public const int primaryActivityName = 2130903314;
// aapt resource value: 0x7F030113
- public const int subtitleTextColor = 2130903315;
+ public const int progressBarPadding = 2130903315;
// aapt resource value: 0x7F030114
- public const int subtitleTextStyle = 2130903316;
+ public const int progressBarStyle = 2130903316;
// aapt resource value: 0x7F030115
- public const int suggestionRowLayout = 2130903317;
+ public const int queryBackground = 2130903317;
// aapt resource value: 0x7F030116
- public const int swipeRefreshLayoutProgressSpinnerBackgroundColor = 2130903318;
+ public const int queryHint = 2130903318;
// aapt resource value: 0x7F030117
- public const int switchMinWidth = 2130903319;
+ public const int queryPatterns = 2130903319;
// aapt resource value: 0x7F030118
- public const int switchPadding = 2130903320;
+ public const int radioButtonStyle = 2130903320;
// aapt resource value: 0x7F030119
- public const int switchStyle = 2130903321;
+ public const int ratingBarStyle = 2130903321;
// aapt resource value: 0x7F03011A
- public const int switchTextAppearance = 2130903322;
+ public const int ratingBarStyleIndicator = 2130903322;
// aapt resource value: 0x7F03011B
- public const int textAllCaps = 2130903323;
+ public const int ratingBarStyleSmall = 2130903323;
// aapt resource value: 0x7F03011C
- public const int textAppearanceLargePopupMenu = 2130903324;
+ public const int recyclerViewStyle = 2130903324;
// aapt resource value: 0x7F03011D
- public const int textAppearanceListItem = 2130903325;
+ public const int reverseLayout = 2130903325;
// aapt resource value: 0x7F03011E
- public const int textAppearanceListItemSecondary = 2130903326;
+ public const int searchHintIcon = 2130903326;
// aapt resource value: 0x7F03011F
- public const int textAppearanceListItemSmall = 2130903327;
+ public const int searchIcon = 2130903327;
// aapt resource value: 0x7F030120
- public const int textAppearancePopupMenuHeader = 2130903328;
+ public const int searchViewStyle = 2130903328;
// aapt resource value: 0x7F030121
- public const int textAppearanceSearchResultSubtitle = 2130903329;
+ public const int secondaryActivityAction = 2130903329;
// aapt resource value: 0x7F030122
- public const int textAppearanceSearchResultTitle = 2130903330;
+ public const int secondaryActivityName = 2130903330;
// aapt resource value: 0x7F030123
- public const int textAppearanceSmallPopupMenu = 2130903331;
+ public const int seekBarIncrement = 2130903331;
// aapt resource value: 0x7F030124
- public const int textColorAlertDialogListItem = 2130903332;
+ public const int seekBarPreferenceStyle = 2130903332;
// aapt resource value: 0x7F030125
- public const int textColorSearchUrl = 2130903333;
+ public const int seekBarStyle = 2130903333;
// aapt resource value: 0x7F030126
- public const int textLocale = 2130903334;
+ public const int selectable = 2130903334;
// aapt resource value: 0x7F030127
- public const int theme = 2130903335;
+ public const int selectableItemBackground = 2130903335;
// aapt resource value: 0x7F030128
- public const int thickness = 2130903336;
+ public const int selectableItemBackgroundBorderless = 2130903336;
// aapt resource value: 0x7F030129
- public const int thumbTextPadding = 2130903337;
+ public const int shortcutMatchRequired = 2130903337;
// aapt resource value: 0x7F03012A
- public const int thumbTint = 2130903338;
+ public const int shouldDisableView = 2130903338;
// aapt resource value: 0x7F03012B
- public const int thumbTintMode = 2130903339;
+ public const int showAsAction = 2130903339;
// aapt resource value: 0x7F03012C
- public const int tickMark = 2130903340;
+ public const int showDividers = 2130903340;
// aapt resource value: 0x7F03012D
- public const int tickMarkTint = 2130903341;
+ public const int showSeekBarValue = 2130903341;
// aapt resource value: 0x7F03012E
- public const int tickMarkTintMode = 2130903342;
+ public const int showText = 2130903342;
// aapt resource value: 0x7F03012F
- public const int tint = 2130903343;
+ public const int showTitle = 2130903343;
// aapt resource value: 0x7F030130
- public const int tintMode = 2130903344;
+ public const int singleChoiceItemLayout = 2130903344;
// aapt resource value: 0x7F030131
- public const int title = 2130903345;
+ public const int singleLineTitle = 2130903345;
// aapt resource value: 0x7F030132
- public const int titleMargin = 2130903346;
+ public const int spanCount = 2130903346;
// aapt resource value: 0x7F030133
- public const int titleMarginBottom = 2130903347;
+ public const int spinBars = 2130903347;
// aapt resource value: 0x7F030134
- public const int titleMarginEnd = 2130903348;
-
- // aapt resource value: 0x7F030137
- public const int titleMargins = 2130903351;
+ public const int spinnerDropDownItemStyle = 2130903348;
// aapt resource value: 0x7F030135
- public const int titleMarginStart = 2130903349;
+ public const int spinnerStyle = 2130903349;
// aapt resource value: 0x7F030136
- public const int titleMarginTop = 2130903350;
+ public const int splitLayoutDirection = 2130903350;
+
+ // aapt resource value: 0x7F030137
+ public const int splitMinSmallestWidth = 2130903351;
// aapt resource value: 0x7F030138
- public const int titleTextAppearance = 2130903352;
+ public const int splitMinWidth = 2130903352;
// aapt resource value: 0x7F030139
- public const int titleTextColor = 2130903353;
+ public const int splitRatio = 2130903353;
// aapt resource value: 0x7F03013A
- public const int titleTextStyle = 2130903354;
+ public const int splitTrack = 2130903354;
// aapt resource value: 0x7F03013B
- public const int toolbarNavigationButtonStyle = 2130903355;
+ public const int srcCompat = 2130903355;
// aapt resource value: 0x7F03013C
- public const int toolbarStyle = 2130903356;
+ public const int stackFromEnd = 2130903356;
// aapt resource value: 0x7F03013D
- public const int tooltipForegroundColor = 2130903357;
+ public const int state_above_anchor = 2130903357;
// aapt resource value: 0x7F03013E
- public const int tooltipFrameBackground = 2130903358;
+ public const int statusBarBackground = 2130903358;
// aapt resource value: 0x7F03013F
- public const int tooltipText = 2130903359;
+ public const int subMenuArrow = 2130903359;
// aapt resource value: 0x7F030140
- public const int track = 2130903360;
+ public const int submitBackground = 2130903360;
// aapt resource value: 0x7F030141
- public const int trackTint = 2130903361;
+ public const int subtitle = 2130903361;
// aapt resource value: 0x7F030142
- public const int trackTintMode = 2130903362;
+ public const int subtitleTextAppearance = 2130903362;
// aapt resource value: 0x7F030143
- public const int ttcIndex = 2130903363;
+ public const int subtitleTextColor = 2130903363;
// aapt resource value: 0x7F030144
- public const int viewInflaterClass = 2130903364;
+ public const int subtitleTextStyle = 2130903364;
// aapt resource value: 0x7F030145
- public const int voiceIcon = 2130903365;
+ public const int suggestionRowLayout = 2130903365;
// aapt resource value: 0x7F030146
- public const int windowActionBar = 2130903366;
+ public const int summary = 2130903366;
// aapt resource value: 0x7F030147
- public const int windowActionBarOverlay = 2130903367;
+ public const int summaryOff = 2130903367;
// aapt resource value: 0x7F030148
- public const int windowActionModeOverlay = 2130903368;
+ public const int summaryOn = 2130903368;
// aapt resource value: 0x7F030149
- public const int windowFixedHeightMajor = 2130903369;
+ public const int swipeRefreshLayoutProgressSpinnerBackgroundColor = 2130903369;
// aapt resource value: 0x7F03014A
- public const int windowFixedHeightMinor = 2130903370;
+ public const int switchMinWidth = 2130903370;
// aapt resource value: 0x7F03014B
- public const int windowFixedWidthMajor = 2130903371;
+ public const int switchPadding = 2130903371;
// aapt resource value: 0x7F03014C
- public const int windowFixedWidthMinor = 2130903372;
+ public const int switchPreferenceCompatStyle = 2130903372;
// aapt resource value: 0x7F03014D
- public const int windowMinWidthMajor = 2130903373;
+ public const int switchPreferenceStyle = 2130903373;
// aapt resource value: 0x7F03014E
- public const int windowMinWidthMinor = 2130903374;
+ public const int switchStyle = 2130903374;
// aapt resource value: 0x7F03014F
- public const int windowNoTitle = 2130903375;
+ public const int switchTextAppearance = 2130903375;
+
+ // aapt resource value: 0x7F030150
+ public const int switchTextOff = 2130903376;
+
+ // aapt resource value: 0x7F030151
+ public const int switchTextOn = 2130903377;
+
+ // aapt resource value: 0x7F030152
+ public const int textAllCaps = 2130903378;
+
+ // aapt resource value: 0x7F030153
+ public const int textAppearanceLargePopupMenu = 2130903379;
+
+ // aapt resource value: 0x7F030154
+ public const int textAppearanceListItem = 2130903380;
+
+ // aapt resource value: 0x7F030155
+ public const int textAppearanceListItemSecondary = 2130903381;
+
+ // aapt resource value: 0x7F030156
+ public const int textAppearanceListItemSmall = 2130903382;
+
+ // aapt resource value: 0x7F030157
+ public const int textAppearancePopupMenuHeader = 2130903383;
+
+ // aapt resource value: 0x7F030158
+ public const int textAppearanceSearchResultSubtitle = 2130903384;
+
+ // aapt resource value: 0x7F030159
+ public const int textAppearanceSearchResultTitle = 2130903385;
+
+ // aapt resource value: 0x7F03015A
+ public const int textAppearanceSmallPopupMenu = 2130903386;
+
+ // aapt resource value: 0x7F03015B
+ public const int textColorAlertDialogListItem = 2130903387;
+
+ // aapt resource value: 0x7F03015C
+ public const int textColorSearchUrl = 2130903388;
+
+ // aapt resource value: 0x7F03015D
+ public const int textLocale = 2130903389;
+
+ // aapt resource value: 0x7F03015E
+ public const int theme = 2130903390;
+
+ // aapt resource value: 0x7F03015F
+ public const int thickness = 2130903391;
+
+ // aapt resource value: 0x7F030160
+ public const int thumbTextPadding = 2130903392;
+
+ // aapt resource value: 0x7F030161
+ public const int thumbTint = 2130903393;
+
+ // aapt resource value: 0x7F030162
+ public const int thumbTintMode = 2130903394;
+
+ // aapt resource value: 0x7F030163
+ public const int tickMark = 2130903395;
+
+ // aapt resource value: 0x7F030164
+ public const int tickMarkTint = 2130903396;
+
+ // aapt resource value: 0x7F030165
+ public const int tickMarkTintMode = 2130903397;
+
+ // aapt resource value: 0x7F030166
+ public const int tint = 2130903398;
+
+ // aapt resource value: 0x7F030167
+ public const int tintMode = 2130903399;
+
+ // aapt resource value: 0x7F030168
+ public const int title = 2130903400;
+
+ // aapt resource value: 0x7F030169
+ public const int titleMargin = 2130903401;
+
+ // aapt resource value: 0x7F03016A
+ public const int titleMarginBottom = 2130903402;
+
+ // aapt resource value: 0x7F03016B
+ public const int titleMarginEnd = 2130903403;
+
+ // aapt resource value: 0x7F03016E
+ public const int titleMargins = 2130903406;
+
+ // aapt resource value: 0x7F03016C
+ public const int titleMarginStart = 2130903404;
+
+ // aapt resource value: 0x7F03016D
+ public const int titleMarginTop = 2130903405;
+
+ // aapt resource value: 0x7F03016F
+ public const int titleTextAppearance = 2130903407;
+
+ // aapt resource value: 0x7F030170
+ public const int titleTextColor = 2130903408;
+
+ // aapt resource value: 0x7F030171
+ public const int titleTextStyle = 2130903409;
+
+ // aapt resource value: 0x7F030172
+ public const int toolbarNavigationButtonStyle = 2130903410;
+
+ // aapt resource value: 0x7F030173
+ public const int toolbarStyle = 2130903411;
+
+ // aapt resource value: 0x7F030174
+ public const int tooltipForegroundColor = 2130903412;
+
+ // aapt resource value: 0x7F030175
+ public const int tooltipFrameBackground = 2130903413;
+
+ // aapt resource value: 0x7F030176
+ public const int tooltipText = 2130903414;
+
+ // aapt resource value: 0x7F030177
+ public const int track = 2130903415;
+
+ // aapt resource value: 0x7F030178
+ public const int trackTint = 2130903416;
+
+ // aapt resource value: 0x7F030179
+ public const int trackTintMode = 2130903417;
+
+ // aapt resource value: 0x7F03017A
+ public const int ttcIndex = 2130903418;
+
+ // aapt resource value: 0x7F03017B
+ public const int updatesContinuously = 2130903419;
+
+ // aapt resource value: 0x7F03017C
+ public const int useSimpleSummaryProvider = 2130903420;
+
+ // aapt resource value: 0x7F03017D
+ public const int viewInflaterClass = 2130903421;
+
+ // aapt resource value: 0x7F03017E
+ public const int voiceIcon = 2130903422;
+
+ // aapt resource value: 0x7F03017F
+ public const int widgetLayout = 2130903423;
+
+ // aapt resource value: 0x7F030180
+ public const int windowActionBar = 2130903424;
+
+ // aapt resource value: 0x7F030181
+ public const int windowActionBarOverlay = 2130903425;
+
+ // aapt resource value: 0x7F030182
+ public const int windowActionModeOverlay = 2130903426;
+
+ // aapt resource value: 0x7F030183
+ public const int windowFixedHeightMajor = 2130903427;
+
+ // aapt resource value: 0x7F030184
+ public const int windowFixedHeightMinor = 2130903428;
+
+ // aapt resource value: 0x7F030185
+ public const int windowFixedWidthMajor = 2130903429;
+
+ // aapt resource value: 0x7F030186
+ public const int windowFixedWidthMinor = 2130903430;
+
+ // aapt resource value: 0x7F030187
+ public const int windowMinWidthMajor = 2130903431;
+
+ // aapt resource value: 0x7F030188
+ public const int windowMinWidthMinor = 2130903432;
+
+ // aapt resource value: 0x7F030189
+ public const int windowNoTitle = 2130903433;
static Attribute()
{
@@ -1367,6 +1541,9 @@ namespace GUTSchedule.Droid
// aapt resource value: 0x7F040001
public const int abc_config_actionMenuItemAllCaps = 2130968577;
+ // aapt resource value: 0x7F040002
+ public const int config_materialPreferenceIconSpaceReserved = 2130968578;
+
static Boolean()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
@@ -1603,70 +1780,73 @@ namespace GUTSchedule.Droid
public const int notification_icon_bg_color = 2131034185;
// aapt resource value: 0x7F05004A
- public const int primary_dark_material_dark = 2131034186;
+ public const int preference_fallback_accent_color = 2131034186;
// aapt resource value: 0x7F05004B
- public const int primary_dark_material_light = 2131034187;
+ public const int primary_dark_material_dark = 2131034187;
// aapt resource value: 0x7F05004C
- public const int primary_material_dark = 2131034188;
+ public const int primary_dark_material_light = 2131034188;
// aapt resource value: 0x7F05004D
- public const int primary_material_light = 2131034189;
+ public const int primary_material_dark = 2131034189;
// aapt resource value: 0x7F05004E
- public const int primary_text_default_material_dark = 2131034190;
+ public const int primary_material_light = 2131034190;
// aapt resource value: 0x7F05004F
- public const int primary_text_default_material_light = 2131034191;
+ public const int primary_text_default_material_dark = 2131034191;
// aapt resource value: 0x7F050050
- public const int primary_text_disabled_material_dark = 2131034192;
+ public const int primary_text_default_material_light = 2131034192;
// aapt resource value: 0x7F050051
- public const int primary_text_disabled_material_light = 2131034193;
+ public const int primary_text_disabled_material_dark = 2131034193;
// aapt resource value: 0x7F050052
- public const int ripple_material_dark = 2131034194;
+ public const int primary_text_disabled_material_light = 2131034194;
// aapt resource value: 0x7F050053
- public const int ripple_material_light = 2131034195;
+ public const int ripple_material_dark = 2131034195;
// aapt resource value: 0x7F050054
- public const int secondary_text_default_material_dark = 2131034196;
+ public const int ripple_material_light = 2131034196;
// aapt resource value: 0x7F050055
- public const int secondary_text_default_material_light = 2131034197;
+ public const int secondary_text_default_material_dark = 2131034197;
// aapt resource value: 0x7F050056
- public const int secondary_text_disabled_material_dark = 2131034198;
+ public const int secondary_text_default_material_light = 2131034198;
// aapt resource value: 0x7F050057
- public const int secondary_text_disabled_material_light = 2131034199;
+ public const int secondary_text_disabled_material_dark = 2131034199;
// aapt resource value: 0x7F050058
- public const int switch_thumb_disabled_material_dark = 2131034200;
+ public const int secondary_text_disabled_material_light = 2131034200;
// aapt resource value: 0x7F050059
- public const int switch_thumb_disabled_material_light = 2131034201;
+ public const int switch_thumb_disabled_material_dark = 2131034201;
// aapt resource value: 0x7F05005A
- public const int switch_thumb_material_dark = 2131034202;
+ public const int switch_thumb_disabled_material_light = 2131034202;
// aapt resource value: 0x7F05005B
- public const int switch_thumb_material_light = 2131034203;
+ public const int switch_thumb_material_dark = 2131034203;
// aapt resource value: 0x7F05005C
- public const int switch_thumb_normal_material_dark = 2131034204;
+ public const int switch_thumb_material_light = 2131034204;
// aapt resource value: 0x7F05005D
- public const int switch_thumb_normal_material_light = 2131034205;
+ public const int switch_thumb_normal_material_dark = 2131034205;
// aapt resource value: 0x7F05005E
- public const int tooltip_background_dark = 2131034206;
+ public const int switch_thumb_normal_material_light = 2131034206;
// aapt resource value: 0x7F05005F
- public const int tooltip_background_light = 2131034207;
+ public const int tooltip_background_dark = 2131034207;
+
+ // aapt resource value: 0x7F050060
+ public const int tooltip_background_light = 2131034208;
static Color()
{
@@ -2053,29 +2233,50 @@ namespace GUTSchedule.Droid
// aapt resource value: 0x7F06007B
public const int notification_top_pad_large_text = 2131099771;
- // aapt resource value: 0x7F06007C
- public const int tooltip_corner_radius = 2131099772;
-
- // aapt resource value: 0x7F06007D
- public const int tooltip_horizontal_padding = 2131099773;
-
- // aapt resource value: 0x7F06007E
- public const int tooltip_margin = 2131099774;
-
- // aapt resource value: 0x7F06007F
- public const int tooltip_precise_anchor_extra_offset = 2131099775;
-
- // aapt resource value: 0x7F060080
- public const int tooltip_precise_anchor_threshold = 2131099776;
-
// aapt resource value: 0x7F060081
- public const int tooltip_vertical_padding = 2131099777;
+ public const int preferences_detail_width = 2131099777;
// aapt resource value: 0x7F060082
- public const int tooltip_y_offset_non_touch = 2131099778;
+ public const int preferences_header_width = 2131099778;
+
+ // aapt resource value: 0x7F06007C
+ public const int preference_dropdown_padding_start = 2131099772;
+
+ // aapt resource value: 0x7F06007D
+ public const int preference_icon_minWidth = 2131099773;
+
+ // aapt resource value: 0x7F06007E
+ public const int preference_seekbar_padding_horizontal = 2131099774;
+
+ // aapt resource value: 0x7F06007F
+ public const int preference_seekbar_padding_vertical = 2131099775;
+
+ // aapt resource value: 0x7F060080
+ public const int preference_seekbar_value_minWidth = 2131099776;
// aapt resource value: 0x7F060083
- public const int tooltip_y_offset_touch = 2131099779;
+ public const int tooltip_corner_radius = 2131099779;
+
+ // aapt resource value: 0x7F060084
+ public const int tooltip_horizontal_padding = 2131099780;
+
+ // aapt resource value: 0x7F060085
+ public const int tooltip_margin = 2131099781;
+
+ // aapt resource value: 0x7F060086
+ public const int tooltip_precise_anchor_extra_offset = 2131099782;
+
+ // aapt resource value: 0x7F060087
+ public const int tooltip_precise_anchor_threshold = 2131099783;
+
+ // aapt resource value: 0x7F060088
+ public const int tooltip_vertical_padding = 2131099784;
+
+ // aapt resource value: 0x7F060089
+ public const int tooltip_y_offset_non_touch = 2131099785;
+
+ // aapt resource value: 0x7F06008A
+ public const int tooltip_y_offset_touch = 2131099786;
static Dimension()
{
@@ -2352,52 +2553,58 @@ namespace GUTSchedule.Droid
public const int btn_radio_on_to_off_mtrl_animation = 2131165270;
// aapt resource value: 0x7F070057
- public const int logo = 2131165271;
+ public const int ic_arrow_down_24dp = 2131165271;
// aapt resource value: 0x7F070058
- public const int notification_action_background = 2131165272;
+ public const int logo = 2131165272;
// aapt resource value: 0x7F070059
- public const int notification_bg = 2131165273;
+ public const int notification_action_background = 2131165273;
// aapt resource value: 0x7F07005A
- public const int notification_bg_low = 2131165274;
+ public const int notification_bg = 2131165274;
// aapt resource value: 0x7F07005B
- public const int notification_bg_low_normal = 2131165275;
+ public const int notification_bg_low = 2131165275;
// aapt resource value: 0x7F07005C
- public const int notification_bg_low_pressed = 2131165276;
+ public const int notification_bg_low_normal = 2131165276;
// aapt resource value: 0x7F07005D
- public const int notification_bg_normal = 2131165277;
+ public const int notification_bg_low_pressed = 2131165277;
// aapt resource value: 0x7F07005E
- public const int notification_bg_normal_pressed = 2131165278;
+ public const int notification_bg_normal = 2131165278;
// aapt resource value: 0x7F07005F
- public const int notification_icon_background = 2131165279;
+ public const int notification_bg_normal_pressed = 2131165279;
// aapt resource value: 0x7F070060
- public const int notification_template_icon_bg = 2131165280;
+ public const int notification_icon_background = 2131165280;
// aapt resource value: 0x7F070061
- public const int notification_template_icon_low_bg = 2131165281;
+ public const int notification_template_icon_bg = 2131165281;
// aapt resource value: 0x7F070062
- public const int notification_tile_bg = 2131165282;
+ public const int notification_template_icon_low_bg = 2131165282;
// aapt resource value: 0x7F070063
- public const int notify_panel_notification_icon_bg = 2131165283;
+ public const int notification_tile_bg = 2131165283;
// aapt resource value: 0x7F070064
- public const int test_level_drawable = 2131165284;
+ public const int notify_panel_notification_icon_bg = 2131165284;
// aapt resource value: 0x7F070065
- public const int tooltip_frame_dark = 2131165285;
+ public const int preference_list_divider_material = 2131165285;
// aapt resource value: 0x7F070066
- public const int tooltip_frame_light = 2131165286;
+ public const int test_level_drawable = 2131165286;
+
+ // aapt resource value: 0x7F070067
+ public const int tooltip_frame_dark = 2131165287;
+
+ // aapt resource value: 0x7F070068
+ public const int tooltip_frame_light = 2131165288;
static Drawable()
{
@@ -2782,346 +2989,373 @@ namespace GUTSchedule.Droid
public const int icon = 2131230845;
// aapt resource value: 0x7F08007E
- public const int icon_group = 2131230846;
+ public const int icon_frame = 2131230846;
// aapt resource value: 0x7F08007F
- public const int ifRoom = 2131230847;
+ public const int icon_group = 2131230847;
// aapt resource value: 0x7F080080
- public const int image = 2131230848;
+ public const int ifRoom = 2131230848;
// aapt resource value: 0x7F080081
- public const int info = 2131230849;
+ public const int image = 2131230849;
// aapt resource value: 0x7F080082
- public const int italic = 2131230850;
+ public const int info = 2131230850;
// aapt resource value: 0x7F080083
- public const int item_touch_helper_previous_elevation = 2131230851;
+ public const int italic = 2131230851;
// aapt resource value: 0x7F080084
- public const int left = 2131230852;
+ public const int item_touch_helper_previous_elevation = 2131230852;
// aapt resource value: 0x7F080085
- public const int line1 = 2131230853;
+ public const int left = 2131230853;
// aapt resource value: 0x7F080086
- public const int line3 = 2131230854;
+ public const int line1 = 2131230854;
// aapt resource value: 0x7F080087
- public const int links = 2131230855;
+ public const int line3 = 2131230855;
// aapt resource value: 0x7F080088
- public const int listMode = 2131230856;
+ public const int links = 2131230856;
// aapt resource value: 0x7F080089
- public const int list_item = 2131230857;
+ public const int listMode = 2131230857;
// aapt resource value: 0x7F08008A
- public const int locale = 2131230858;
+ public const int list_item = 2131230858;
// aapt resource value: 0x7F08008B
- public const int ltr = 2131230859;
+ public const int locale = 2131230859;
// aapt resource value: 0x7F08008C
- public const int message = 2131230860;
+ public const int ltr = 2131230860;
+
+ // aapt resource value: 0x7F08008D
+ public const int message = 2131230861;
// aapt resource value: 0x7F080003
public const int META = 2131230723;
- // aapt resource value: 0x7F08008D
- public const int middle = 2131230861;
-
// aapt resource value: 0x7F08008E
- public const int multiply = 2131230862;
+ public const int middle = 2131230862;
// aapt resource value: 0x7F08008F
- public const int never = 2131230863;
+ public const int multiply = 2131230863;
// aapt resource value: 0x7F080090
- public const int none = 2131230864;
+ public const int never = 2131230864;
// aapt resource value: 0x7F080091
- public const int normal = 2131230865;
+ public const int none = 2131230865;
// aapt resource value: 0x7F080092
- public const int notification_background = 2131230866;
+ public const int normal = 2131230866;
// aapt resource value: 0x7F080093
- public const int notification_main_column = 2131230867;
+ public const int notification_background = 2131230867;
// aapt resource value: 0x7F080094
- public const int notification_main_column_container = 2131230868;
+ public const int notification_main_column = 2131230868;
// aapt resource value: 0x7F080095
- public const int off = 2131230869;
+ public const int notification_main_column_container = 2131230869;
// aapt resource value: 0x7F080096
- public const int on = 2131230870;
+ public const int off = 2131230870;
// aapt resource value: 0x7F080097
- public const int parentPanel = 2131230871;
+ public const int on = 2131230871;
// aapt resource value: 0x7F080098
- public const int parent_matrix = 2131230872;
+ public const int parentPanel = 2131230872;
// aapt resource value: 0x7F080099
- public const int password = 2131230873;
+ public const int parent_matrix = 2131230873;
// aapt resource value: 0x7F08009A
- public const int professorParams = 2131230874;
+ public const int password = 2131230874;
// aapt resource value: 0x7F08009B
- public const int progress_circular = 2131230875;
+ public const int preferences_detail = 2131230875;
// aapt resource value: 0x7F08009C
- public const int progress_horizontal = 2131230876;
+ public const int preferences_header = 2131230876;
// aapt resource value: 0x7F08009D
- public const int radio = 2131230877;
+ public const int preferences_sliding_pane_layout = 2131230877;
// aapt resource value: 0x7F08009E
- public const int reminder = 2131230878;
+ public const int professorParams = 2131230878;
// aapt resource value: 0x7F08009F
- public const int right = 2131230879;
+ public const int progress_circular = 2131230879;
// aapt resource value: 0x7F0800A0
- public const int right_icon = 2131230880;
+ public const int progress_horizontal = 2131230880;
// aapt resource value: 0x7F0800A1
- public const int right_side = 2131230881;
+ public const int radio = 2131230881;
// aapt resource value: 0x7F0800A2
- public const int rtl = 2131230882;
+ public const int recycler_view = 2131230882;
// aapt resource value: 0x7F0800A3
- public const int save_non_transition_alpha = 2131230883;
+ public const int reminder = 2131230883;
// aapt resource value: 0x7F0800A4
- public const int save_overlay_view = 2131230884;
+ public const int right = 2131230884;
// aapt resource value: 0x7F0800A5
- public const int screen = 2131230885;
+ public const int right_icon = 2131230885;
// aapt resource value: 0x7F0800A6
- public const int scrollIndicatorDown = 2131230886;
+ public const int right_side = 2131230886;
// aapt resource value: 0x7F0800A7
- public const int scrollIndicatorUp = 2131230887;
+ public const int rtl = 2131230887;
// aapt resource value: 0x7F0800A8
- public const int scrollView = 2131230888;
+ public const int save_non_transition_alpha = 2131230888;
// aapt resource value: 0x7F0800A9
- public const int search_badge = 2131230889;
+ public const int save_overlay_view = 2131230889;
// aapt resource value: 0x7F0800AA
- public const int search_bar = 2131230890;
+ public const int screen = 2131230890;
// aapt resource value: 0x7F0800AB
- public const int search_button = 2131230891;
+ public const int scrollIndicatorDown = 2131230891;
// aapt resource value: 0x7F0800AC
- public const int search_close_btn = 2131230892;
+ public const int scrollIndicatorUp = 2131230892;
// aapt resource value: 0x7F0800AD
- public const int search_edit_frame = 2131230893;
+ public const int scrollView = 2131230893;
// aapt resource value: 0x7F0800AE
- public const int search_go_btn = 2131230894;
+ public const int search_badge = 2131230894;
// aapt resource value: 0x7F0800AF
- public const int search_mag_icon = 2131230895;
+ public const int search_bar = 2131230895;
// aapt resource value: 0x7F0800B0
- public const int search_plate = 2131230896;
+ public const int search_button = 2131230896;
// aapt resource value: 0x7F0800B1
- public const int search_src_text = 2131230897;
+ public const int search_close_btn = 2131230897;
// aapt resource value: 0x7F0800B2
- public const int search_voice_btn = 2131230898;
+ public const int search_edit_frame = 2131230898;
// aapt resource value: 0x7F0800B3
- public const int select_dialog_listview = 2131230899;
+ public const int search_go_btn = 2131230899;
+
+ // aapt resource value: 0x7F0800B4
+ public const int search_mag_icon = 2131230900;
+
+ // aapt resource value: 0x7F0800B5
+ public const int search_plate = 2131230901;
+
+ // aapt resource value: 0x7F0800B6
+ public const int search_src_text = 2131230902;
+
+ // aapt resource value: 0x7F0800B7
+ public const int search_voice_btn = 2131230903;
+
+ // aapt resource value: 0x7F0800B8
+ public const int seekbar = 2131230904;
+
+ // aapt resource value: 0x7F0800B9
+ public const int seekbar_value = 2131230905;
+
+ // aapt resource value: 0x7F0800BA
+ public const int select_dialog_listview = 2131230906;
// aapt resource value: 0x7F080004
public const int SHIFT = 2131230724;
- // aapt resource value: 0x7F0800B4
- public const int shortcut = 2131230900;
-
- // aapt resource value: 0x7F0800B5
- public const int showCustom = 2131230901;
-
- // aapt resource value: 0x7F0800B6
- public const int showHome = 2131230902;
-
- // aapt resource value: 0x7F0800B7
- public const int showTitle = 2131230903;
-
- // aapt resource value: 0x7F0800B8
- public const int spacer = 2131230904;
-
- // aapt resource value: 0x7F0800B9
- public const int special_effects_controller_view_tag = 2131230905;
-
- // aapt resource value: 0x7F0800BA
- public const int split_action_bar = 2131230906;
-
// aapt resource value: 0x7F0800BB
- public const int src_atop = 2131230907;
+ public const int shortcut = 2131230907;
// aapt resource value: 0x7F0800BC
- public const int src_in = 2131230908;
+ public const int showCustom = 2131230908;
// aapt resource value: 0x7F0800BD
- public const int src_over = 2131230909;
+ public const int showHome = 2131230909;
// aapt resource value: 0x7F0800BE
- public const int start = 2131230910;
+ public const int showTitle = 2131230910;
// aapt resource value: 0x7F0800BF
- public const int status = 2131230911;
+ public const int spacer = 2131230911;
// aapt resource value: 0x7F0800C0
- public const int studentParams = 2131230912;
+ public const int special_effects_controller_view_tag = 2131230912;
// aapt resource value: 0x7F0800C1
- public const int submenuarrow = 2131230913;
+ public const int spinner = 2131230913;
// aapt resource value: 0x7F0800C2
- public const int submit_area = 2131230914;
+ public const int split_action_bar = 2131230914;
+
+ // aapt resource value: 0x7F0800C3
+ public const int src_atop = 2131230915;
+
+ // aapt resource value: 0x7F0800C4
+ public const int src_in = 2131230916;
+
+ // aapt resource value: 0x7F0800C5
+ public const int src_over = 2131230917;
+
+ // aapt resource value: 0x7F0800C6
+ public const int start = 2131230918;
+
+ // aapt resource value: 0x7F0800C7
+ public const int status = 2131230919;
+
+ // aapt resource value: 0x7F0800C8
+ public const int studentParams = 2131230920;
+
+ // aapt resource value: 0x7F0800C9
+ public const int submenuarrow = 2131230921;
+
+ // aapt resource value: 0x7F0800CA
+ public const int submit_area = 2131230922;
+
+ // aapt resource value: 0x7F0800CB
+ public const int switchWidget = 2131230923;
// aapt resource value: 0x7F080005
public const int SYM = 2131230725;
- // aapt resource value: 0x7F0800C3
- public const int tabMode = 2131230915;
-
- // aapt resource value: 0x7F0800C4
- public const int tag_accessibility_actions = 2131230916;
-
- // aapt resource value: 0x7F0800C5
- public const int tag_accessibility_clickable_spans = 2131230917;
-
- // aapt resource value: 0x7F0800C6
- public const int tag_accessibility_heading = 2131230918;
-
- // aapt resource value: 0x7F0800C7
- public const int tag_accessibility_pane_title = 2131230919;
-
- // aapt resource value: 0x7F0800C8
- public const int tag_on_apply_window_listener = 2131230920;
-
- // aapt resource value: 0x7F0800C9
- public const int tag_on_receive_content_listener = 2131230921;
-
- // aapt resource value: 0x7F0800CA
- public const int tag_on_receive_content_mime_types = 2131230922;
-
- // aapt resource value: 0x7F0800CB
- public const int tag_screen_reader_focusable = 2131230923;
-
// aapt resource value: 0x7F0800CC
- public const int tag_state_description = 2131230924;
+ public const int tabMode = 2131230924;
// aapt resource value: 0x7F0800CD
- public const int tag_transition_group = 2131230925;
+ public const int tag_accessibility_actions = 2131230925;
// aapt resource value: 0x7F0800CE
- public const int tag_unhandled_key_event_manager = 2131230926;
+ public const int tag_accessibility_clickable_spans = 2131230926;
// aapt resource value: 0x7F0800CF
- public const int tag_unhandled_key_listeners = 2131230927;
+ public const int tag_accessibility_heading = 2131230927;
// aapt resource value: 0x7F0800D0
- public const int tag_window_insets_animation_callback = 2131230928;
+ public const int tag_accessibility_pane_title = 2131230928;
// aapt resource value: 0x7F0800D1
- public const int text = 2131230929;
+ public const int tag_on_apply_window_listener = 2131230929;
// aapt resource value: 0x7F0800D2
- public const int text2 = 2131230930;
+ public const int tag_on_receive_content_listener = 2131230930;
// aapt resource value: 0x7F0800D3
- public const int textSpacerNoButtons = 2131230931;
+ public const int tag_on_receive_content_mime_types = 2131230931;
// aapt resource value: 0x7F0800D4
- public const int textSpacerNoTitle = 2131230932;
+ public const int tag_screen_reader_focusable = 2131230932;
// aapt resource value: 0x7F0800D5
- public const int time = 2131230933;
+ public const int tag_state_description = 2131230933;
// aapt resource value: 0x7F0800D6
- public const int title = 2131230934;
+ public const int tag_transition_group = 2131230934;
// aapt resource value: 0x7F0800D7
- public const int titleDividerNoCustom = 2131230935;
+ public const int tag_unhandled_key_event_manager = 2131230935;
// aapt resource value: 0x7F0800D8
- public const int title_template = 2131230936;
+ public const int tag_unhandled_key_listeners = 2131230936;
// aapt resource value: 0x7F0800D9
- public const int top = 2131230937;
+ public const int tag_window_insets_animation_callback = 2131230937;
// aapt resource value: 0x7F0800DA
- public const int topPanel = 2131230938;
+ public const int text = 2131230938;
// aapt resource value: 0x7F0800DB
- public const int transition_current_scene = 2131230939;
+ public const int text2 = 2131230939;
// aapt resource value: 0x7F0800DC
- public const int transition_layout_save = 2131230940;
+ public const int textSpacerNoButtons = 2131230940;
// aapt resource value: 0x7F0800DD
- public const int transition_position = 2131230941;
+ public const int textSpacerNoTitle = 2131230941;
// aapt resource value: 0x7F0800DE
- public const int transition_scene_layoutid_cache = 2131230942;
+ public const int time = 2131230942;
// aapt resource value: 0x7F0800DF
- public const int transition_transform = 2131230943;
+ public const int title = 2131230943;
// aapt resource value: 0x7F0800E0
- public const int @unchecked = 2131230944;
+ public const int titleDividerNoCustom = 2131230944;
// aapt resource value: 0x7F0800E1
- public const int uniform = 2131230945;
+ public const int title_template = 2131230945;
// aapt resource value: 0x7F0800E2
- public const int up = 2131230946;
+ public const int top = 2131230946;
// aapt resource value: 0x7F0800E3
- public const int useLogo = 2131230947;
+ public const int topPanel = 2131230947;
// aapt resource value: 0x7F0800E4
- public const int validateCredential = 2131230948;
+ public const int transition_current_scene = 2131230948;
// aapt resource value: 0x7F0800E5
- public const int version = 2131230949;
+ public const int transition_layout_save = 2131230949;
// aapt resource value: 0x7F0800E6
- public const int view_tree_lifecycle_owner = 2131230950;
+ public const int transition_position = 2131230950;
// aapt resource value: 0x7F0800E7
- public const int view_tree_on_back_pressed_dispatcher_owner = 2131230951;
+ public const int transition_scene_layoutid_cache = 2131230951;
// aapt resource value: 0x7F0800E8
- public const int view_tree_saved_state_registry_owner = 2131230952;
+ public const int transition_transform = 2131230952;
// aapt resource value: 0x7F0800E9
- public const int view_tree_view_model_store_owner = 2131230953;
+ public const int @unchecked = 2131230953;
// aapt resource value: 0x7F0800EA
- public const int visible_removing_fragment_view_tag = 2131230954;
+ public const int uniform = 2131230954;
// aapt resource value: 0x7F0800EB
- public const int withText = 2131230955;
+ public const int up = 2131230955;
// aapt resource value: 0x7F0800EC
- public const int wrap_content = 2131230956;
+ public const int useLogo = 2131230956;
+
+ // aapt resource value: 0x7F0800ED
+ public const int validateCredential = 2131230957;
+
+ // aapt resource value: 0x7F0800EE
+ public const int version = 2131230958;
+
+ // aapt resource value: 0x7F0800EF
+ public const int view_tree_lifecycle_owner = 2131230959;
+
+ // aapt resource value: 0x7F0800F0
+ public const int view_tree_on_back_pressed_dispatcher_owner = 2131230960;
+
+ // aapt resource value: 0x7F0800F1
+ public const int view_tree_saved_state_registry_owner = 2131230961;
+
+ // aapt resource value: 0x7F0800F2
+ public const int view_tree_view_model_store_owner = 2131230962;
+
+ // aapt resource value: 0x7F0800F3
+ public const int visible_removing_fragment_view_tag = 2131230963;
+
+ // aapt resource value: 0x7F0800F4
+ public const int withText = 2131230964;
+
+ // aapt resource value: 0x7F0800F5
+ public const int wrap_content = 2131230965;
static Id()
{
@@ -3149,7 +3383,13 @@ namespace GUTSchedule.Droid
public const int config_tooltipAnimTime = 2131296259;
// aapt resource value: 0x7F090004
- public const int status_bar_notification_info_maxnum = 2131296260;
+ public const int preferences_detail_pane_weight = 2131296260;
+
+ // aapt resource value: 0x7F090005
+ public const int preferences_header_pane_weight = 2131296261;
+
+ // aapt resource value: 0x7F090006
+ public const int status_bar_notification_info_maxnum = 2131296262;
static Integer()
{
@@ -3295,43 +3535,97 @@ namespace GUTSchedule.Droid
public const int custom_dialog = 2131427359;
// aapt resource value: 0x7F0B0020
- public const int Export = 2131427360;
+ public const int expand_button = 2131427360;
// aapt resource value: 0x7F0B0021
- public const int Main = 2131427361;
+ public const int Export = 2131427361;
// aapt resource value: 0x7F0B0022
- public const int notification_action = 2131427362;
+ public const int image_frame = 2131427362;
// aapt resource value: 0x7F0B0023
- public const int notification_action_tombstone = 2131427363;
+ public const int Main = 2131427363;
// aapt resource value: 0x7F0B0024
- public const int notification_template_custom_big = 2131427364;
+ public const int notification_action = 2131427364;
// aapt resource value: 0x7F0B0025
- public const int notification_template_icon_group = 2131427365;
+ public const int notification_action_tombstone = 2131427365;
// aapt resource value: 0x7F0B0026
- public const int notification_template_part_chronometer = 2131427366;
+ public const int notification_template_custom_big = 2131427366;
// aapt resource value: 0x7F0B0027
- public const int notification_template_part_time = 2131427367;
+ public const int notification_template_icon_group = 2131427367;
// aapt resource value: 0x7F0B0028
- public const int select_dialog_item_material = 2131427368;
+ public const int notification_template_part_chronometer = 2131427368;
// aapt resource value: 0x7F0B0029
- public const int select_dialog_multichoice_material = 2131427369;
+ public const int notification_template_part_time = 2131427369;
// aapt resource value: 0x7F0B002A
- public const int select_dialog_singlechoice_material = 2131427370;
+ public const int preference = 2131427370;
// aapt resource value: 0x7F0B002B
- public const int SplashScreen = 2131427371;
+ public const int preference_category = 2131427371;
// aapt resource value: 0x7F0B002C
- public const int support_simple_spinner_dropdown_item = 2131427372;
+ public const int preference_category_material = 2131427372;
+
+ // aapt resource value: 0x7F0B002D
+ public const int preference_dialog_edittext = 2131427373;
+
+ // aapt resource value: 0x7F0B002E
+ public const int preference_dropdown = 2131427374;
+
+ // aapt resource value: 0x7F0B002F
+ public const int preference_dropdown_material = 2131427375;
+
+ // aapt resource value: 0x7F0B0030
+ public const int preference_information = 2131427376;
+
+ // aapt resource value: 0x7F0B0031
+ public const int preference_information_material = 2131427377;
+
+ // aapt resource value: 0x7F0B0032
+ public const int preference_list_fragment = 2131427378;
+
+ // aapt resource value: 0x7F0B0033
+ public const int preference_material = 2131427379;
+
+ // aapt resource value: 0x7F0B0034
+ public const int preference_recyclerview = 2131427380;
+
+ // aapt resource value: 0x7F0B0035
+ public const int preference_widget_checkbox = 2131427381;
+
+ // aapt resource value: 0x7F0B0036
+ public const int preference_widget_seekbar = 2131427382;
+
+ // aapt resource value: 0x7F0B0037
+ public const int preference_widget_seekbar_material = 2131427383;
+
+ // aapt resource value: 0x7F0B0038
+ public const int preference_widget_switch = 2131427384;
+
+ // aapt resource value: 0x7F0B0039
+ public const int preference_widget_switch_compat = 2131427385;
+
+ // aapt resource value: 0x7F0B003A
+ public const int select_dialog_item_material = 2131427386;
+
+ // aapt resource value: 0x7F0B003B
+ public const int select_dialog_multichoice_material = 2131427387;
+
+ // aapt resource value: 0x7F0B003C
+ public const int select_dialog_singlechoice_material = 2131427388;
+
+ // aapt resource value: 0x7F0B003D
+ public const int SplashScreen = 2131427389;
+
+ // aapt resource value: 0x7F0B003E
+ public const int support_simple_spinner_dropdown_item = 2131427390;
static Layout()
{
@@ -3546,182 +3840,203 @@ namespace GUTSchedule.Droid
// aapt resource value: 0x7F0E0035
public const int contributorsTitle = 2131623989;
- // aapt resource value: 0x7F0E0037
- public const int copyrights = 2131623991;
-
// aapt resource value: 0x7F0E0036
- public const int copy_toast_msg = 2131623990;
+ public const int copy = 2131623990;
// aapt resource value: 0x7F0E0038
- public const int courseSpinner = 2131623992;
+ public const int copyrights = 2131623992;
+
+ // aapt resource value: 0x7F0E0037
+ public const int copy_toast_msg = 2131623991;
// aapt resource value: 0x7F0E0039
- public const int createCalendarMessage = 2131623993;
+ public const int courseSpinner = 2131623993;
// aapt resource value: 0x7F0E003A
- public const int createCalendarTitle = 2131623994;
+ public const int createCalendarMessage = 2131623994;
// aapt resource value: 0x7F0E003B
- public const int dateRange = 2131623995;
+ public const int createCalendarTitle = 2131623995;
// aapt resource value: 0x7F0E003C
- public const int destinationCalendarSpinner = 2131623996;
+ public const int dateRange = 2131623996;
// aapt resource value: 0x7F0E003D
- public const int developedBy = 2131623997;
+ public const int destinationCalendarSpinner = 2131623997;
// aapt resource value: 0x7F0E003E
- public const int doneStatus = 2131623998;
+ public const int developedBy = 2131623998;
// aapt resource value: 0x7F0E003F
- public const int excludeMilitary = 2131623999;
+ public const int doneStatus = 2131623999;
// aapt resource value: 0x7F0E0040
- public const int exportParametersTitle = 2131624000;
+ public const int excludeMilitary = 2131624000;
// aapt resource value: 0x7F0E0041
- public const int facultiesLoadingStatus = 2131624001;
+ public const int expand_button_title = 2131624001;
// aapt resource value: 0x7F0E0042
- public const int facultySpinner = 2131624002;
+ public const int exportParametersTitle = 2131624002;
// aapt resource value: 0x7F0E0043
- public const int fallback_menu_item_copy_link = 2131624003;
+ public const int facultiesLoadingStatus = 2131624003;
// aapt resource value: 0x7F0E0044
- public const int fallback_menu_item_open_in_browser = 2131624004;
+ public const int facultySpinner = 2131624004;
// aapt resource value: 0x7F0E0045
- public const int fallback_menu_item_share_link = 2131624005;
+ public const int fallback_menu_item_copy_link = 2131624005;
// aapt resource value: 0x7F0E0046
- public const int feedbackButton = 2131624006;
+ public const int fallback_menu_item_open_in_browser = 2131624006;
// aapt resource value: 0x7F0E0047
- public const int fiveMinuteReminderOption = 2131624007;
+ public const int fallback_menu_item_share_link = 2131624007;
// aapt resource value: 0x7F0E0048
- public const int forDayButton = 2131624008;
+ public const int feedbackButton = 2131624008;
// aapt resource value: 0x7F0E0049
- public const int forMonthButton = 2131624009;
+ public const int fiveMinuteReminderOption = 2131624009;
// aapt resource value: 0x7F0E004A
- public const int forSemesterButton = 2131624010;
+ public const int forDayButton = 2131624010;
// aapt resource value: 0x7F0E004B
- public const int forWeekButton = 2131624011;
+ public const int forMonthButton = 2131624011;
// aapt resource value: 0x7F0E004C
- public const int groupSelectionError = 2131624012;
+ public const int forSemesterButton = 2131624012;
// aapt resource value: 0x7F0E004D
- public const int groupSpinner = 2131624013;
-
- // aapt resource value: 0x7F0E004F
- public const int initializationStatus = 2131624015;
+ public const int forWeekButton = 2131624013;
// aapt resource value: 0x7F0E004E
- public const int inTimeReminderOption = 2131624014;
+ public const int groupSelectionError = 2131624014;
- // aapt resource value: 0x7F0E0050
- public const int invalidAuthorizationError = 2131624016;
+ // aapt resource value: 0x7F0E004F
+ public const int groupSpinner = 2131624015;
// aapt resource value: 0x7F0E0051
- public const int invalidCredentialError = 2131624017;
+ public const int initializationStatus = 2131624017;
+
+ // aapt resource value: 0x7F0E0050
+ public const int inTimeReminderOption = 2131624016;
// aapt resource value: 0x7F0E0052
- public const int invalidDateRangeError = 2131624018;
+ public const int invalidAuthorizationError = 2131624018;
// aapt resource value: 0x7F0E0053
- public const int linksTitle = 2131624019;
+ public const int invalidCredentialError = 2131624019;
// aapt resource value: 0x7F0E0054
- public const int loadingStatus = 2131624020;
+ public const int invalidDateRangeError = 2131624020;
// aapt resource value: 0x7F0E0055
- public const int noReminderOption = 2131624021;
+ public const int linksTitle = 2131624021;
// aapt resource value: 0x7F0E0056
- public const int notsLink = 2131624022;
+ public const int loadingStatus = 2131624022;
// aapt resource value: 0x7F0E0057
- public const int offsetDatesLoadingStatus = 2131624023;
-
- // aapt resource value: 0x7F0E0058
- public const int passwordField = 2131624024;
+ public const int noReminderOption = 2131624023;
// aapt resource value: 0x7F0E0059
- public const int permissionsCheckStatus = 2131624025;
+ public const int notsLink = 2131624025;
+
+ // aapt resource value: 0x7F0E0058
+ public const int not_set = 2131624024;
// aapt resource value: 0x7F0E005A
- public const int potatoLoadingStatus = 2131624026;
+ public const int offsetDatesLoadingStatus = 2131624026;
// aapt resource value: 0x7F0E005B
- public const int privacyPolicyLink = 2131624027;
+ public const int passwordField = 2131624027;
// aapt resource value: 0x7F0E005C
- public const int quit = 2131624028;
+ public const int permissionsCheckStatus = 2131624028;
// aapt resource value: 0x7F0E005D
- public const int reminderNote = 2131624029;
+ public const int potatoLoadingStatus = 2131624029;
// aapt resource value: 0x7F0E005E
- public const int reminderSpinner = 2131624030;
+ public const int preference_copied = 2131624030;
// aapt resource value: 0x7F0E005F
- public const int repeat = 2131624031;
+ public const int privacyPolicyLink = 2131624031;
// aapt resource value: 0x7F0E0060
- public const int reportErrorOption = 2131624032;
+ public const int quit = 2131624032;
// aapt resource value: 0x7F0E0061
- public const int repositoryLink = 2131624033;
+ public const int reminderNote = 2131624033;
// aapt resource value: 0x7F0E0062
- public const int scheduleLoadingStatus = 2131624034;
+ public const int reminderSpinner = 2131624034;
// aapt resource value: 0x7F0E0063
- public const int scheduleParametersTitle = 2131624035;
+ public const int repeat = 2131624035;
// aapt resource value: 0x7F0E0064
- public const int search_menu_title = 2131624036;
+ public const int reportErrorOption = 2131624036;
// aapt resource value: 0x7F0E0065
- public const int specialThanksPeople = 2131624037;
+ public const int repositoryLink = 2131624037;
// aapt resource value: 0x7F0E0066
- public const int specialThanksTitle = 2131624038;
+ public const int scheduleLoadingStatus = 2131624038;
// aapt resource value: 0x7F0E0067
- public const int status_bar_notification_info_overflow = 2131624039;
+ public const int scheduleParametersTitle = 2131624039;
// aapt resource value: 0x7F0E0068
- public const int sutLink = 2131624040;
+ public const int search_menu_title = 2131624040;
// aapt resource value: 0x7F0E0069
- public const int tenMinuteReminderOption = 2131624041;
+ public const int specialThanksPeople = 2131624041;
// aapt resource value: 0x7F0E006A
- public const int titleNote = 2131624042;
+ public const int specialThanksTitle = 2131624042;
// aapt resource value: 0x7F0E006B
- public const int twitterContact = 2131624043;
+ public const int status_bar_notification_info_overflow = 2131624043;
// aapt resource value: 0x7F0E006C
- public const int validateCredential = 2131624044;
+ public const int summary_collapsed_preference_list = 2131624044;
// aapt resource value: 0x7F0E006D
- public const int validationFailed = 2131624045;
+ public const int sutLink = 2131624045;
// aapt resource value: 0x7F0E006E
- public const int validationSuccess = 2131624046;
+ public const int tenMinuteReminderOption = 2131624046;
// aapt resource value: 0x7F0E006F
- public const int vkontakteContact = 2131624047;
+ public const int titleNote = 2131624047;
// aapt resource value: 0x7F0E0070
- public const int websiteContact = 2131624048;
+ public const int twitterContact = 2131624048;
+
+ // aapt resource value: 0x7F0E0071
+ public const int v7_preference_off = 2131624049;
+
+ // aapt resource value: 0x7F0E0072
+ public const int v7_preference_on = 2131624050;
+
+ // aapt resource value: 0x7F0E0073
+ public const int validateCredential = 2131624051;
+
+ // aapt resource value: 0x7F0E0074
+ public const int validationFailed = 2131624052;
+
+ // aapt resource value: 0x7F0E0075
+ public const int validationSuccess = 2131624053;
+
+ // aapt resource value: 0x7F0E0076
+ public const int vkontakteContact = 2131624054;
+
+ // aapt resource value: 0x7F0E0077
+ public const int websiteContact = 2131624055;
static String()
{
@@ -3757,6 +4072,9 @@ namespace GUTSchedule.Droid
// aapt resource value: 0x7F0F0006
public const int AppTheme_Light_SplashScreen = 2131689478;
+ // aapt resource value: 0x7F0F00A4
+ public const int BasePreferenceThemeOverlay = 2131689636;
+
// aapt resource value: 0x7F0F0007
public const int Base_AlertDialog_AppCompat = 2131689479;
@@ -4228,584 +4546,677 @@ namespace GUTSchedule.Droid
// aapt resource value: 0x7F0F00A3
public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131689635;
- // aapt resource value: 0x7F0F00A4
- public const int CardView = 2131689636;
-
// aapt resource value: 0x7F0F00A5
- public const int CardView_Dark = 2131689637;
+ public const int CardView = 2131689637;
// aapt resource value: 0x7F0F00A6
- public const int CardView_Light = 2131689638;
+ public const int CardView_Dark = 2131689638;
// aapt resource value: 0x7F0F00A7
- public const int Platform_AppCompat = 2131689639;
+ public const int CardView_Light = 2131689639;
// aapt resource value: 0x7F0F00A8
- public const int Platform_AppCompat_Light = 2131689640;
+ public const int Platform_AppCompat = 2131689640;
// aapt resource value: 0x7F0F00A9
- public const int Platform_ThemeOverlay_AppCompat = 2131689641;
+ public const int Platform_AppCompat_Light = 2131689641;
// aapt resource value: 0x7F0F00AA
- public const int Platform_ThemeOverlay_AppCompat_Dark = 2131689642;
+ public const int Platform_ThemeOverlay_AppCompat = 2131689642;
// aapt resource value: 0x7F0F00AB
- public const int Platform_ThemeOverlay_AppCompat_Light = 2131689643;
+ public const int Platform_ThemeOverlay_AppCompat_Dark = 2131689643;
// aapt resource value: 0x7F0F00AC
- public const int Platform_V21_AppCompat = 2131689644;
+ public const int Platform_ThemeOverlay_AppCompat_Light = 2131689644;
// aapt resource value: 0x7F0F00AD
- public const int Platform_V21_AppCompat_Light = 2131689645;
+ public const int Platform_V21_AppCompat = 2131689645;
// aapt resource value: 0x7F0F00AE
- public const int Platform_V25_AppCompat = 2131689646;
+ public const int Platform_V21_AppCompat_Light = 2131689646;
// aapt resource value: 0x7F0F00AF
- public const int Platform_V25_AppCompat_Light = 2131689647;
+ public const int Platform_V25_AppCompat = 2131689647;
// aapt resource value: 0x7F0F00B0
- public const int Platform_Widget_AppCompat_Spinner = 2131689648;
+ public const int Platform_V25_AppCompat_Light = 2131689648;
// aapt resource value: 0x7F0F00B1
- public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131689649;
+ public const int Platform_Widget_AppCompat_Spinner = 2131689649;
// aapt resource value: 0x7F0F00B2
- public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131689650;
-
- // aapt resource value: 0x7F0F00B3
- public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131689651;
-
- // aapt resource value: 0x7F0F00B4
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131689652;
-
- // aapt resource value: 0x7F0F00B5
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131689653;
-
- // aapt resource value: 0x7F0F00B6
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131689654;
-
- // aapt resource value: 0x7F0F00B7
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131689655;
-
- // aapt resource value: 0x7F0F00B8
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131689656;
-
- // aapt resource value: 0x7F0F00B9
- public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131689657;
-
- // aapt resource value: 0x7F0F00BF
- public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131689663;
-
- // aapt resource value: 0x7F0F00BA
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131689658;
-
- // aapt resource value: 0x7F0F00BB
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131689659;
-
- // aapt resource value: 0x7F0F00BC
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131689660;
-
- // aapt resource value: 0x7F0F00BD
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131689661;
-
- // aapt resource value: 0x7F0F00BE
- public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131689662;
-
- // aapt resource value: 0x7F0F00C0
- public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131689664;
-
- // aapt resource value: 0x7F0F00C1
- public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131689665;
-
- // aapt resource value: 0x7F0F00C2
- public const int TextAppearance_AppCompat = 2131689666;
-
- // aapt resource value: 0x7F0F00C3
- public const int TextAppearance_AppCompat_Body1 = 2131689667;
-
- // aapt resource value: 0x7F0F00C4
- public const int TextAppearance_AppCompat_Body2 = 2131689668;
-
- // aapt resource value: 0x7F0F00C5
- public const int TextAppearance_AppCompat_Button = 2131689669;
-
- // aapt resource value: 0x7F0F00C6
- public const int TextAppearance_AppCompat_Caption = 2131689670;
-
- // aapt resource value: 0x7F0F00C7
- public const int TextAppearance_AppCompat_Display1 = 2131689671;
+ public const int Preference = 2131689650;
// aapt resource value: 0x7F0F00C8
- public const int TextAppearance_AppCompat_Display2 = 2131689672;
+ public const int PreferenceCategoryTitleTextStyle = 2131689672;
// aapt resource value: 0x7F0F00C9
- public const int TextAppearance_AppCompat_Display3 = 2131689673;
-
- // aapt resource value: 0x7F0F00CA
- public const int TextAppearance_AppCompat_Display4 = 2131689674;
+ public const int PreferenceFragment = 2131689673;
// aapt resource value: 0x7F0F00CB
- public const int TextAppearance_AppCompat_Headline = 2131689675;
+ public const int PreferenceFragmentList = 2131689675;
// aapt resource value: 0x7F0F00CC
- public const int TextAppearance_AppCompat_Inverse = 2131689676;
+ public const int PreferenceFragmentList_Material = 2131689676;
+
+ // aapt resource value: 0x7F0F00CA
+ public const int PreferenceFragment_Material = 2131689674;
// aapt resource value: 0x7F0F00CD
- public const int TextAppearance_AppCompat_Large = 2131689677;
+ public const int PreferenceSummaryTextStyle = 2131689677;
// aapt resource value: 0x7F0F00CE
- public const int TextAppearance_AppCompat_Large_Inverse = 2131689678;
+ public const int PreferenceThemeOverlay = 2131689678;
// aapt resource value: 0x7F0F00CF
- public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131689679;
+ public const int PreferenceThemeOverlay_v14 = 2131689679;
// aapt resource value: 0x7F0F00D0
- public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131689680;
+ public const int PreferenceThemeOverlay_v14_Material = 2131689680;
+
+ // aapt resource value: 0x7F0F00B3
+ public const int Preference_Category = 2131689651;
+
+ // aapt resource value: 0x7F0F00B4
+ public const int Preference_Category_Material = 2131689652;
+
+ // aapt resource value: 0x7F0F00B5
+ public const int Preference_CheckBoxPreference = 2131689653;
+
+ // aapt resource value: 0x7F0F00B6
+ public const int Preference_CheckBoxPreference_Material = 2131689654;
+
+ // aapt resource value: 0x7F0F00B7
+ public const int Preference_DialogPreference = 2131689655;
+
+ // aapt resource value: 0x7F0F00B8
+ public const int Preference_DialogPreference_EditTextPreference = 2131689656;
+
+ // aapt resource value: 0x7F0F00B9
+ public const int Preference_DialogPreference_EditTextPreference_Material = 2131689657;
+
+ // aapt resource value: 0x7F0F00BA
+ public const int Preference_DialogPreference_Material = 2131689658;
+
+ // aapt resource value: 0x7F0F00BB
+ public const int Preference_DropDown = 2131689659;
+
+ // aapt resource value: 0x7F0F00BC
+ public const int Preference_DropDown_Material = 2131689660;
+
+ // aapt resource value: 0x7F0F00BD
+ public const int Preference_Information = 2131689661;
+
+ // aapt resource value: 0x7F0F00BE
+ public const int Preference_Information_Material = 2131689662;
+
+ // aapt resource value: 0x7F0F00BF
+ public const int Preference_Material = 2131689663;
+
+ // aapt resource value: 0x7F0F00C0
+ public const int Preference_PreferenceScreen = 2131689664;
+
+ // aapt resource value: 0x7F0F00C1
+ public const int Preference_PreferenceScreen_Material = 2131689665;
+
+ // aapt resource value: 0x7F0F00C2
+ public const int Preference_SeekBarPreference = 2131689666;
+
+ // aapt resource value: 0x7F0F00C3
+ public const int Preference_SeekBarPreference_Material = 2131689667;
+
+ // aapt resource value: 0x7F0F00C4
+ public const int Preference_SwitchPreference = 2131689668;
+
+ // aapt resource value: 0x7F0F00C6
+ public const int Preference_SwitchPreferenceCompat = 2131689670;
+
+ // aapt resource value: 0x7F0F00C7
+ public const int Preference_SwitchPreferenceCompat_Material = 2131689671;
+
+ // aapt resource value: 0x7F0F00C5
+ public const int Preference_SwitchPreference_Material = 2131689669;
// aapt resource value: 0x7F0F00D1
- public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131689681;
+ public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131689681;
// aapt resource value: 0x7F0F00D2
- public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131689682;
+ public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131689682;
// aapt resource value: 0x7F0F00D3
- public const int TextAppearance_AppCompat_Medium = 2131689683;
+ public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131689683;
// aapt resource value: 0x7F0F00D4
- public const int TextAppearance_AppCompat_Medium_Inverse = 2131689684;
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131689684;
// aapt resource value: 0x7F0F00D5
- public const int TextAppearance_AppCompat_Menu = 2131689685;
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131689685;
// aapt resource value: 0x7F0F00D6
- public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131689686;
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut = 2131689686;
// aapt resource value: 0x7F0F00D7
- public const int TextAppearance_AppCompat_SearchResult_Title = 2131689687;
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow = 2131689687;
// aapt resource value: 0x7F0F00D8
- public const int TextAppearance_AppCompat_Small = 2131689688;
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131689688;
// aapt resource value: 0x7F0F00D9
- public const int TextAppearance_AppCompat_Small_Inverse = 2131689689;
-
- // aapt resource value: 0x7F0F00DA
- public const int TextAppearance_AppCompat_Subhead = 2131689690;
-
- // aapt resource value: 0x7F0F00DB
- public const int TextAppearance_AppCompat_Subhead_Inverse = 2131689691;
-
- // aapt resource value: 0x7F0F00DC
- public const int TextAppearance_AppCompat_Title = 2131689692;
-
- // aapt resource value: 0x7F0F00DD
- public const int TextAppearance_AppCompat_Title_Inverse = 2131689693;
-
- // aapt resource value: 0x7F0F00DE
- public const int TextAppearance_AppCompat_Tooltip = 2131689694;
+ public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title = 2131689689;
// aapt resource value: 0x7F0F00DF
- public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131689695;
+ public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131689695;
+
+ // aapt resource value: 0x7F0F00DA
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131689690;
+
+ // aapt resource value: 0x7F0F00DB
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131689691;
+
+ // aapt resource value: 0x7F0F00DC
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131689692;
+
+ // aapt resource value: 0x7F0F00DD
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131689693;
+
+ // aapt resource value: 0x7F0F00DE
+ public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131689694;
// aapt resource value: 0x7F0F00E0
- public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131689696;
+ public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131689696;
// aapt resource value: 0x7F0F00E1
- public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131689697;
+ public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131689697;
// aapt resource value: 0x7F0F00E2
- public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131689698;
+ public const int TextAppearance_AppCompat = 2131689698;
// aapt resource value: 0x7F0F00E3
- public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131689699;
+ public const int TextAppearance_AppCompat_Body1 = 2131689699;
// aapt resource value: 0x7F0F00E4
- public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131689700;
+ public const int TextAppearance_AppCompat_Body2 = 2131689700;
// aapt resource value: 0x7F0F00E5
- public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131689701;
+ public const int TextAppearance_AppCompat_Button = 2131689701;
// aapt resource value: 0x7F0F00E6
- public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131689702;
+ public const int TextAppearance_AppCompat_Caption = 2131689702;
// aapt resource value: 0x7F0F00E7
- public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131689703;
+ public const int TextAppearance_AppCompat_Display1 = 2131689703;
// aapt resource value: 0x7F0F00E8
- public const int TextAppearance_AppCompat_Widget_Button = 2131689704;
+ public const int TextAppearance_AppCompat_Display2 = 2131689704;
// aapt resource value: 0x7F0F00E9
- public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131689705;
+ public const int TextAppearance_AppCompat_Display3 = 2131689705;
// aapt resource value: 0x7F0F00EA
- public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131689706;
+ public const int TextAppearance_AppCompat_Display4 = 2131689706;
// aapt resource value: 0x7F0F00EB
- public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131689707;
+ public const int TextAppearance_AppCompat_Headline = 2131689707;
// aapt resource value: 0x7F0F00EC
- public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131689708;
+ public const int TextAppearance_AppCompat_Inverse = 2131689708;
// aapt resource value: 0x7F0F00ED
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131689709;
+ public const int TextAppearance_AppCompat_Large = 2131689709;
// aapt resource value: 0x7F0F00EE
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131689710;
+ public const int TextAppearance_AppCompat_Large_Inverse = 2131689710;
// aapt resource value: 0x7F0F00EF
- public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131689711;
+ public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131689711;
// aapt resource value: 0x7F0F00F0
- public const int TextAppearance_AppCompat_Widget_Switch = 2131689712;
+ public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131689712;
// aapt resource value: 0x7F0F00F1
- public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131689713;
+ public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131689713;
// aapt resource value: 0x7F0F00F2
- public const int TextAppearance_Compat_Notification = 2131689714;
+ public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131689714;
// aapt resource value: 0x7F0F00F3
- public const int TextAppearance_Compat_Notification_Info = 2131689715;
+ public const int TextAppearance_AppCompat_Medium = 2131689715;
// aapt resource value: 0x7F0F00F4
- public const int TextAppearance_Compat_Notification_Line2 = 2131689716;
+ public const int TextAppearance_AppCompat_Medium_Inverse = 2131689716;
// aapt resource value: 0x7F0F00F5
- public const int TextAppearance_Compat_Notification_Time = 2131689717;
+ public const int TextAppearance_AppCompat_Menu = 2131689717;
// aapt resource value: 0x7F0F00F6
- public const int TextAppearance_Compat_Notification_Title = 2131689718;
+ public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131689718;
// aapt resource value: 0x7F0F00F7
- public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131689719;
+ public const int TextAppearance_AppCompat_SearchResult_Title = 2131689719;
// aapt resource value: 0x7F0F00F8
- public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131689720;
+ public const int TextAppearance_AppCompat_Small = 2131689720;
// aapt resource value: 0x7F0F00F9
- public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131689721;
-
- // aapt resource value: 0x7F0F0110
- public const int ThemeOverlay_AppCompat = 2131689744;
-
- // aapt resource value: 0x7F0F0111
- public const int ThemeOverlay_AppCompat_ActionBar = 2131689745;
-
- // aapt resource value: 0x7F0F0112
- public const int ThemeOverlay_AppCompat_Dark = 2131689746;
-
- // aapt resource value: 0x7F0F0113
- public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131689747;
-
- // aapt resource value: 0x7F0F0114
- public const int ThemeOverlay_AppCompat_DayNight = 2131689748;
-
- // aapt resource value: 0x7F0F0115
- public const int ThemeOverlay_AppCompat_DayNight_ActionBar = 2131689749;
-
- // aapt resource value: 0x7F0F0116
- public const int ThemeOverlay_AppCompat_Dialog = 2131689750;
-
- // aapt resource value: 0x7F0F0117
- public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131689751;
-
- // aapt resource value: 0x7F0F0118
- public const int ThemeOverlay_AppCompat_Light = 2131689752;
+ public const int TextAppearance_AppCompat_Small_Inverse = 2131689721;
// aapt resource value: 0x7F0F00FA
- public const int Theme_AppCompat = 2131689722;
+ public const int TextAppearance_AppCompat_Subhead = 2131689722;
// aapt resource value: 0x7F0F00FB
- public const int Theme_AppCompat_CompactMenu = 2131689723;
+ public const int TextAppearance_AppCompat_Subhead_Inverse = 2131689723;
// aapt resource value: 0x7F0F00FC
- public const int Theme_AppCompat_DayNight = 2131689724;
+ public const int TextAppearance_AppCompat_Title = 2131689724;
// aapt resource value: 0x7F0F00FD
- public const int Theme_AppCompat_DayNight_DarkActionBar = 2131689725;
+ public const int TextAppearance_AppCompat_Title_Inverse = 2131689725;
// aapt resource value: 0x7F0F00FE
- public const int Theme_AppCompat_DayNight_Dialog = 2131689726;
-
- // aapt resource value: 0x7F0F0101
- public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131689729;
+ public const int TextAppearance_AppCompat_Tooltip = 2131689726;
// aapt resource value: 0x7F0F00FF
- public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131689727;
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131689727;
// aapt resource value: 0x7F0F0100
- public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131689728;
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131689728;
+
+ // aapt resource value: 0x7F0F0101
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131689729;
// aapt resource value: 0x7F0F0102
- public const int Theme_AppCompat_DayNight_NoActionBar = 2131689730;
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131689730;
// aapt resource value: 0x7F0F0103
- public const int Theme_AppCompat_Dialog = 2131689731;
-
- // aapt resource value: 0x7F0F0106
- public const int Theme_AppCompat_DialogWhenLarge = 2131689734;
+ public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131689731;
// aapt resource value: 0x7F0F0104
- public const int Theme_AppCompat_Dialog_Alert = 2131689732;
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131689732;
// aapt resource value: 0x7F0F0105
- public const int Theme_AppCompat_Dialog_MinWidth = 2131689733;
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131689733;
+
+ // aapt resource value: 0x7F0F0106
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131689734;
// aapt resource value: 0x7F0F0107
- public const int Theme_AppCompat_Empty = 2131689735;
+ public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131689735;
// aapt resource value: 0x7F0F0108
- public const int Theme_AppCompat_Light = 2131689736;
+ public const int TextAppearance_AppCompat_Widget_Button = 2131689736;
// aapt resource value: 0x7F0F0109
- public const int Theme_AppCompat_Light_DarkActionBar = 2131689737;
+ public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131689737;
// aapt resource value: 0x7F0F010A
- public const int Theme_AppCompat_Light_Dialog = 2131689738;
-
- // aapt resource value: 0x7F0F010D
- public const int Theme_AppCompat_Light_DialogWhenLarge = 2131689741;
+ public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131689738;
// aapt resource value: 0x7F0F010B
- public const int Theme_AppCompat_Light_Dialog_Alert = 2131689739;
+ public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131689739;
// aapt resource value: 0x7F0F010C
- public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131689740;
+ public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131689740;
+
+ // aapt resource value: 0x7F0F010D
+ public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131689741;
// aapt resource value: 0x7F0F010E
- public const int Theme_AppCompat_Light_NoActionBar = 2131689742;
+ public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131689742;
// aapt resource value: 0x7F0F010F
- public const int Theme_AppCompat_NoActionBar = 2131689743;
+ public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131689743;
+
+ // aapt resource value: 0x7F0F0110
+ public const int TextAppearance_AppCompat_Widget_Switch = 2131689744;
+
+ // aapt resource value: 0x7F0F0111
+ public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131689745;
+
+ // aapt resource value: 0x7F0F0112
+ public const int TextAppearance_Compat_Notification = 2131689746;
+
+ // aapt resource value: 0x7F0F0113
+ public const int TextAppearance_Compat_Notification_Info = 2131689747;
+
+ // aapt resource value: 0x7F0F0114
+ public const int TextAppearance_Compat_Notification_Line2 = 2131689748;
+
+ // aapt resource value: 0x7F0F0115
+ public const int TextAppearance_Compat_Notification_Time = 2131689749;
+
+ // aapt resource value: 0x7F0F0116
+ public const int TextAppearance_Compat_Notification_Title = 2131689750;
+
+ // aapt resource value: 0x7F0F0117
+ public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131689751;
+
+ // aapt resource value: 0x7F0F0118
+ public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131689752;
// aapt resource value: 0x7F0F0119
- public const int Widget_AppCompat_ActionBar = 2131689753;
-
- // aapt resource value: 0x7F0F011A
- public const int Widget_AppCompat_ActionBar_Solid = 2131689754;
-
- // aapt resource value: 0x7F0F011B
- public const int Widget_AppCompat_ActionBar_TabBar = 2131689755;
-
- // aapt resource value: 0x7F0F011C
- public const int Widget_AppCompat_ActionBar_TabText = 2131689756;
-
- // aapt resource value: 0x7F0F011D
- public const int Widget_AppCompat_ActionBar_TabView = 2131689757;
-
- // aapt resource value: 0x7F0F011E
- public const int Widget_AppCompat_ActionButton = 2131689758;
-
- // aapt resource value: 0x7F0F011F
- public const int Widget_AppCompat_ActionButton_CloseMode = 2131689759;
-
- // aapt resource value: 0x7F0F0120
- public const int Widget_AppCompat_ActionButton_Overflow = 2131689760;
-
- // aapt resource value: 0x7F0F0121
- public const int Widget_AppCompat_ActionMode = 2131689761;
-
- // aapt resource value: 0x7F0F0122
- public const int Widget_AppCompat_ActivityChooserView = 2131689762;
-
- // aapt resource value: 0x7F0F0123
- public const int Widget_AppCompat_AutoCompleteTextView = 2131689763;
-
- // aapt resource value: 0x7F0F0124
- public const int Widget_AppCompat_Button = 2131689764;
-
- // aapt resource value: 0x7F0F012A
- public const int Widget_AppCompat_ButtonBar = 2131689770;
-
- // aapt resource value: 0x7F0F012B
- public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131689771;
-
- // aapt resource value: 0x7F0F0125
- public const int Widget_AppCompat_Button_Borderless = 2131689765;
-
- // aapt resource value: 0x7F0F0126
- public const int Widget_AppCompat_Button_Borderless_Colored = 2131689766;
-
- // aapt resource value: 0x7F0F0127
- public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131689767;
-
- // aapt resource value: 0x7F0F0128
- public const int Widget_AppCompat_Button_Colored = 2131689768;
-
- // aapt resource value: 0x7F0F0129
- public const int Widget_AppCompat_Button_Small = 2131689769;
-
- // aapt resource value: 0x7F0F012C
- public const int Widget_AppCompat_CompoundButton_CheckBox = 2131689772;
-
- // aapt resource value: 0x7F0F012D
- public const int Widget_AppCompat_CompoundButton_RadioButton = 2131689773;
-
- // aapt resource value: 0x7F0F012E
- public const int Widget_AppCompat_CompoundButton_Switch = 2131689774;
-
- // aapt resource value: 0x7F0F012F
- public const int Widget_AppCompat_DrawerArrowToggle = 2131689775;
+ public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131689753;
// aapt resource value: 0x7F0F0130
- public const int Widget_AppCompat_DropDownItem_Spinner = 2131689776;
+ public const int ThemeOverlay_AppCompat = 2131689776;
// aapt resource value: 0x7F0F0131
- public const int Widget_AppCompat_EditText = 2131689777;
+ public const int ThemeOverlay_AppCompat_ActionBar = 2131689777;
// aapt resource value: 0x7F0F0132
- public const int Widget_AppCompat_ImageButton = 2131689778;
+ public const int ThemeOverlay_AppCompat_Dark = 2131689778;
// aapt resource value: 0x7F0F0133
- public const int Widget_AppCompat_Light_ActionBar = 2131689779;
+ public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131689779;
// aapt resource value: 0x7F0F0134
- public const int Widget_AppCompat_Light_ActionBar_Solid = 2131689780;
+ public const int ThemeOverlay_AppCompat_DayNight = 2131689780;
// aapt resource value: 0x7F0F0135
- public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131689781;
+ public const int ThemeOverlay_AppCompat_DayNight_ActionBar = 2131689781;
// aapt resource value: 0x7F0F0136
- public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131689782;
+ public const int ThemeOverlay_AppCompat_Dialog = 2131689782;
// aapt resource value: 0x7F0F0137
- public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131689783;
+ public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131689783;
// aapt resource value: 0x7F0F0138
- public const int Widget_AppCompat_Light_ActionBar_TabText = 2131689784;
+ public const int ThemeOverlay_AppCompat_Light = 2131689784;
+
+ // aapt resource value: 0x7F0F011A
+ public const int Theme_AppCompat = 2131689754;
+
+ // aapt resource value: 0x7F0F011B
+ public const int Theme_AppCompat_CompactMenu = 2131689755;
+
+ // aapt resource value: 0x7F0F011C
+ public const int Theme_AppCompat_DayNight = 2131689756;
+
+ // aapt resource value: 0x7F0F011D
+ public const int Theme_AppCompat_DayNight_DarkActionBar = 2131689757;
+
+ // aapt resource value: 0x7F0F011E
+ public const int Theme_AppCompat_DayNight_Dialog = 2131689758;
+
+ // aapt resource value: 0x7F0F0121
+ public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131689761;
+
+ // aapt resource value: 0x7F0F011F
+ public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131689759;
+
+ // aapt resource value: 0x7F0F0120
+ public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131689760;
+
+ // aapt resource value: 0x7F0F0122
+ public const int Theme_AppCompat_DayNight_NoActionBar = 2131689762;
+
+ // aapt resource value: 0x7F0F0123
+ public const int Theme_AppCompat_Dialog = 2131689763;
+
+ // aapt resource value: 0x7F0F0126
+ public const int Theme_AppCompat_DialogWhenLarge = 2131689766;
+
+ // aapt resource value: 0x7F0F0124
+ public const int Theme_AppCompat_Dialog_Alert = 2131689764;
+
+ // aapt resource value: 0x7F0F0125
+ public const int Theme_AppCompat_Dialog_MinWidth = 2131689765;
+
+ // aapt resource value: 0x7F0F0127
+ public const int Theme_AppCompat_Empty = 2131689767;
+
+ // aapt resource value: 0x7F0F0128
+ public const int Theme_AppCompat_Light = 2131689768;
+
+ // aapt resource value: 0x7F0F0129
+ public const int Theme_AppCompat_Light_DarkActionBar = 2131689769;
+
+ // aapt resource value: 0x7F0F012A
+ public const int Theme_AppCompat_Light_Dialog = 2131689770;
+
+ // aapt resource value: 0x7F0F012D
+ public const int Theme_AppCompat_Light_DialogWhenLarge = 2131689773;
+
+ // aapt resource value: 0x7F0F012B
+ public const int Theme_AppCompat_Light_Dialog_Alert = 2131689771;
+
+ // aapt resource value: 0x7F0F012C
+ public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131689772;
+
+ // aapt resource value: 0x7F0F012E
+ public const int Theme_AppCompat_Light_NoActionBar = 2131689774;
+
+ // aapt resource value: 0x7F0F012F
+ public const int Theme_AppCompat_NoActionBar = 2131689775;
// aapt resource value: 0x7F0F0139
- public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131689785;
+ public const int Widget_AppCompat_ActionBar = 2131689785;
// aapt resource value: 0x7F0F013A
- public const int Widget_AppCompat_Light_ActionBar_TabView = 2131689786;
+ public const int Widget_AppCompat_ActionBar_Solid = 2131689786;
// aapt resource value: 0x7F0F013B
- public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131689787;
+ public const int Widget_AppCompat_ActionBar_TabBar = 2131689787;
// aapt resource value: 0x7F0F013C
- public const int Widget_AppCompat_Light_ActionButton = 2131689788;
+ public const int Widget_AppCompat_ActionBar_TabText = 2131689788;
// aapt resource value: 0x7F0F013D
- public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131689789;
+ public const int Widget_AppCompat_ActionBar_TabView = 2131689789;
// aapt resource value: 0x7F0F013E
- public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131689790;
+ public const int Widget_AppCompat_ActionButton = 2131689790;
// aapt resource value: 0x7F0F013F
- public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131689791;
+ public const int Widget_AppCompat_ActionButton_CloseMode = 2131689791;
// aapt resource value: 0x7F0F0140
- public const int Widget_AppCompat_Light_ActivityChooserView = 2131689792;
+ public const int Widget_AppCompat_ActionButton_Overflow = 2131689792;
// aapt resource value: 0x7F0F0141
- public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131689793;
+ public const int Widget_AppCompat_ActionMode = 2131689793;
// aapt resource value: 0x7F0F0142
- public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131689794;
+ public const int Widget_AppCompat_ActivityChooserView = 2131689794;
// aapt resource value: 0x7F0F0143
- public const int Widget_AppCompat_Light_ListPopupWindow = 2131689795;
+ public const int Widget_AppCompat_AutoCompleteTextView = 2131689795;
// aapt resource value: 0x7F0F0144
- public const int Widget_AppCompat_Light_ListView_DropDown = 2131689796;
-
- // aapt resource value: 0x7F0F0145
- public const int Widget_AppCompat_Light_PopupMenu = 2131689797;
-
- // aapt resource value: 0x7F0F0146
- public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131689798;
-
- // aapt resource value: 0x7F0F0147
- public const int Widget_AppCompat_Light_SearchView = 2131689799;
-
- // aapt resource value: 0x7F0F0148
- public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131689800;
-
- // aapt resource value: 0x7F0F0149
- public const int Widget_AppCompat_ListMenuView = 2131689801;
+ public const int Widget_AppCompat_Button = 2131689796;
// aapt resource value: 0x7F0F014A
- public const int Widget_AppCompat_ListPopupWindow = 2131689802;
+ public const int Widget_AppCompat_ButtonBar = 2131689802;
// aapt resource value: 0x7F0F014B
- public const int Widget_AppCompat_ListView = 2131689803;
+ public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131689803;
+
+ // aapt resource value: 0x7F0F0145
+ public const int Widget_AppCompat_Button_Borderless = 2131689797;
+
+ // aapt resource value: 0x7F0F0146
+ public const int Widget_AppCompat_Button_Borderless_Colored = 2131689798;
+
+ // aapt resource value: 0x7F0F0147
+ public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131689799;
+
+ // aapt resource value: 0x7F0F0148
+ public const int Widget_AppCompat_Button_Colored = 2131689800;
+
+ // aapt resource value: 0x7F0F0149
+ public const int Widget_AppCompat_Button_Small = 2131689801;
// aapt resource value: 0x7F0F014C
- public const int Widget_AppCompat_ListView_DropDown = 2131689804;
+ public const int Widget_AppCompat_CompoundButton_CheckBox = 2131689804;
// aapt resource value: 0x7F0F014D
- public const int Widget_AppCompat_ListView_Menu = 2131689805;
+ public const int Widget_AppCompat_CompoundButton_RadioButton = 2131689805;
// aapt resource value: 0x7F0F014E
- public const int Widget_AppCompat_PopupMenu = 2131689806;
+ public const int Widget_AppCompat_CompoundButton_Switch = 2131689806;
// aapt resource value: 0x7F0F014F
- public const int Widget_AppCompat_PopupMenu_Overflow = 2131689807;
+ public const int Widget_AppCompat_DrawerArrowToggle = 2131689807;
// aapt resource value: 0x7F0F0150
- public const int Widget_AppCompat_PopupWindow = 2131689808;
+ public const int Widget_AppCompat_DropDownItem_Spinner = 2131689808;
// aapt resource value: 0x7F0F0151
- public const int Widget_AppCompat_ProgressBar = 2131689809;
+ public const int Widget_AppCompat_EditText = 2131689809;
// aapt resource value: 0x7F0F0152
- public const int Widget_AppCompat_ProgressBar_Horizontal = 2131689810;
+ public const int Widget_AppCompat_ImageButton = 2131689810;
// aapt resource value: 0x7F0F0153
- public const int Widget_AppCompat_RatingBar = 2131689811;
+ public const int Widget_AppCompat_Light_ActionBar = 2131689811;
// aapt resource value: 0x7F0F0154
- public const int Widget_AppCompat_RatingBar_Indicator = 2131689812;
+ public const int Widget_AppCompat_Light_ActionBar_Solid = 2131689812;
// aapt resource value: 0x7F0F0155
- public const int Widget_AppCompat_RatingBar_Small = 2131689813;
+ public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131689813;
// aapt resource value: 0x7F0F0156
- public const int Widget_AppCompat_SearchView = 2131689814;
+ public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131689814;
// aapt resource value: 0x7F0F0157
- public const int Widget_AppCompat_SearchView_ActionBar = 2131689815;
+ public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131689815;
// aapt resource value: 0x7F0F0158
- public const int Widget_AppCompat_SeekBar = 2131689816;
+ public const int Widget_AppCompat_Light_ActionBar_TabText = 2131689816;
// aapt resource value: 0x7F0F0159
- public const int Widget_AppCompat_SeekBar_Discrete = 2131689817;
+ public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131689817;
// aapt resource value: 0x7F0F015A
- public const int Widget_AppCompat_Spinner = 2131689818;
+ public const int Widget_AppCompat_Light_ActionBar_TabView = 2131689818;
// aapt resource value: 0x7F0F015B
- public const int Widget_AppCompat_Spinner_DropDown = 2131689819;
+ public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131689819;
// aapt resource value: 0x7F0F015C
- public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131689820;
+ public const int Widget_AppCompat_Light_ActionButton = 2131689820;
// aapt resource value: 0x7F0F015D
- public const int Widget_AppCompat_Spinner_Underlined = 2131689821;
+ public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131689821;
// aapt resource value: 0x7F0F015E
- public const int Widget_AppCompat_TextView = 2131689822;
+ public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131689822;
// aapt resource value: 0x7F0F015F
- public const int Widget_AppCompat_TextView_SpinnerItem = 2131689823;
+ public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131689823;
// aapt resource value: 0x7F0F0160
- public const int Widget_AppCompat_Toolbar = 2131689824;
+ public const int Widget_AppCompat_Light_ActivityChooserView = 2131689824;
// aapt resource value: 0x7F0F0161
- public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131689825;
+ public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131689825;
// aapt resource value: 0x7F0F0162
- public const int Widget_Compat_NotificationActionContainer = 2131689826;
+ public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131689826;
// aapt resource value: 0x7F0F0163
- public const int Widget_Compat_NotificationActionText = 2131689827;
+ public const int Widget_AppCompat_Light_ListPopupWindow = 2131689827;
// aapt resource value: 0x7F0F0164
- public const int Widget_Support_CoordinatorLayout = 2131689828;
+ public const int Widget_AppCompat_Light_ListView_DropDown = 2131689828;
+
+ // aapt resource value: 0x7F0F0165
+ public const int Widget_AppCompat_Light_PopupMenu = 2131689829;
+
+ // aapt resource value: 0x7F0F0166
+ public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131689830;
+
+ // aapt resource value: 0x7F0F0167
+ public const int Widget_AppCompat_Light_SearchView = 2131689831;
+
+ // aapt resource value: 0x7F0F0168
+ public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131689832;
+
+ // aapt resource value: 0x7F0F0169
+ public const int Widget_AppCompat_ListMenuView = 2131689833;
+
+ // aapt resource value: 0x7F0F016A
+ public const int Widget_AppCompat_ListPopupWindow = 2131689834;
+
+ // aapt resource value: 0x7F0F016B
+ public const int Widget_AppCompat_ListView = 2131689835;
+
+ // aapt resource value: 0x7F0F016C
+ public const int Widget_AppCompat_ListView_DropDown = 2131689836;
+
+ // aapt resource value: 0x7F0F016D
+ public const int Widget_AppCompat_ListView_Menu = 2131689837;
+
+ // aapt resource value: 0x7F0F016E
+ public const int Widget_AppCompat_PopupMenu = 2131689838;
+
+ // aapt resource value: 0x7F0F016F
+ public const int Widget_AppCompat_PopupMenu_Overflow = 2131689839;
+
+ // aapt resource value: 0x7F0F0170
+ public const int Widget_AppCompat_PopupWindow = 2131689840;
+
+ // aapt resource value: 0x7F0F0171
+ public const int Widget_AppCompat_ProgressBar = 2131689841;
+
+ // aapt resource value: 0x7F0F0172
+ public const int Widget_AppCompat_ProgressBar_Horizontal = 2131689842;
+
+ // aapt resource value: 0x7F0F0173
+ public const int Widget_AppCompat_RatingBar = 2131689843;
+
+ // aapt resource value: 0x7F0F0174
+ public const int Widget_AppCompat_RatingBar_Indicator = 2131689844;
+
+ // aapt resource value: 0x7F0F0175
+ public const int Widget_AppCompat_RatingBar_Small = 2131689845;
+
+ // aapt resource value: 0x7F0F0176
+ public const int Widget_AppCompat_SearchView = 2131689846;
+
+ // aapt resource value: 0x7F0F0177
+ public const int Widget_AppCompat_SearchView_ActionBar = 2131689847;
+
+ // aapt resource value: 0x7F0F0178
+ public const int Widget_AppCompat_SeekBar = 2131689848;
+
+ // aapt resource value: 0x7F0F0179
+ public const int Widget_AppCompat_SeekBar_Discrete = 2131689849;
+
+ // aapt resource value: 0x7F0F017A
+ public const int Widget_AppCompat_Spinner = 2131689850;
+
+ // aapt resource value: 0x7F0F017B
+ public const int Widget_AppCompat_Spinner_DropDown = 2131689851;
+
+ // aapt resource value: 0x7F0F017C
+ public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131689852;
+
+ // aapt resource value: 0x7F0F017D
+ public const int Widget_AppCompat_Spinner_Underlined = 2131689853;
+
+ // aapt resource value: 0x7F0F017E
+ public const int Widget_AppCompat_TextView = 2131689854;
+
+ // aapt resource value: 0x7F0F017F
+ public const int Widget_AppCompat_TextView_SpinnerItem = 2131689855;
+
+ // aapt resource value: 0x7F0F0180
+ public const int Widget_AppCompat_Toolbar = 2131689856;
+
+ // aapt resource value: 0x7F0F0181
+ public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131689857;
+
+ // aapt resource value: 0x7F0F0182
+ public const int Widget_Compat_NotificationActionContainer = 2131689858;
+
+ // aapt resource value: 0x7F0F0183
+ public const int Widget_Compat_NotificationActionText = 2131689859;
+
+ // aapt resource value: 0x7F0F0184
+ public const int Widget_Support_CoordinatorLayout = 2131689860;
static Style()
{
@@ -4820,37 +5231,37 @@ namespace GUTSchedule.Droid
public partial class Styleable
{
- // aapt resource value: { 0x7F030036,0x7F030037,0x7F030038,0x7F030068,0x7F030069,0x7F03006A,0x7F03006B,0x7F03006C,0x7F03006D,0x7F030075,0x7F03007A,0x7F03007B,0x7F03008F,0x7F0300A8,0x7F0300A9,0x7F0300AA,0x7F0300AB,0x7F0300AC,0x7F0300B1,0x7F0300B4,0x7F0300D0,0x7F0300D8,0x7F0300E5,0x7F0300E9,0x7F0300EA,0x7F030111,0x7F030114,0x7F030131,0x7F03013A }
+ // aapt resource value: { 0x7F03003A,0x7F03003B,0x7F03003C,0x7F03006D,0x7F03006E,0x7F03006F,0x7F030070,0x7F030071,0x7F030072,0x7F03007A,0x7F030087,0x7F030088,0x7F03009E,0x7F0300BC,0x7F0300BD,0x7F0300BE,0x7F0300BF,0x7F0300C0,0x7F0300C6,0x7F0300CB,0x7F0300E8,0x7F0300F3,0x7F030104,0x7F030113,0x7F030114,0x7F030141,0x7F030144,0x7F030168,0x7F030171 }
public static int[] ActionBar = new int[] {
- 2130903094,
- 2130903095,
- 2130903096,
- 2130903144,
- 2130903145,
- 2130903146,
- 2130903147,
- 2130903148,
+ 2130903098,
+ 2130903099,
+ 2130903100,
2130903149,
- 2130903157,
+ 2130903150,
+ 2130903151,
+ 2130903152,
+ 2130903153,
+ 2130903154,
2130903162,
- 2130903163,
- 2130903183,
- 2130903208,
- 2130903209,
- 2130903210,
- 2130903211,
- 2130903212,
- 2130903217,
- 2130903220,
- 2130903248,
- 2130903256,
- 2130903269,
- 2130903273,
- 2130903274,
- 2130903313,
+ 2130903175,
+ 2130903176,
+ 2130903198,
+ 2130903228,
+ 2130903229,
+ 2130903230,
+ 2130903231,
+ 2130903232,
+ 2130903238,
+ 2130903243,
+ 2130903272,
+ 2130903283,
+ 2130903300,
+ 2130903315,
2130903316,
- 2130903345,
- 2130903354};
+ 2130903361,
+ 2130903364,
+ 2130903400,
+ 2130903409};
// aapt resource value: { 0x10100B3 }
public static int[] ActionBarLayout = new int[] {
@@ -4957,14 +5368,14 @@ namespace GUTSchedule.Droid
public static int[] ActionMenuView = new int[] {
-1};
- // aapt resource value: { 0x7F030036,0x7F030037,0x7F030058,0x7F0300A8,0x7F030114,0x7F03013A }
+ // aapt resource value: { 0x7F03003A,0x7F03003B,0x7F03005D,0x7F0300BC,0x7F030144,0x7F030171 }
public static int[] ActionMode = new int[] {
- 2130903094,
- 2130903095,
- 2130903128,
- 2130903208,
- 2130903316,
- 2130903354};
+ 2130903098,
+ 2130903099,
+ 2130903133,
+ 2130903228,
+ 2130903364,
+ 2130903409};
// aapt resource value: 0
public const int ActionMode_background = 0;
@@ -4984,10 +5395,10 @@ namespace GUTSchedule.Droid
// aapt resource value: 5
public const int ActionMode_titleTextStyle = 5;
- // aapt resource value: { 0x7F030091,0x7F0300B2 }
+ // aapt resource value: { 0x7F0300A4,0x7F0300C7 }
public static int[] ActivityChooserView = new int[] {
- 2130903185,
- 2130903218};
+ 2130903204,
+ 2130903239};
// aapt resource value: 0
public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 0;
@@ -5006,23 +5417,23 @@ namespace GUTSchedule.Droid
// aapt resource value: 1
public const int ActivityFilter_activityName = 1;
- // aapt resource value: { 0x7F03002D }
+ // aapt resource value: { 0x7F030031 }
public static int[] ActivityRule = new int[] {
- 2130903085};
+ 2130903089};
// aapt resource value: 0
public const int ActivityRule_alwaysExpand = 0;
- // aapt resource value: { 0x10100F2,0x7F030044,0x7F030045,0x7F0300C5,0x7F0300C6,0x7F0300D5,0x7F030100,0x7F030101 }
+ // aapt resource value: { 0x10100F2,0x7F030048,0x7F030049,0x7F0300DD,0x7F0300DE,0x7F0300F0,0x7F03012F,0x7F030130 }
public static int[] AlertDialog = new int[] {
16842994,
- 2130903108,
- 2130903109,
- 2130903237,
- 2130903238,
- 2130903253,
- 2130903296,
- 2130903297};
+ 2130903112,
+ 2130903113,
+ 2130903261,
+ 2130903262,
+ 2130903280,
+ 2130903343,
+ 2130903344};
// aapt resource value: 0
public const int AlertDialog_android_layout = 0;
@@ -5109,12 +5520,12 @@ namespace GUTSchedule.Droid
public static int[] AppCompatEmojiHelper = new int[] {
-1};
- // aapt resource value: { 0x1010119,0x7F03010B,0x7F03012F,0x7F030130 }
+ // aapt resource value: { 0x1010119,0x7F03013B,0x7F030166,0x7F030167 }
public static int[] AppCompatImageView = new int[] {
16843033,
- 2130903307,
- 2130903343,
- 2130903344};
+ 2130903355,
+ 2130903398,
+ 2130903399};
// aapt resource value: 0
public const int AppCompatImageView_android_src = 0;
@@ -5128,12 +5539,12 @@ namespace GUTSchedule.Droid
// aapt resource value: 3
public const int AppCompatImageView_tintMode = 3;
- // aapt resource value: { 0x1010142,0x7F03012C,0x7F03012D,0x7F03012E }
+ // aapt resource value: { 0x1010142,0x7F030163,0x7F030164,0x7F030165 }
public static int[] AppCompatSeekBar = new int[] {
16843074,
- 2130903340,
- 2130903341,
- 2130903342};
+ 2130903395,
+ 2130903396,
+ 2130903397};
// aapt resource value: 0
public const int AppCompatSeekBar_android_thumb = 0;
@@ -5178,30 +5589,30 @@ namespace GUTSchedule.Droid
// aapt resource value: 0
public const int AppCompatTextHelper_android_textAppearance = 0;
- // aapt resource value: { 0x1010034,0x7F030031,0x7F030032,0x7F030033,0x7F030034,0x7F030035,0x7F03007F,0x7F030080,0x7F030081,0x7F030082,0x7F030084,0x7F030085,0x7F030086,0x7F030087,0x7F030090,0x7F030099,0x7F03009B,0x7F0300A4,0x7F0300B7,0x7F0300C0,0x7F03011B,0x7F030126 }
+ // aapt resource value: { 0x1010034,0x7F030035,0x7F030036,0x7F030037,0x7F030038,0x7F030039,0x7F03008C,0x7F03008D,0x7F03008E,0x7F03008F,0x7F030091,0x7F030092,0x7F030093,0x7F030094,0x7F03009F,0x7F0300AC,0x7F0300AE,0x7F0300B7,0x7F0300CF,0x7F0300D8,0x7F030152,0x7F03015D }
public static int[] AppCompatTextView = new int[] {
16842804,
- 2130903089,
- 2130903090,
- 2130903091,
- 2130903092,
2130903093,
- 2130903167,
- 2130903168,
- 2130903169,
- 2130903170,
- 2130903172,
- 2130903173,
- 2130903174,
- 2130903175,
- 2130903184,
- 2130903193,
- 2130903195,
- 2130903204,
+ 2130903094,
+ 2130903095,
+ 2130903096,
+ 2130903097,
+ 2130903180,
+ 2130903181,
+ 2130903182,
+ 2130903183,
+ 2130903185,
+ 2130903186,
+ 2130903187,
+ 2130903188,
+ 2130903199,
+ 2130903212,
+ 2130903214,
2130903223,
- 2130903232,
- 2130903323,
- 2130903334};
+ 2130903247,
+ 2130903256,
+ 2130903378,
+ 2130903389};
// aapt resource value: 0
public const int AppCompatTextView_android_textAppearance = 0;
@@ -5269,7 +5680,7 @@ namespace GUTSchedule.Droid
// aapt resource value: 21
public const int AppCompatTextView_textLocale = 21;
- // aapt resource value: { 0x1010057,0x10100AE,0x7F030000,0x7F030001,0x7F030002,0x7F030003,0x7F030004,0x7F030005,0x7F030006,0x7F030007,0x7F030008,0x7F030009,0x7F03000A,0x7F03000B,0x7F03000C,0x7F03000E,0x7F03000F,0x7F030010,0x7F030011,0x7F030012,0x7F030013,0x7F030014,0x7F030015,0x7F030016,0x7F030017,0x7F030018,0x7F030019,0x7F03001A,0x7F03001B,0x7F03001C,0x7F03001D,0x7F03001E,0x7F03001F,0x7F030020,0x7F030024,0x7F030026,0x7F030027,0x7F030028,0x7F030029,0x7F030030,0x7F03003C,0x7F03003D,0x7F03003E,0x7F03003F,0x7F030040,0x7F030041,0x7F030046,0x7F030047,0x7F030054,0x7F030055,0x7F03005C,0x7F03005D,0x7F03005E,0x7F03005F,0x7F030060,0x7F030061,0x7F030062,0x7F030063,0x7F030064,0x7F030065,0x7F030073,0x7F030077,0x7F030078,0x7F030079,0x7F03007C,0x7F03007E,0x7F03008A,0x7F03008B,0x7F03008C,0x7F03008D,0x7F03008E,0x7F0300AA,0x7F0300B0,0x7F0300C1,0x7F0300C2,0x7F0300C3,0x7F0300C4,0x7F0300C7,0x7F0300C8,0x7F0300C9,0x7F0300CA,0x7F0300CB,0x7F0300CC,0x7F0300CD,0x7F0300CE,0x7F0300CF,0x7F0300E0,0x7F0300E1,0x7F0300E2,0x7F0300E4,0x7F0300E6,0x7F0300EE,0x7F0300EF,0x7F0300F0,0x7F0300F1,0x7F0300F6,0x7F0300F9,0x7F0300FA,0x7F0300FB,0x7F030104,0x7F030105,0x7F030119,0x7F03011C,0x7F03011D,0x7F03011E,0x7F03011F,0x7F030120,0x7F030121,0x7F030122,0x7F030123,0x7F030124,0x7F030125,0x7F03013B,0x7F03013C,0x7F03013D,0x7F03013E,0x7F030144,0x7F030146,0x7F030147,0x7F030148,0x7F030149,0x7F03014A,0x7F03014B,0x7F03014C,0x7F03014D,0x7F03014E,0x7F03014F }
+ // aapt resource value: { 0x1010057,0x10100AE,0x7F030000,0x7F030001,0x7F030002,0x7F030003,0x7F030004,0x7F030005,0x7F030006,0x7F030007,0x7F030008,0x7F030009,0x7F03000A,0x7F03000B,0x7F03000C,0x7F03000E,0x7F03000F,0x7F030010,0x7F030011,0x7F030012,0x7F030013,0x7F030014,0x7F030015,0x7F030016,0x7F030017,0x7F030018,0x7F030019,0x7F03001A,0x7F03001B,0x7F03001C,0x7F03001D,0x7F03001E,0x7F03001F,0x7F030020,0x7F030024,0x7F030027,0x7F030028,0x7F030029,0x7F03002A,0x7F030034,0x7F030040,0x7F030041,0x7F030042,0x7F030043,0x7F030044,0x7F030045,0x7F03004A,0x7F03004B,0x7F030059,0x7F03005A,0x7F030061,0x7F030062,0x7F030063,0x7F030064,0x7F030065,0x7F030066,0x7F030067,0x7F030068,0x7F030069,0x7F03006A,0x7F030078,0x7F03007E,0x7F030083,0x7F030084,0x7F030089,0x7F03008B,0x7F030097,0x7F030098,0x7F03009A,0x7F03009B,0x7F03009D,0x7F0300BE,0x7F0300C5,0x7F0300D9,0x7F0300DA,0x7F0300DB,0x7F0300DC,0x7F0300DF,0x7F0300E0,0x7F0300E1,0x7F0300E2,0x7F0300E3,0x7F0300E4,0x7F0300E5,0x7F0300E6,0x7F0300E7,0x7F0300FE,0x7F0300FF,0x7F030100,0x7F030103,0x7F030105,0x7F030118,0x7F030119,0x7F03011A,0x7F03011B,0x7F030120,0x7F030125,0x7F030127,0x7F030128,0x7F030134,0x7F030135,0x7F03014E,0x7F030153,0x7F030154,0x7F030155,0x7F030156,0x7F030157,0x7F030158,0x7F030159,0x7F03015A,0x7F03015B,0x7F03015C,0x7F030172,0x7F030173,0x7F030174,0x7F030175,0x7F03017D,0x7F030180,0x7F030181,0x7F030182,0x7F030183,0x7F030184,0x7F030185,0x7F030186,0x7F030187,0x7F030188,0x7F030189 }
public static int[] AppCompatTheme = new int[] {
16842839,
16842926,
@@ -5306,98 +5717,98 @@ namespace GUTSchedule.Droid
2130903071,
2130903072,
2130903076,
- 2130903078,
2130903079,
2130903080,
2130903081,
- 2130903088,
- 2130903100,
- 2130903101,
- 2130903102,
- 2130903103,
+ 2130903082,
+ 2130903092,
2130903104,
2130903105,
- 2130903110,
- 2130903111,
- 2130903124,
- 2130903125,
- 2130903132,
- 2130903133,
- 2130903134,
- 2130903135,
- 2130903136,
+ 2130903106,
+ 2130903107,
+ 2130903108,
+ 2130903109,
+ 2130903114,
+ 2130903115,
+ 2130903129,
+ 2130903130,
2130903137,
2130903138,
2130903139,
2130903140,
2130903141,
- 2130903155,
- 2130903159,
+ 2130903142,
+ 2130903143,
+ 2130903144,
+ 2130903145,
+ 2130903146,
2130903160,
- 2130903161,
- 2130903164,
2130903166,
- 2130903178,
+ 2130903171,
+ 2130903172,
+ 2130903177,
2130903179,
- 2130903180,
- 2130903181,
- 2130903182,
- 2130903210,
- 2130903216,
- 2130903233,
- 2130903234,
- 2130903235,
- 2130903236,
- 2130903239,
- 2130903240,
- 2130903241,
- 2130903242,
- 2130903243,
- 2130903244,
- 2130903245,
- 2130903246,
- 2130903247,
+ 2130903191,
+ 2130903192,
+ 2130903194,
+ 2130903195,
+ 2130903197,
+ 2130903230,
+ 2130903237,
+ 2130903257,
+ 2130903258,
+ 2130903259,
+ 2130903260,
+ 2130903263,
2130903264,
2130903265,
2130903266,
+ 2130903267,
2130903268,
+ 2130903269,
2130903270,
- 2130903278,
- 2130903279,
- 2130903280,
- 2130903281,
- 2130903286,
- 2130903289,
- 2130903290,
- 2130903291,
- 2130903300,
+ 2130903271,
+ 2130903294,
+ 2130903295,
+ 2130903296,
+ 2130903299,
2130903301,
+ 2130903320,
2130903321,
- 2130903324,
- 2130903325,
- 2130903326,
- 2130903327,
+ 2130903322,
+ 2130903323,
2130903328,
- 2130903329,
- 2130903330,
- 2130903331,
- 2130903332,
2130903333,
- 2130903355,
- 2130903356,
- 2130903357,
- 2130903358,
- 2130903364,
- 2130903366,
- 2130903367,
- 2130903368,
- 2130903369,
- 2130903370,
- 2130903371,
- 2130903372,
- 2130903373,
+ 2130903335,
+ 2130903336,
+ 2130903348,
+ 2130903349,
2130903374,
- 2130903375};
+ 2130903379,
+ 2130903380,
+ 2130903381,
+ 2130903382,
+ 2130903383,
+ 2130903384,
+ 2130903385,
+ 2130903386,
+ 2130903387,
+ 2130903388,
+ 2130903410,
+ 2130903411,
+ 2130903412,
+ 2130903413,
+ 2130903421,
+ 2130903424,
+ 2130903425,
+ 2130903426,
+ 2130903427,
+ 2130903428,
+ 2130903429,
+ 2130903430,
+ 2130903431,
+ 2130903432,
+ 2130903433};
// aapt resource value: 2
public const int AppCompatTheme_actionBarDivider = 2;
@@ -5780,17 +6191,28 @@ namespace GUTSchedule.Droid
// aapt resource value: 126
public const int AppCompatTheme_windowNoTitle = 126;
- // aapt resource value: { 0x7F03002A }
+ // aapt resource value: { 0x101030E,0x7F030127 }
+ public static int[] BackgroundStyle = new int[] {
+ 16843534,
+ 2130903335};
+
+ // aapt resource value: 0
+ public const int BackgroundStyle_android_selectableItemBackground = 0;
+
+ // aapt resource value: 1
+ public const int BackgroundStyle_selectableItemBackground = 1;
+
+ // aapt resource value: { 0x7F03002E }
public static int[] ButtonBarLayout = new int[] {
- 2130903082};
+ 2130903086};
// aapt resource value: 0
public const int ButtonBarLayout_allowStacking = 0;
- // aapt resource value: { 0x7F0300ED,0x7F0300FC }
+ // aapt resource value: { 0x7F030117,0x7F030129 }
public static int[] Capability = new int[] {
- 2130903277,
- 2130903292};
+ 2130903319,
+ 2130903337};
// aapt resource value: 0
public const int Capability_queryPatterns = 0;
@@ -5798,21 +6220,21 @@ namespace GUTSchedule.Droid
// aapt resource value: 1
public const int Capability_shortcutMatchRequired = 1;
- // aapt resource value: { 0x101013F,0x1010140,0x7F03004A,0x7F03004B,0x7F03004C,0x7F03004D,0x7F03004E,0x7F03004F,0x7F03006E,0x7F03006F,0x7F030070,0x7F030071,0x7F030072 }
+ // aapt resource value: { 0x101013F,0x1010140,0x7F03004E,0x7F03004F,0x7F030050,0x7F030051,0x7F030052,0x7F030053,0x7F030073,0x7F030074,0x7F030075,0x7F030076,0x7F030077 }
public static int[] CardView = new int[] {
16843071,
16843072,
- 2130903114,
- 2130903115,
- 2130903116,
- 2130903117,
2130903118,
2130903119,
- 2130903150,
- 2130903151,
- 2130903152,
- 2130903153,
- 2130903154};
+ 2130903120,
+ 2130903121,
+ 2130903122,
+ 2130903123,
+ 2130903155,
+ 2130903156,
+ 2130903157,
+ 2130903158,
+ 2130903159};
// aapt resource value: 1
public const int CardView_android_minHeight = 1;
@@ -5853,12 +6275,39 @@ namespace GUTSchedule.Droid
// aapt resource value: 12
public const int CardView_contentPaddingTop = 12;
- // aapt resource value: { 0x1010108,0x7F030051,0x7F030052,0x7F030053 }
+ // aapt resource value: { 0x10101EF,0x10101F0,0x10101F1,0x7F030086,0x7F030147,0x7F030148 }
+ public static int[] CheckBoxPreference = new int[] {
+ 16843247,
+ 16843248,
+ 16843249,
+ 2130903174,
+ 2130903367,
+ 2130903368};
+
+ // aapt resource value: 2
+ public const int CheckBoxPreference_android_disableDependentsState = 2;
+
+ // aapt resource value: 1
+ public const int CheckBoxPreference_android_summaryOff = 1;
+
+ // aapt resource value: 0
+ public const int CheckBoxPreference_android_summaryOn = 0;
+
+ // aapt resource value: 3
+ public const int CheckBoxPreference_disableDependentsState = 3;
+
+ // aapt resource value: 4
+ public const int CheckBoxPreference_summaryOff = 4;
+
+ // aapt resource value: 5
+ public const int CheckBoxPreference_summaryOn = 5;
+
+ // aapt resource value: { 0x1010108,0x7F030056,0x7F030057,0x7F030058 }
public static int[] CheckedTextView = new int[] {
16843016,
- 2130903121,
- 2130903122,
- 2130903123};
+ 2130903126,
+ 2130903127,
+ 2130903128};
// aapt resource value: 0
public const int CheckedTextView_android_checkMark = 0;
@@ -5872,13 +6321,13 @@ namespace GUTSchedule.Droid
// aapt resource value: 3
public const int CheckedTextView_checkMarkTintMode = 3;
- // aapt resource value: { 0x10101A5,0x101031F,0x1010647,0x7F03002B,0x7F0300B6 }
+ // aapt resource value: { 0x10101A5,0x101031F,0x1010647,0x7F03002F,0x7F0300CE }
public static int[] ColorStateListItem = new int[] {
16843173,
16843551,
16844359,
- 2130903083,
- 2130903222};
+ 2130903087,
+ 2130903246};
// aapt resource value: 3
public const int ColorStateListItem_alpha = 3;
@@ -5895,12 +6344,12 @@ namespace GUTSchedule.Droid
// aapt resource value: 4
public const int ColorStateListItem_lStar = 4;
- // aapt resource value: { 0x1010107,0x7F030042,0x7F030048,0x7F030049 }
+ // aapt resource value: { 0x1010107,0x7F030046,0x7F03004C,0x7F03004D }
public static int[] CompoundButton = new int[] {
16843015,
- 2130903106,
- 2130903112,
- 2130903113};
+ 2130903110,
+ 2130903116,
+ 2130903117};
// aapt resource value: 0
public const int CompoundButton_android_button = 0;
@@ -5914,23 +6363,23 @@ namespace GUTSchedule.Droid
// aapt resource value: 3
public const int CompoundButton_buttonTintMode = 3;
- // aapt resource value: { 0x7F0300B5,0x7F03010E }
+ // aapt resource value: { 0x7F0300CD,0x7F03013E }
public static int[] CoordinatorLayout = new int[] {
- 2130903221,
- 2130903310};
+ 2130903245,
+ 2130903358};
// aapt resource value: 0
public const int CoordinatorLayout_keylines = 0;
- // aapt resource value: { 0x10100B3,0x7F0300BA,0x7F0300BB,0x7F0300BC,0x7F0300BD,0x7F0300BE,0x7F0300BF }
+ // aapt resource value: { 0x10100B3,0x7F0300D2,0x7F0300D3,0x7F0300D4,0x7F0300D5,0x7F0300D6,0x7F0300D7 }
public static int[] CoordinatorLayout_Layout = new int[] {
16842931,
- 2130903226,
- 2130903227,
- 2130903228,
- 2130903229,
- 2130903230,
- 2130903231};
+ 2130903250,
+ 2130903251,
+ 2130903252,
+ 2130903253,
+ 2130903254,
+ 2130903255};
// aapt resource value: 0
public const int CoordinatorLayout_Layout_android_layout_gravity = 0;
@@ -5956,16 +6405,67 @@ namespace GUTSchedule.Droid
// aapt resource value: 1
public const int CoordinatorLayout_statusBarBackground = 1;
- // aapt resource value: { 0x7F03002E,0x7F03002F,0x7F03003B,0x7F03005B,0x7F030083,0x7F0300A6,0x7F030103,0x7F030128 }
+ // aapt resource value: { 0x10101F2,0x10101F3,0x10101F4,0x10101F5,0x10101F6,0x10101F7,0x7F03007F,0x7F030080,0x7F030081,0x7F030085,0x7F0300F4,0x7F030106 }
+ public static int[] DialogPreference = new int[] {
+ 16843250,
+ 16843251,
+ 16843252,
+ 16843253,
+ 16843254,
+ 16843255,
+ 2130903167,
+ 2130903168,
+ 2130903169,
+ 2130903173,
+ 2130903284,
+ 2130903302};
+
+ // aapt resource value: 2
+ public const int DialogPreference_android_dialogIcon = 2;
+
+ // aapt resource value: 5
+ public const int DialogPreference_android_dialogLayout = 5;
+
+ // aapt resource value: 1
+ public const int DialogPreference_android_dialogMessage = 1;
+
+ // aapt resource value: 0
+ public const int DialogPreference_android_dialogTitle = 0;
+
+ // aapt resource value: 4
+ public const int DialogPreference_android_negativeButtonText = 4;
+
+ // aapt resource value: 3
+ public const int DialogPreference_android_positiveButtonText = 3;
+
+ // aapt resource value: 6
+ public const int DialogPreference_dialogIcon = 6;
+
+ // aapt resource value: 7
+ public const int DialogPreference_dialogLayout = 7;
+
+ // aapt resource value: 8
+ public const int DialogPreference_dialogMessage = 8;
+
+ // aapt resource value: 9
+ public const int DialogPreference_dialogTitle = 9;
+
+ // aapt resource value: 10
+ public const int DialogPreference_negativeButtonText = 10;
+
+ // aapt resource value: 11
+ public const int DialogPreference_positiveButtonText = 11;
+
+ // aapt resource value: { 0x7F030032,0x7F030033,0x7F03003F,0x7F030060,0x7F030090,0x7F0300BA,0x7F030133,0x7F03015F }
public static int[] DrawerArrowToggle = new int[] {
- 2130903086,
- 2130903087,
- 2130903099,
- 2130903131,
- 2130903171,
- 2130903206,
- 2130903299,
- 2130903336};
+ 2130903090,
+ 2130903091,
+ 2130903103,
+ 2130903136,
+ 2130903184,
+ 2130903226,
+ 2130903347,
+ 2130903391};
// aapt resource value: 0
public const int DrawerArrowToggle_arrowHeadLength = 0;
@@ -5991,35 +6491,42 @@ namespace GUTSchedule.Droid
// aapt resource value: 7
public const int DrawerArrowToggle_thickness = 7;
- // aapt resource value: { 0x7F03008F }
+ // aapt resource value: { 0x7F03009E }
public static int[] DrawerLayout = new int[] {
- 2130903183};
+ 2130903198};
// aapt resource value: 0
public const int DrawerLayout_elevation = 0;
- // aapt resource value: { 0x7F03009C,0x7F03009D,0x7F03009E,0x7F03009F,0x7F0300A0,0x7F0300A1,0x7F0300A2 }
- public static int[] FontFamily = new int[] {
- 2130903196,
- 2130903197,
- 2130903198,
- 2130903199,
- 2130903200,
- 2130903201,
- 2130903202};
+ // aapt resource value: { 0x7F03017C }
+ public static int[] EditTextPreference = new int[] {
+ 2130903420};
- // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F03009A,0x7F0300A3,0x7F0300A4,0x7F0300A5,0x7F030143 }
+ // aapt resource value: 0
+ public const int EditTextPreference_useSimpleSummaryProvider = 0;
+
+ // aapt resource value: { 0x7F0300AF,0x7F0300B0,0x7F0300B1,0x7F0300B2,0x7F0300B3,0x7F0300B4,0x7F0300B5 }
+ public static int[] FontFamily = new int[] {
+ 2130903215,
+ 2130903216,
+ 2130903217,
+ 2130903218,
+ 2130903219,
+ 2130903220,
+ 2130903221};
+
+ // aapt resource value: { 0x1010532,0x1010533,0x101053F,0x101056F,0x1010570,0x7F0300AD,0x7F0300B6,0x7F0300B7,0x7F0300B8,0x7F03017A }
public static int[] FontFamilyFont = new int[] {
16844082,
16844083,
16844095,
16844143,
16844144,
- 2130903194,
- 2130903203,
- 2130903204,
- 2130903205,
- 2130903363};
+ 2130903213,
+ 2130903222,
+ 2130903223,
+ 2130903224,
+ 2130903418};
// aapt resource value: 0
public const int FontFamilyFont_android_font = 0;
@@ -6160,17 +6667,17 @@ namespace GUTSchedule.Droid
// aapt resource value: 2
public const int GradientColor_android_type = 2;
- // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F03007B,0x7F03007D,0x7F0300D3,0x7F0300FE }
+ // aapt resource value: { 0x10100AF,0x10100C4,0x1010126,0x1010127,0x1010128,0x7F030088,0x7F03008A,0x7F0300ED,0x7F03012C }
public static int[] LinearLayoutCompat = new int[] {
16842927,
16842948,
16843046,
16843047,
16843048,
- 2130903163,
- 2130903165,
- 2130903251,
- 2130903294};
+ 2130903176,
+ 2130903178,
+ 2130903277,
+ 2130903340};
// aapt resource value: 2
public const int LinearLayoutCompat_android_baselineAligned = 2;
@@ -6229,6 +6736,29 @@ namespace GUTSchedule.Droid
// aapt resource value: 1
public const int ListPopupWindow_android_dropDownVerticalOffset = 1;
+ // aapt resource value: { 0x10100B2,0x10101F8,0x7F0300A2,0x7F0300A3,0x7F03017C }
+ public static int[] ListPreference = new int[] {
+ 16842930,
+ 16843256,
+ 2130903202,
+ 2130903203,
+ 2130903420};
+
+ // aapt resource value: 0
+ public const int ListPreference_android_entries = 0;
+
+ // aapt resource value: 1
+ public const int ListPreference_android_entryValues = 1;
+
+ // aapt resource value: 2
+ public const int ListPreference_entries = 2;
+
+ // aapt resource value: 3
+ public const int ListPreference_entryValues = 3;
+
+ // aapt resource value: 4
+ public const int ListPreference_useSimpleSummaryProvider = 4;
+
// aapt resource value: { 0x101000E,0x10100D0,0x1010194,0x10101DE,0x10101DF,0x10101E0 }
public static int[] MenuGroup = new int[] {
16842766,
@@ -6256,7 +6786,7 @@ namespace GUTSchedule.Droid
// aapt resource value: 2
public const int MenuGroup_android_visible = 2;
- // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F03000D,0x7F030021,0x7F030022,0x7F03002C,0x7F030067,0x7F0300AD,0x7F0300AE,0x7F0300DA,0x7F0300FD,0x7F03013F }
+ // aapt resource value: { 0x1010002,0x101000E,0x10100D0,0x1010106,0x1010194,0x10101DE,0x10101DF,0x10101E1,0x10101E2,0x10101E3,0x10101E4,0x10101E5,0x101026F,0x7F03000D,0x7F030021,0x7F030022,0x7F030030,0x7F03006C,0x7F0300C2,0x7F0300C3,0x7F0300F6,0x7F03012B,0x7F030176 }
public static int[] MenuItem = new int[] {
16842754,
16842766,
@@ -6274,13 +6804,13 @@ namespace GUTSchedule.Droid
2130903053,
2130903073,
2130903074,
- 2130903084,
- 2130903143,
- 2130903213,
- 2130903214,
- 2130903258,
- 2130903293,
- 2130903359};
+ 2130903088,
+ 2130903148,
+ 2130903234,
+ 2130903235,
+ 2130903286,
+ 2130903339,
+ 2130903414};
// aapt resource value: 13
public const int MenuItem_actionLayout = 13;
@@ -6351,7 +6881,7 @@ namespace GUTSchedule.Droid
// aapt resource value: 22
public const int MenuItem_tooltipText = 22;
- // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F0300E7,0x7F03010F }
+ // aapt resource value: { 0x10100AE,0x101012C,0x101012D,0x101012E,0x101012F,0x1010130,0x1010131,0x7F030111,0x7F03013F }
public static int[] MenuView = new int[] {
16842926,
16843052,
@@ -6360,8 +6890,8 @@ namespace GUTSchedule.Droid
16843055,
16843056,
16843057,
- 2130903271,
- 2130903311};
+ 2130903313,
+ 2130903359};
// aapt resource value: 4
public const int MenuView_android_headerBackground = 4;
@@ -6390,15 +6920,34 @@ namespace GUTSchedule.Droid
// aapt resource value: 8
public const int MenuView_subMenuArrow = 8;
- // aapt resource value: { 0x1010176,0x10102C9,0x7F0300DB }
+ // aapt resource value: { 0x10100B2,0x10101F8,0x7F0300A2,0x7F0300A3 }
+ public static int[] MultiSelectListPreference = new int[] {
+ 16842930,
+ 16843256,
+ 2130903202,
+ 2130903203};
+
+ // aapt resource value: 0
+ public const int MultiSelectListPreference_android_entries = 0;
+
+ // aapt resource value: 1
+ public const int MultiSelectListPreference_android_entryValues = 1;
+
+ // aapt resource value: 2
+ public const int MultiSelectListPreference_entries = 2;
+
+ // aapt resource value: 3
+ public const int MultiSelectListPreference_entryValues = 3;
+
+ // aapt resource value: { 0x1010176,0x10102C9,0x7F0300F9 }
public static int[] PopupWindow = new int[] {
16843126,
16843465,
- 2130903259};
+ 2130903289};
- // aapt resource value: { 0x7F03010D }
+ // aapt resource value: { 0x7F03013D }
public static int[] PopupWindowBackgroundState = new int[] {
- 2130903309};
+ 2130903357};
// aapt resource value: 0
public const int PopupWindowBackgroundState_state_above_anchor = 0;
@@ -6412,10 +6961,300 @@ namespace GUTSchedule.Droid
// aapt resource value: 2
public const int PopupWindow_overlapAnchor = 2;
- // aapt resource value: { 0x7F0300DC,0x7F0300DF }
+ // aapt resource value: { 0x1010002,0x101000D,0x101000E,0x10100F2,0x10101E1,0x10101E6,0x10101E8,0x10101E9,0x10101EA,0x10101EB,0x10101EC,0x10101ED,0x10101EE,0x10102E3,0x101055C,0x1010561,0x7F03002B,0x7F03002D,0x7F03007C,0x7F03007D,0x7F0300A0,0x7F0300A1,0x7F0300B9,0x7F0300C0,0x7F0300C1,0x7F0300CA,0x7F0300CC,0x7F0300D0,0x7F0300F7,0x7F030101,0x7F030126,0x7F03012A,0x7F030131,0x7F030146,0x7F030168,0x7F03017F }
+ public static int[] Preference = new int[] {
+ 16842754,
+ 16842765,
+ 16842766,
+ 16842994,
+ 16843233,
+ 16843238,
+ 16843240,
+ 16843241,
+ 16843242,
+ 16843243,
+ 16843244,
+ 16843245,
+ 16843246,
+ 16843491,
+ 16844124,
+ 16844129,
+ 2130903083,
+ 2130903085,
+ 2130903164,
+ 2130903165,
+ 2130903200,
+ 2130903201,
+ 2130903225,
+ 2130903232,
+ 2130903233,
+ 2130903242,
+ 2130903244,
+ 2130903248,
+ 2130903287,
+ 2130903297,
+ 2130903334,
+ 2130903338,
+ 2130903345,
+ 2130903366,
+ 2130903400,
+ 2130903423};
+
+ // aapt resource value: { 0x10100F2,0x1010129,0x101012A,0x7F03002C }
+ public static int[] PreferenceFragment = new int[] {
+ 16842994,
+ 16843049,
+ 16843050,
+ 2130903084};
+
+ // aapt resource value: { 0x10100F2,0x1010129,0x101012A,0x7F03002C }
+ public static int[] PreferenceFragmentCompat = new int[] {
+ 16842994,
+ 16843049,
+ 16843050,
+ 2130903084};
+
+ // aapt resource value: 3
+ public const int PreferenceFragmentCompat_allowDividerAfterLastItem = 3;
+
+ // aapt resource value: 1
+ public const int PreferenceFragmentCompat_android_divider = 1;
+
+ // aapt resource value: 2
+ public const int PreferenceFragmentCompat_android_dividerHeight = 2;
+
+ // aapt resource value: 0
+ public const int PreferenceFragmentCompat_android_layout = 0;
+
+ // aapt resource value: 3
+ public const int PreferenceFragment_allowDividerAfterLastItem = 3;
+
+ // aapt resource value: 1
+ public const int PreferenceFragment_android_divider = 1;
+
+ // aapt resource value: 2
+ public const int PreferenceFragment_android_dividerHeight = 2;
+
+ // aapt resource value: 0
+ public const int PreferenceFragment_android_layout = 0;
+
+ // aapt resource value: { 0x10101E7,0x7F0300C8,0x7F0300F8 }
+ public static int[] PreferenceGroup = new int[] {
+ 16843239,
+ 2130903240,
+ 2130903288};
+
+ // aapt resource value: 0
+ public const int PreferenceGroup_android_orderingFromXml = 0;
+
+ // aapt resource value: 1
+ public const int PreferenceGroup_initialExpandedChildrenCount = 1;
+
+ // aapt resource value: 2
+ public const int PreferenceGroup_orderingFromXml = 2;
+
+ // aapt resource value: { 0x101011F,0x1010120,0x7F0300EB,0x7F0300EC }
+ public static int[] PreferenceImageView = new int[] {
+ 16843039,
+ 16843040,
+ 2130903275,
+ 2130903276};
+
+ // aapt resource value: 1
+ public const int PreferenceImageView_android_maxHeight = 1;
+
+ // aapt resource value: 0
+ public const int PreferenceImageView_android_maxWidth = 0;
+
+ // aapt resource value: 2
+ public const int PreferenceImageView_maxHeight = 2;
+
+ // aapt resource value: 3
+ public const int PreferenceImageView_maxWidth = 3;
+
+ // aapt resource value: { 0x7F030055,0x7F030082,0x7F030099,0x7F03009C,0x7F030107,0x7F030108,0x7F030109,0x7F03010A,0x7F03010B,0x7F03010C,0x7F03010D,0x7F03010E,0x7F03010F,0x7F030110,0x7F030124,0x7F03014C,0x7F03014D }
+ public static int[] PreferenceTheme = new int[] {
+ 2130903125,
+ 2130903170,
+ 2130903193,
+ 2130903196,
+ 2130903303,
+ 2130903304,
+ 2130903305,
+ 2130903306,
+ 2130903307,
+ 2130903308,
+ 2130903309,
+ 2130903310,
+ 2130903311,
+ 2130903312,
+ 2130903332,
+ 2130903372,
+ 2130903373};
+
+ // aapt resource value: 0
+ public const int PreferenceTheme_checkBoxPreferenceStyle = 0;
+
+ // aapt resource value: 1
+ public const int PreferenceTheme_dialogPreferenceStyle = 1;
+
+ // aapt resource value: 2
+ public const int PreferenceTheme_dropdownPreferenceStyle = 2;
+
+ // aapt resource value: 3
+ public const int PreferenceTheme_editTextPreferenceStyle = 3;
+
+ // aapt resource value: 4
+ public const int PreferenceTheme_preferenceCategoryStyle = 4;
+
+ // aapt resource value: 5
+ public const int PreferenceTheme_preferenceCategoryTitleTextAppearance = 5;
+
+ // aapt resource value: 6
+ public const int PreferenceTheme_preferenceCategoryTitleTextColor = 6;
+
+ // aapt resource value: 7
+ public const int PreferenceTheme_preferenceFragmentCompatStyle = 7;
+
+ // aapt resource value: 8
+ public const int PreferenceTheme_preferenceFragmentListStyle = 8;
+
+ // aapt resource value: 9
+ public const int PreferenceTheme_preferenceFragmentStyle = 9;
+
+ // aapt resource value: 10
+ public const int PreferenceTheme_preferenceInformationStyle = 10;
+
+ // aapt resource value: 11
+ public const int PreferenceTheme_preferenceScreenStyle = 11;
+
+ // aapt resource value: 12
+ public const int PreferenceTheme_preferenceStyle = 12;
+
+ // aapt resource value: 13
+ public const int PreferenceTheme_preferenceTheme = 13;
+
+ // aapt resource value: 14
+ public const int PreferenceTheme_seekBarPreferenceStyle = 14;
+
+ // aapt resource value: 15
+ public const int PreferenceTheme_switchPreferenceCompatStyle = 15;
+
+ // aapt resource value: 16
+ public const int PreferenceTheme_switchPreferenceStyle = 16;
+
+ // aapt resource value: 16
+ public const int Preference_allowDividerAbove = 16;
+
+ // aapt resource value: 17
+ public const int Preference_allowDividerBelow = 17;
+
+ // aapt resource value: 11
+ public const int Preference_android_defaultValue = 11;
+
+ // aapt resource value: 10
+ public const int Preference_android_dependency = 10;
+
+ // aapt resource value: 2
+ public const int Preference_android_enabled = 2;
+
+ // aapt resource value: 13
+ public const int Preference_android_fragment = 13;
+
+ // aapt resource value: 0
+ public const int Preference_android_icon = 0;
+
+ // aapt resource value: 15
+ public const int Preference_android_iconSpaceReserved = 15;
+
+ // aapt resource value: 6
+ public const int Preference_android_key = 6;
+
+ // aapt resource value: 3
+ public const int Preference_android_layout = 3;
+
+ // aapt resource value: 8
+ public const int Preference_android_order = 8;
+
+ // aapt resource value: 1
+ public const int Preference_android_persistent = 1;
+
+ // aapt resource value: 5
+ public const int Preference_android_selectable = 5;
+
+ // aapt resource value: 12
+ public const int Preference_android_shouldDisableView = 12;
+
+ // aapt resource value: 14
+ public const int Preference_android_singleLineTitle = 14;
+
+ // aapt resource value: 7
+ public const int Preference_android_summary = 7;
+
+ // aapt resource value: 4
+ public const int Preference_android_title = 4;
+
+ // aapt resource value: 9
+ public const int Preference_android_widgetLayout = 9;
+
+ // aapt resource value: 18
+ public const int Preference_defaultValue = 18;
+
+ // aapt resource value: 19
+ public const int Preference_dependency = 19;
+
+ // aapt resource value: 20
+ public const int Preference_enableCopying = 20;
+
+ // aapt resource value: 21
+ public const int Preference_enabled = 21;
+
+ // aapt resource value: 22
+ public const int Preference_fragment = 22;
+
+ // aapt resource value: 23
+ public const int Preference_icon = 23;
+
+ // aapt resource value: 24
+ public const int Preference_iconSpaceReserved = 24;
+
+ // aapt resource value: 25
+ public const int Preference_isPreferenceVisible = 25;
+
+ // aapt resource value: 26
+ public const int Preference_key = 26;
+
+ // aapt resource value: 27
+ public const int Preference_layout = 27;
+
+ // aapt resource value: 28
+ public const int Preference_order = 28;
+
+ // aapt resource value: 29
+ public const int Preference_persistent = 29;
+
+ // aapt resource value: 30
+ public const int Preference_selectable = 30;
+
+ // aapt resource value: 31
+ public const int Preference_shouldDisableView = 31;
+
+ // aapt resource value: 32
+ public const int Preference_singleLineTitle = 32;
+
+ // aapt resource value: 33
+ public const int Preference_summary = 33;
+
+ // aapt resource value: 34
+ public const int Preference_title = 34;
+
+ // aapt resource value: 35
+ public const int Preference_widgetLayout = 35;
+
+ // aapt resource value: { 0x7F0300FA,0x7F0300FD }
public static int[] RecycleListView = new int[] {
- 2130903260,
- 2130903263};
+ 2130903290,
+ 2130903293};
// aapt resource value: 0
public const int RecycleListView_paddingBottomNoButtons = 0;
@@ -6423,20 +7262,20 @@ namespace GUTSchedule.Droid
// aapt resource value: 1
public const int RecycleListView_paddingTopNoTitle = 1;
- // aapt resource value: { 0x10100C4,0x10100EB,0x10100F1,0x7F030092,0x7F030093,0x7F030094,0x7F030095,0x7F030096,0x7F0300B9,0x7F0300F3,0x7F030102,0x7F03010C }
+ // aapt resource value: { 0x10100C4,0x10100EB,0x10100F1,0x7F0300A5,0x7F0300A6,0x7F0300A7,0x7F0300A8,0x7F0300A9,0x7F0300D1,0x7F03011D,0x7F030132,0x7F03013C }
public static int[] RecyclerView = new int[] {
16842948,
16842987,
16842993,
- 2130903186,
- 2130903187,
- 2130903188,
- 2130903189,
- 2130903190,
- 2130903225,
- 2130903283,
- 2130903298,
- 2130903308};
+ 2130903205,
+ 2130903206,
+ 2130903207,
+ 2130903208,
+ 2130903209,
+ 2130903249,
+ 2130903325,
+ 2130903346,
+ 2130903356};
// aapt resource value: 1
public const int RecyclerView_android_clipToPadding = 1;
@@ -6474,25 +7313,25 @@ namespace GUTSchedule.Droid
// aapt resource value: 11
public const int RecyclerView_stackFromEnd = 11;
- // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F030057,0x7F030066,0x7F030076,0x7F0300A7,0x7F0300AF,0x7F0300B8,0x7F0300EB,0x7F0300EC,0x7F0300F4,0x7F0300F5,0x7F030110,0x7F030115,0x7F030145 }
+ // aapt resource value: { 0x10100DA,0x101011F,0x1010220,0x1010264,0x7F03005C,0x7F03006B,0x7F03007B,0x7F0300BB,0x7F0300C4,0x7F0300D0,0x7F030115,0x7F030116,0x7F03011E,0x7F03011F,0x7F030140,0x7F030145,0x7F03017E }
public static int[] SearchView = new int[] {
16842970,
16843039,
16843296,
16843364,
- 2130903127,
- 2130903142,
- 2130903158,
- 2130903207,
- 2130903215,
- 2130903224,
- 2130903275,
- 2130903276,
- 2130903284,
- 2130903285,
- 2130903312,
+ 2130903132,
+ 2130903147,
+ 2130903163,
+ 2130903227,
+ 2130903236,
+ 2130903248,
2130903317,
- 2130903365};
+ 2130903318,
+ 2130903326,
+ 2130903327,
+ 2130903360,
+ 2130903365,
+ 2130903422};
// aapt resource value: 0
public const int SearchView_android_focusable = 0;
@@ -6545,13 +7384,44 @@ namespace GUTSchedule.Droid
// aapt resource value: 16
public const int SearchView_voiceIcon = 16;
- // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F0300E5 }
+ // aapt resource value: { 0x10100F2,0x1010136,0x7F030026,0x7F0300EF,0x7F030123,0x7F03012D,0x7F03017B }
+ public static int[] SeekBarPreference = new int[] {
+ 16842994,
+ 16843062,
+ 2130903078,
+ 2130903279,
+ 2130903331,
+ 2130903341,
+ 2130903419};
+
+ // aapt resource value: 2
+ public const int SeekBarPreference_adjustable = 2;
+
+ // aapt resource value: 0
+ public const int SeekBarPreference_android_layout = 0;
+
+ // aapt resource value: 1
+ public const int SeekBarPreference_android_max = 1;
+
+ // aapt resource value: 3
+ public const int SeekBarPreference_min = 3;
+
+ // aapt resource value: 4
+ public const int SeekBarPreference_seekBarIncrement = 4;
+
+ // aapt resource value: 5
+ public const int SeekBarPreference_showSeekBarValue = 5;
+
+ // aapt resource value: 6
+ public const int SeekBarPreference_updatesContinuously = 6;
+
+ // aapt resource value: { 0x10100B2,0x1010176,0x101017B,0x1010262,0x7F030104 }
public static int[] Spinner = new int[] {
16842930,
16843126,
16843131,
16843362,
- 2130903269};
+ 2130903300};
// aapt resource value: 3
public const int Spinner_android_dropDownWidth = 3;
@@ -6568,11 +7438,11 @@ namespace GUTSchedule.Droid
// aapt resource value: 4
public const int Spinner_popupTheme = 4;
- // aapt resource value: { 0x7F0300E8,0x7F0300F7,0x7F0300F8 }
+ // aapt resource value: { 0x7F030112,0x7F030121,0x7F030122 }
public static int[] SplitPairFilter = new int[] {
- 2130903272,
- 2130903287,
- 2130903288};
+ 2130903314,
+ 2130903329,
+ 2130903330};
// aapt resource value: 0
public const int SplitPairFilter_primaryActivityName = 0;
@@ -6583,15 +7453,15 @@ namespace GUTSchedule.Droid
// aapt resource value: 2
public const int SplitPairFilter_secondaryActivityName = 2;
- // aapt resource value: { 0x7F030056,0x7F030097,0x7F030098,0x7F030106,0x7F030107,0x7F030108,0x7F030109 }
+ // aapt resource value: { 0x7F03005B,0x7F0300AA,0x7F0300AB,0x7F030136,0x7F030137,0x7F030138,0x7F030139 }
public static int[] SplitPairRule = new int[] {
- 2130903126,
- 2130903191,
- 2130903192,
- 2130903302,
- 2130903303,
- 2130903304,
- 2130903305};
+ 2130903131,
+ 2130903210,
+ 2130903211,
+ 2130903350,
+ 2130903351,
+ 2130903352,
+ 2130903353};
// aapt resource value: 0
public const int SplitPairRule_clearTop = 0;
@@ -6614,13 +7484,13 @@ namespace GUTSchedule.Droid
// aapt resource value: 6
public const int SplitPairRule_splitRatio = 6;
- // aapt resource value: { 0x7F0300E3,0x7F030106,0x7F030107,0x7F030108,0x7F030109 }
+ // aapt resource value: { 0x7F030102,0x7F030136,0x7F030137,0x7F030138,0x7F030139 }
public static int[] SplitPlaceholderRule = new int[] {
- 2130903267,
- 2130903302,
- 2130903303,
- 2130903304,
- 2130903305};
+ 2130903298,
+ 2130903350,
+ 2130903351,
+ 2130903352,
+ 2130903353};
// aapt resource value: 0
public const int SplitPlaceholderRule_placeholderActivityName = 0;
@@ -6671,29 +7541,29 @@ namespace GUTSchedule.Droid
// aapt resource value: 1
public const int StateListDrawable_android_visible = 1;
- // aapt resource value: { 0x7F030116 }
+ // aapt resource value: { 0x7F030149 }
public static int[] SwipeRefreshLayout = new int[] {
- 2130903318};
+ 2130903369};
// aapt resource value: 0
public const int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor = 0;
- // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F0300FF,0x7F03010A,0x7F030117,0x7F030118,0x7F03011A,0x7F030129,0x7F03012A,0x7F03012B,0x7F030140,0x7F030141,0x7F030142 }
+ // aapt resource value: { 0x1010124,0x1010125,0x1010142,0x7F03012E,0x7F03013A,0x7F03014A,0x7F03014B,0x7F03014F,0x7F030160,0x7F030161,0x7F030162,0x7F030177,0x7F030178,0x7F030179 }
public static int[] SwitchCompat = new int[] {
16843044,
16843045,
16843074,
- 2130903295,
- 2130903306,
- 2130903319,
- 2130903320,
- 2130903322,
- 2130903337,
- 2130903338,
- 2130903339,
- 2130903360,
- 2130903361,
- 2130903362};
+ 2130903342,
+ 2130903354,
+ 2130903370,
+ 2130903371,
+ 2130903375,
+ 2130903392,
+ 2130903393,
+ 2130903394,
+ 2130903415,
+ 2130903416,
+ 2130903417};
// aapt resource value: 1
public const int SwitchCompat_android_textOff = 1;
@@ -6737,7 +7607,93 @@ namespace GUTSchedule.Droid
// aapt resource value: 13
public const int SwitchCompat_trackTintMode = 13;
- // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x1010585,0x7F03009B,0x7F0300A4,0x7F03011B,0x7F030126 }
+ // aapt resource value: { 0x10101EF,0x10101F0,0x10101F1,0x101036B,0x101036C,0x7F030086,0x7F030147,0x7F030148,0x7F030150,0x7F030151 }
+ public static int[] SwitchPreference = new int[] {
+ 16843247,
+ 16843248,
+ 16843249,
+ 16843627,
+ 16843628,
+ 2130903174,
+ 2130903367,
+ 2130903368,
+ 2130903376,
+ 2130903377};
+
+ // aapt resource value: { 0x10101EF,0x10101F0,0x10101F1,0x101036B,0x101036C,0x7F030086,0x7F030147,0x7F030148,0x7F030150,0x7F030151 }
+ public static int[] SwitchPreferenceCompat = new int[] {
+ 16843247,
+ 16843248,
+ 16843249,
+ 16843627,
+ 16843628,
+ 2130903174,
+ 2130903367,
+ 2130903368,
+ 2130903376,
+ 2130903377};
+
+ // aapt resource value: 2
+ public const int SwitchPreferenceCompat_android_disableDependentsState = 2;
+
+ // aapt resource value: 1
+ public const int SwitchPreferenceCompat_android_summaryOff = 1;
+
+ // aapt resource value: 0
+ public const int SwitchPreferenceCompat_android_summaryOn = 0;
+
+ // aapt resource value: 4
+ public const int SwitchPreferenceCompat_android_switchTextOff = 4;
+
+ // aapt resource value: 3
+ public const int SwitchPreferenceCompat_android_switchTextOn = 3;
+
+ // aapt resource value: 5
+ public const int SwitchPreferenceCompat_disableDependentsState = 5;
+
+ // aapt resource value: 6
+ public const int SwitchPreferenceCompat_summaryOff = 6;
+
+ // aapt resource value: 7
+ public const int SwitchPreferenceCompat_summaryOn = 7;
+
+ // aapt resource value: 8
+ public const int SwitchPreferenceCompat_switchTextOff = 8;
+
+ // aapt resource value: 9
+ public const int SwitchPreferenceCompat_switchTextOn = 9;
+
+ // aapt resource value: 2
+ public const int SwitchPreference_android_disableDependentsState = 2;
+
+ // aapt resource value: 1
+ public const int SwitchPreference_android_summaryOff = 1;
+
+ // aapt resource value: 0
+ public const int SwitchPreference_android_summaryOn = 0;
+
+ // aapt resource value: 4
+ public const int SwitchPreference_android_switchTextOff = 4;
+
+ // aapt resource value: 3
+ public const int SwitchPreference_android_switchTextOn = 3;
+
+ // aapt resource value: 5
+ public const int SwitchPreference_disableDependentsState = 5;
+
+ // aapt resource value: 6
+ public const int SwitchPreference_summaryOff = 6;
+
+ // aapt resource value: 7
+ public const int SwitchPreference_summaryOn = 7;
+
+ // aapt resource value: 8
+ public const int SwitchPreference_switchTextOff = 8;
+
+ // aapt resource value: 9
+ public const int SwitchPreference_switchTextOn = 9;
+
+ // aapt resource value: { 0x1010095,0x1010096,0x1010097,0x1010098,0x101009A,0x101009B,0x1010161,0x1010162,0x1010163,0x1010164,0x10103AC,0x1010585,0x7F0300AE,0x7F0300B7,0x7F030152,0x7F03015D }
public static int[] TextAppearance = new int[] {
16842901,
16842902,
@@ -6751,10 +7707,10 @@ namespace GUTSchedule.Droid
16843108,
16843692,
16844165,
- 2130903195,
- 2130903204,
- 2130903323,
- 2130903334};
+ 2130903214,
+ 2130903223,
+ 2130903378,
+ 2130903389};
// aapt resource value: 10
public const int TextAppearance_android_fontFamily = 10;
@@ -6804,38 +7760,38 @@ namespace GUTSchedule.Droid
// aapt resource value: 15
public const int TextAppearance_textLocale = 15;
- // aapt resource value: { 0x10100AF,0x1010140,0x7F030043,0x7F030059,0x7F03005A,0x7F030068,0x7F030069,0x7F03006A,0x7F03006B,0x7F03006C,0x7F03006D,0x7F0300D0,0x7F0300D1,0x7F0300D2,0x7F0300D4,0x7F0300D6,0x7F0300D7,0x7F0300E5,0x7F030111,0x7F030112,0x7F030113,0x7F030131,0x7F030132,0x7F030133,0x7F030134,0x7F030135,0x7F030136,0x7F030137,0x7F030138,0x7F030139 }
+ // aapt resource value: { 0x10100AF,0x1010140,0x7F030047,0x7F03005E,0x7F03005F,0x7F03006D,0x7F03006E,0x7F03006F,0x7F030070,0x7F030071,0x7F030072,0x7F0300E8,0x7F0300E9,0x7F0300EA,0x7F0300EE,0x7F0300F1,0x7F0300F2,0x7F030104,0x7F030141,0x7F030142,0x7F030143,0x7F030168,0x7F030169,0x7F03016A,0x7F03016B,0x7F03016C,0x7F03016D,0x7F03016E,0x7F03016F,0x7F030170 }
public static int[] Toolbar = new int[] {
16842927,
16843072,
- 2130903107,
- 2130903129,
- 2130903130,
- 2130903144,
- 2130903145,
- 2130903146,
- 2130903147,
- 2130903148,
+ 2130903111,
+ 2130903134,
+ 2130903135,
2130903149,
- 2130903248,
- 2130903249,
- 2130903250,
- 2130903252,
- 2130903254,
- 2130903255,
- 2130903269,
- 2130903313,
- 2130903314,
- 2130903315,
- 2130903345,
- 2130903346,
- 2130903347,
- 2130903348,
- 2130903349,
- 2130903350,
- 2130903351,
- 2130903352,
- 2130903353};
+ 2130903150,
+ 2130903151,
+ 2130903152,
+ 2130903153,
+ 2130903154,
+ 2130903272,
+ 2130903273,
+ 2130903274,
+ 2130903278,
+ 2130903281,
+ 2130903282,
+ 2130903300,
+ 2130903361,
+ 2130903362,
+ 2130903363,
+ 2130903400,
+ 2130903401,
+ 2130903402,
+ 2130903403,
+ 2130903404,
+ 2130903405,
+ 2130903406,
+ 2130903407,
+ 2130903408};
// aapt resource value: 0
public const int Toolbar_android_gravity = 0;
@@ -6927,19 +7883,19 @@ namespace GUTSchedule.Droid
// aapt resource value: 29
public const int Toolbar_titleTextColor = 29;
- // aapt resource value: { 0x1010000,0x10100DA,0x7F0300DD,0x7F0300DE,0x7F030127 }
+ // aapt resource value: { 0x1010000,0x10100DA,0x7F0300FB,0x7F0300FC,0x7F03015E }
public static int[] View = new int[] {
16842752,
16842970,
- 2130903261,
- 2130903262,
- 2130903335};
+ 2130903291,
+ 2130903292,
+ 2130903390};
- // aapt resource value: { 0x10100D4,0x7F030039,0x7F03003A }
+ // aapt resource value: { 0x10100D4,0x7F03003D,0x7F03003E }
public static int[] ViewBackgroundHelper = new int[] {
16842964,
- 2130903097,
- 2130903098};
+ 2130903101,
+ 2130903102};
// aapt resource value: 0
public const int ViewBackgroundHelper_android_background = 0;
diff --git a/GUT.Schedule/GUTSchedule.Test/GUTSchedule.Test.csproj b/GUT.Schedule/GUTSchedule.Test/GUTSchedule.Test.csproj
index 54410f2..25ad7a0 100644
--- a/GUT.Schedule/GUTSchedule.Test/GUTSchedule.Test.csproj
+++ b/GUT.Schedule/GUTSchedule.Test/GUTSchedule.Test.csproj
@@ -1,7 +1,7 @@
- netcoreapp3.1
+ net6.0
false
@@ -9,10 +9,10 @@
-
-
-
-
+
+
+
+
diff --git a/GUT.Schedule/GUTSchedule/GUTSchedule.csproj b/GUT.Schedule/GUTSchedule/GUTSchedule.csproj
index 882c0b7..086b2ce 100644
--- a/GUT.Schedule/GUTSchedule/GUTSchedule.csproj
+++ b/GUT.Schedule/GUTSchedule/GUTSchedule.csproj
@@ -1,7 +1,7 @@
-
+
- netstandard1.4
+ netstandard2.1