├── .gitignore
├── DiagonalLayout.Sample
├── AnimActivity.cs
├── Assets
│ └── AboutAssets.txt
├── DiagonalLayout.Sample.csproj
├── MainActivity.cs
├── Properties
│ ├── AndroidManifest.xml
│ └── AssemblyInfo.cs
├── Resources
│ ├── AboutResources.txt
│ ├── Resource.designer.cs
│ ├── drawable
│ │ ├── background.jpg
│ │ ├── circle.xml
│ │ ├── hughjackman.jpg
│ │ └── mountains.jpg
│ ├── layout
│ │ ├── activity_anim.xml
│ │ └── activity_main_simple.xml
│ ├── mipmap-hdpi
│ │ └── Icon.png
│ ├── mipmap-mdpi
│ │ └── Icon.png
│ ├── mipmap-xhdpi
│ │ └── Icon.png
│ ├── mipmap-xxhdpi
│ │ └── Icon.png
│ ├── mipmap-xxxhdpi
│ │ └── Icon.png
│ ├── values-w820dp
│ │ └── dimens.xml
│ └── values
│ │ ├── Strings.xml
│ │ ├── colors.xml
│ │ └── styles.xml
└── packages.config
├── DiagonalLayout.sln
├── DiagonalLayout
├── Additions
│ └── AboutAdditions.txt
├── DiagonalLayout.csproj
├── Jars
│ ├── AboutJars.txt
│ └── diagonallayout-1.0.8.aar
├── Properties
│ └── AssemblyInfo.cs
└── Transforms
│ ├── EnumFields.xml
│ ├── EnumMethods.xml
│ └── Metadata.xml
├── FUNDING.yml
├── LICENSE
├── README.md
├── icon_diagonallayout.png
└── nuspec
└── Xam.Plugins.Android.DiagonalLayout.nuspec
/.gitignore:
--------------------------------------------------------------------------------
1 | # Autosave files
2 | *~
3 |
4 | # build
5 | [Oo]bj/
6 | [Bb]in/
7 | packages/
8 | TestResults/
9 |
10 | # globs
11 | Makefile.in
12 | *.DS_Store
13 | *.sln.cache
14 | *.suo
15 | *.cache
16 | *.pidb
17 | *.userprefs
18 | *.usertasks
19 | config.log
20 | config.make
21 | config.status
22 | aclocal.m4
23 | install-sh
24 | autom4te.cache/
25 | *.user
26 | *.tar.gz
27 | tarballs/
28 | test-results/
29 | Thumbs.db
30 |
31 | # Mac bundle stuff
32 | *.dmg
33 | *.app
34 |
35 | # resharper
36 | *_Resharper.*
37 | *.Resharper
38 |
39 | # dotCover
40 | *.dotCover
41 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/AnimActivity.cs:
--------------------------------------------------------------------------------
1 |
2 | using Android.App;
3 | using Android.OS;
4 | using Android.Support.V7.App;
5 | using Android.Views;
6 |
7 | namespace DiagonalLayout.Sample
8 | {
9 | [Activity(Label = "AnimActivity", Theme = "@style/AppTheme")]
10 | public class AnimActivity : AppCompatActivity
11 | {
12 | View layoutTop;
13 | View layoutBottom;
14 |
15 | protected override void OnCreate(Bundle savedInstanceState)
16 | {
17 | base.OnCreate(savedInstanceState);
18 | SetContentView(Resource.Layout.activity_main_simple);
19 |
20 |
21 | layoutTop = FindViewById(Resource.Id.layoutTop);
22 | layoutBottom = FindViewById(Resource.Id.layoutBottom);
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Assets/AboutAssets.txt:
--------------------------------------------------------------------------------
1 | Any raw assets you want to be deployed with your application can be placed in
2 | this directory (and child directories) and given a Build Action of "AndroidAsset".
3 |
4 | These files will be deployed with your package and will be accessible using Android's
5 | AssetManager, like this:
6 |
7 | public class ReadAsset : Activity
8 | {
9 | protected override void OnCreate (Bundle bundle)
10 | {
11 | base.OnCreate (bundle);
12 |
13 | InputStream input = Assets.Open ("my_asset.txt");
14 | }
15 | }
16 |
17 | Additionally, some Android functions will automatically load asset files:
18 |
19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
20 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/DiagonalLayout.Sample.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | {AACA2145-966F-4496-AA0C-73AB7BBB5C6D}
7 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
8 | Library
9 | DiagonalLayout.Sample
10 | DiagonalLayout.Sample
11 | v8.0
12 | True
13 | Resources\Resource.designer.cs
14 | Resource
15 | Properties\AndroidManifest.xml
16 | Resources
17 | Assets
18 | true
19 |
20 |
21 | true
22 | full
23 | false
24 | bin\Debug
25 | DEBUG;
26 | prompt
27 | 4
28 | None
29 | arm64-v8a;armeabi;armeabi-v7a;x86
30 |
31 |
32 | true
33 | pdbonly
34 | true
35 | bin\Release
36 | prompt
37 | 4
38 | true
39 | false
40 |
41 |
42 |
43 | ..\DiagonalLayout\bin\Debug\DiagonalLayout.dll
44 |
45 |
46 |
47 |
48 |
49 |
50 | ..\packages\Xamarin.Android.Support.Compat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll
51 |
52 |
53 | ..\packages\Xamarin.Android.Support.Core.UI.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll
54 |
55 |
56 | ..\packages\Xamarin.Android.Support.Core.Utils.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll
57 |
58 |
59 | ..\packages\Xamarin.Android.Support.Media.Compat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll
60 |
61 |
62 | ..\packages\Xamarin.Android.Support.Fragment.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll
63 |
64 |
65 | ..\packages\Xamarin.Android.Support.Vector.Drawable.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll
66 |
67 |
68 | ..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll
69 |
70 |
71 | ..\packages\Xamarin.Android.Support.v7.AppCompat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using Android.App;
2 | using Android.OS;
3 | using Android.Support.V7.App;
4 | using Android.Support.V7.Widget;
5 |
6 | namespace DiagonalLayout.Sample
7 | {
8 | [Activity(Label = "DiagonalLayout.Sample", MainLauncher = true, Icon = "@mipmap/icon", Theme="@style/AppTheme")]
9 | public class MainActivity : AppCompatActivity
10 | {
11 | Toolbar toolbar;
12 |
13 | protected override void OnCreate(Bundle savedInstanceState)
14 | {
15 | base.OnCreate(savedInstanceState);
16 |
17 | // Set our view from the "main" layout resource
18 | SetContentView(Resource.Layout.activity_main_simple);
19 |
20 | toolbar = FindViewById(Resource.Id.toolbar);
21 | SetSupportActionBar(toolbar);
22 | }
23 | }
24 | }
25 |
26 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using Android.App;
4 |
5 | // Information about this assembly is defined by the following attributes.
6 | // Change them to the values specific to your project.
7 |
8 | [assembly: AssemblyTitle("DiagonalLayout.Sample")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("")]
13 | [assembly: AssemblyCopyright("martijnvandijk")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
20 |
21 | [assembly: AssemblyVersion("1.0.0")]
22 |
23 | // The following attributes are used to specify the signing key for the assembly,
24 | // if desired. See the Mono documentation for more information about signing.
25 |
26 | //[assembly: AssemblyDelaySign(false)]
27 | //[assembly: AssemblyKeyFile("")]
28 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/AboutResources.txt:
--------------------------------------------------------------------------------
1 | Images, layout descriptions, binary blobs and string dictionaries can be included
2 | in your application as resource files. Various Android APIs are designed to
3 | operate on the resource IDs instead of dealing with images, strings or binary blobs
4 | directly.
5 |
6 | For example, a sample Android app that contains a user interface layout (main.axml),
7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
8 | would keep its resources in the "Resources" directory of the application:
9 |
10 | Resources/
11 | drawable/
12 | icon.png
13 |
14 | layout/
15 | main.axml
16 |
17 | values/
18 | strings.xml
19 |
20 | In order to get the build system to recognize Android resources, set the build action to
21 | "AndroidResource". The native Android APIs do not operate directly with filenames, but
22 | instead operate on resource IDs. When you compile an Android application that uses resources,
23 | the build system will package the resources for distribution and generate a class called "R"
24 | (this is an Android convention) that contains the tokens for each one of the resources
25 | included. For example, for the above Resources layout, this is what the R class would expose:
26 |
27 | public class R {
28 | public class drawable {
29 | public const int icon = 0x123;
30 | }
31 |
32 | public class layout {
33 | public const int main = 0x456;
34 | }
35 |
36 | public class strings {
37 | public const int first_string = 0xabc;
38 | public const int second_string = 0xbcd;
39 | }
40 | }
41 |
42 | You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
43 | to reference the layout/main.axml file, or R.strings.first_string to reference the first
44 | string in the dictionary file values/strings.xml.
45 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/Resource.designer.cs:
--------------------------------------------------------------------------------
1 | #pragma warning disable 1591
2 | // ------------------------------------------------------------------------------
3 | //
4 | // This code was generated by a tool.
5 | // Mono Runtime Version: 4.0.30319.42000
6 | //
7 | // Changes to this file may cause incorrect behavior and will be lost if
8 | // the code is regenerated.
9 | //
10 | // ------------------------------------------------------------------------------
11 |
12 | [assembly: Android.Runtime.ResourceDesignerAttribute("DiagonalLayout.Sample.Resource", IsApplication=true)]
13 |
14 | namespace DiagonalLayout.Sample
15 | {
16 |
17 |
18 | [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")]
19 | public partial class Resource
20 | {
21 |
22 | static Resource()
23 | {
24 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
25 | }
26 |
27 | public static void UpdateIdValues()
28 | {
29 | }
30 |
31 | public partial class Animation
32 | {
33 |
34 | // aapt resource value: 0x7f050000
35 | public const int abc_fade_in = 2131034112;
36 |
37 | // aapt resource value: 0x7f050001
38 | public const int abc_fade_out = 2131034113;
39 |
40 | // aapt resource value: 0x7f050002
41 | public const int abc_grow_fade_in_from_bottom = 2131034114;
42 |
43 | // aapt resource value: 0x7f050003
44 | public const int abc_popup_enter = 2131034115;
45 |
46 | // aapt resource value: 0x7f050004
47 | public const int abc_popup_exit = 2131034116;
48 |
49 | // aapt resource value: 0x7f050005
50 | public const int abc_shrink_fade_out_from_bottom = 2131034117;
51 |
52 | // aapt resource value: 0x7f050006
53 | public const int abc_slide_in_bottom = 2131034118;
54 |
55 | // aapt resource value: 0x7f050007
56 | public const int abc_slide_in_top = 2131034119;
57 |
58 | // aapt resource value: 0x7f050008
59 | public const int abc_slide_out_bottom = 2131034120;
60 |
61 | // aapt resource value: 0x7f050009
62 | public const int abc_slide_out_top = 2131034121;
63 |
64 | static Animation()
65 | {
66 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
67 | }
68 |
69 | private Animation()
70 | {
71 | }
72 | }
73 |
74 | public partial class Attribute
75 | {
76 |
77 | // aapt resource value: 0x7f010040
78 | public const int actionBarDivider = 2130772032;
79 |
80 | // aapt resource value: 0x7f010041
81 | public const int actionBarItemBackground = 2130772033;
82 |
83 | // aapt resource value: 0x7f01003a
84 | public const int actionBarPopupTheme = 2130772026;
85 |
86 | // aapt resource value: 0x7f01003f
87 | public const int actionBarSize = 2130772031;
88 |
89 | // aapt resource value: 0x7f01003c
90 | public const int actionBarSplitStyle = 2130772028;
91 |
92 | // aapt resource value: 0x7f01003b
93 | public const int actionBarStyle = 2130772027;
94 |
95 | // aapt resource value: 0x7f010036
96 | public const int actionBarTabBarStyle = 2130772022;
97 |
98 | // aapt resource value: 0x7f010035
99 | public const int actionBarTabStyle = 2130772021;
100 |
101 | // aapt resource value: 0x7f010037
102 | public const int actionBarTabTextStyle = 2130772023;
103 |
104 | // aapt resource value: 0x7f01003d
105 | public const int actionBarTheme = 2130772029;
106 |
107 | // aapt resource value: 0x7f01003e
108 | public const int actionBarWidgetTheme = 2130772030;
109 |
110 | // aapt resource value: 0x7f01005b
111 | public const int actionButtonStyle = 2130772059;
112 |
113 | // aapt resource value: 0x7f010057
114 | public const int actionDropDownStyle = 2130772055;
115 |
116 | // aapt resource value: 0x7f0100ac
117 | public const int actionLayout = 2130772140;
118 |
119 | // aapt resource value: 0x7f010042
120 | public const int actionMenuTextAppearance = 2130772034;
121 |
122 | // aapt resource value: 0x7f010043
123 | public const int actionMenuTextColor = 2130772035;
124 |
125 | // aapt resource value: 0x7f010046
126 | public const int actionModeBackground = 2130772038;
127 |
128 | // aapt resource value: 0x7f010045
129 | public const int actionModeCloseButtonStyle = 2130772037;
130 |
131 | // aapt resource value: 0x7f010048
132 | public const int actionModeCloseDrawable = 2130772040;
133 |
134 | // aapt resource value: 0x7f01004a
135 | public const int actionModeCopyDrawable = 2130772042;
136 |
137 | // aapt resource value: 0x7f010049
138 | public const int actionModeCutDrawable = 2130772041;
139 |
140 | // aapt resource value: 0x7f01004e
141 | public const int actionModeFindDrawable = 2130772046;
142 |
143 | // aapt resource value: 0x7f01004b
144 | public const int actionModePasteDrawable = 2130772043;
145 |
146 | // aapt resource value: 0x7f010050
147 | public const int actionModePopupWindowStyle = 2130772048;
148 |
149 | // aapt resource value: 0x7f01004c
150 | public const int actionModeSelectAllDrawable = 2130772044;
151 |
152 | // aapt resource value: 0x7f01004d
153 | public const int actionModeShareDrawable = 2130772045;
154 |
155 | // aapt resource value: 0x7f010047
156 | public const int actionModeSplitBackground = 2130772039;
157 |
158 | // aapt resource value: 0x7f010044
159 | public const int actionModeStyle = 2130772036;
160 |
161 | // aapt resource value: 0x7f01004f
162 | public const int actionModeWebSearchDrawable = 2130772047;
163 |
164 | // aapt resource value: 0x7f010038
165 | public const int actionOverflowButtonStyle = 2130772024;
166 |
167 | // aapt resource value: 0x7f010039
168 | public const int actionOverflowMenuStyle = 2130772025;
169 |
170 | // aapt resource value: 0x7f0100ae
171 | public const int actionProviderClass = 2130772142;
172 |
173 | // aapt resource value: 0x7f0100ad
174 | public const int actionViewClass = 2130772141;
175 |
176 | // aapt resource value: 0x7f010063
177 | public const int activityChooserViewStyle = 2130772067;
178 |
179 | // aapt resource value: 0x7f010087
180 | public const int alertDialogButtonGroupStyle = 2130772103;
181 |
182 | // aapt resource value: 0x7f010088
183 | public const int alertDialogCenterButtons = 2130772104;
184 |
185 | // aapt resource value: 0x7f010086
186 | public const int alertDialogStyle = 2130772102;
187 |
188 | // aapt resource value: 0x7f010089
189 | public const int alertDialogTheme = 2130772105;
190 |
191 | // aapt resource value: 0x7f01009c
192 | public const int allowStacking = 2130772124;
193 |
194 | // aapt resource value: 0x7f01009d
195 | public const int alpha = 2130772125;
196 |
197 | // aapt resource value: 0x7f0100a4
198 | public const int arrowHeadLength = 2130772132;
199 |
200 | // aapt resource value: 0x7f0100a5
201 | public const int arrowShaftLength = 2130772133;
202 |
203 | // aapt resource value: 0x7f01008e
204 | public const int autoCompleteTextViewStyle = 2130772110;
205 |
206 | // aapt resource value: 0x7f01000c
207 | public const int background = 2130771980;
208 |
209 | // aapt resource value: 0x7f01000e
210 | public const int backgroundSplit = 2130771982;
211 |
212 | // aapt resource value: 0x7f01000d
213 | public const int backgroundStacked = 2130771981;
214 |
215 | // aapt resource value: 0x7f0100df
216 | public const int backgroundTint = 2130772191;
217 |
218 | // aapt resource value: 0x7f0100e0
219 | public const int backgroundTintMode = 2130772192;
220 |
221 | // aapt resource value: 0x7f0100a6
222 | public const int barLength = 2130772134;
223 |
224 | // aapt resource value: 0x7f010060
225 | public const int borderlessButtonStyle = 2130772064;
226 |
227 | // aapt resource value: 0x7f01005d
228 | public const int buttonBarButtonStyle = 2130772061;
229 |
230 | // aapt resource value: 0x7f01008c
231 | public const int buttonBarNegativeButtonStyle = 2130772108;
232 |
233 | // aapt resource value: 0x7f01008d
234 | public const int buttonBarNeutralButtonStyle = 2130772109;
235 |
236 | // aapt resource value: 0x7f01008b
237 | public const int buttonBarPositiveButtonStyle = 2130772107;
238 |
239 | // aapt resource value: 0x7f01005c
240 | public const int buttonBarStyle = 2130772060;
241 |
242 | // aapt resource value: 0x7f0100d4
243 | public const int buttonGravity = 2130772180;
244 |
245 | // aapt resource value: 0x7f010021
246 | public const int buttonPanelSideLayout = 2130772001;
247 |
248 | // aapt resource value: 0x7f01008f
249 | public const int buttonStyle = 2130772111;
250 |
251 | // aapt resource value: 0x7f010090
252 | public const int buttonStyleSmall = 2130772112;
253 |
254 | // aapt resource value: 0x7f01009e
255 | public const int buttonTint = 2130772126;
256 |
257 | // aapt resource value: 0x7f01009f
258 | public const int buttonTintMode = 2130772127;
259 |
260 | // aapt resource value: 0x7f010091
261 | public const int checkboxStyle = 2130772113;
262 |
263 | // aapt resource value: 0x7f010092
264 | public const int checkedTextViewStyle = 2130772114;
265 |
266 | // aapt resource value: 0x7f0100b7
267 | public const int closeIcon = 2130772151;
268 |
269 | // aapt resource value: 0x7f01001e
270 | public const int closeItemLayout = 2130771998;
271 |
272 | // aapt resource value: 0x7f0100d6
273 | public const int collapseContentDescription = 2130772182;
274 |
275 | // aapt resource value: 0x7f0100d5
276 | public const int collapseIcon = 2130772181;
277 |
278 | // aapt resource value: 0x7f0100a0
279 | public const int color = 2130772128;
280 |
281 | // aapt resource value: 0x7f01007e
282 | public const int colorAccent = 2130772094;
283 |
284 | // aapt resource value: 0x7f010085
285 | public const int colorBackgroundFloating = 2130772101;
286 |
287 | // aapt resource value: 0x7f010082
288 | public const int colorButtonNormal = 2130772098;
289 |
290 | // aapt resource value: 0x7f010080
291 | public const int colorControlActivated = 2130772096;
292 |
293 | // aapt resource value: 0x7f010081
294 | public const int colorControlHighlight = 2130772097;
295 |
296 | // aapt resource value: 0x7f01007f
297 | public const int colorControlNormal = 2130772095;
298 |
299 | // aapt resource value: 0x7f01007c
300 | public const int colorPrimary = 2130772092;
301 |
302 | // aapt resource value: 0x7f01007d
303 | public const int colorPrimaryDark = 2130772093;
304 |
305 | // aapt resource value: 0x7f010083
306 | public const int colorSwitchThumbNormal = 2130772099;
307 |
308 | // aapt resource value: 0x7f0100bc
309 | public const int commitIcon = 2130772156;
310 |
311 | // aapt resource value: 0x7f010017
312 | public const int contentInsetEnd = 2130771991;
313 |
314 | // aapt resource value: 0x7f01001b
315 | public const int contentInsetEndWithActions = 2130771995;
316 |
317 | // aapt resource value: 0x7f010018
318 | public const int contentInsetLeft = 2130771992;
319 |
320 | // aapt resource value: 0x7f010019
321 | public const int contentInsetRight = 2130771993;
322 |
323 | // aapt resource value: 0x7f010016
324 | public const int contentInsetStart = 2130771990;
325 |
326 | // aapt resource value: 0x7f01001a
327 | public const int contentInsetStartWithNavigation = 2130771994;
328 |
329 | // aapt resource value: 0x7f010084
330 | public const int controlBackground = 2130772100;
331 |
332 | // aapt resource value: 0x7f01000f
333 | public const int customNavigationLayout = 2130771983;
334 |
335 | // aapt resource value: 0x7f0100b6
336 | public const int defaultQueryHint = 2130772150;
337 |
338 | // aapt resource value: 0x7f0100e1
339 | public const int diagonal_angle = 2130772193;
340 |
341 | // aapt resource value: 0x7f0100e3
342 | public const int diagonal_gravity = 2130772195;
343 |
344 | // aapt resource value: 0x7f0100e2
345 | public const int diagonal_handleMargins = 2130772194;
346 |
347 | // aapt resource value: 0x7f010055
348 | public const int dialogPreferredPadding = 2130772053;
349 |
350 | // aapt resource value: 0x7f010054
351 | public const int dialogTheme = 2130772052;
352 |
353 | // aapt resource value: 0x7f010005
354 | public const int displayOptions = 2130771973;
355 |
356 | // aapt resource value: 0x7f01000b
357 | public const int divider = 2130771979;
358 |
359 | // aapt resource value: 0x7f010062
360 | public const int dividerHorizontal = 2130772066;
361 |
362 | // aapt resource value: 0x7f0100aa
363 | public const int dividerPadding = 2130772138;
364 |
365 | // aapt resource value: 0x7f010061
366 | public const int dividerVertical = 2130772065;
367 |
368 | // aapt resource value: 0x7f0100a2
369 | public const int drawableSize = 2130772130;
370 |
371 | // aapt resource value: 0x7f010000
372 | public const int drawerArrowStyle = 2130771968;
373 |
374 | // aapt resource value: 0x7f010074
375 | public const int dropDownListViewStyle = 2130772084;
376 |
377 | // aapt resource value: 0x7f010058
378 | public const int dropdownListPreferredItemHeight = 2130772056;
379 |
380 | // aapt resource value: 0x7f010069
381 | public const int editTextBackground = 2130772073;
382 |
383 | // aapt resource value: 0x7f010068
384 | public const int editTextColor = 2130772072;
385 |
386 | // aapt resource value: 0x7f010093
387 | public const int editTextStyle = 2130772115;
388 |
389 | // aapt resource value: 0x7f01001c
390 | public const int elevation = 2130771996;
391 |
392 | // aapt resource value: 0x7f010020
393 | public const int expandActivityOverflowButtonDrawable = 2130772000;
394 |
395 | // aapt resource value: 0x7f0100a3
396 | public const int gapBetweenBars = 2130772131;
397 |
398 | // aapt resource value: 0x7f0100b8
399 | public const int goIcon = 2130772152;
400 |
401 | // aapt resource value: 0x7f010001
402 | public const int height = 2130771969;
403 |
404 | // aapt resource value: 0x7f010015
405 | public const int hideOnContentScroll = 2130771989;
406 |
407 | // aapt resource value: 0x7f01005a
408 | public const int homeAsUpIndicator = 2130772058;
409 |
410 | // aapt resource value: 0x7f010010
411 | public const int homeLayout = 2130771984;
412 |
413 | // aapt resource value: 0x7f010009
414 | public const int icon = 2130771977;
415 |
416 | // aapt resource value: 0x7f0100b4
417 | public const int iconifiedByDefault = 2130772148;
418 |
419 | // aapt resource value: 0x7f01006a
420 | public const int imageButtonStyle = 2130772074;
421 |
422 | // aapt resource value: 0x7f010012
423 | public const int indeterminateProgressStyle = 2130771986;
424 |
425 | // aapt resource value: 0x7f01001f
426 | public const int initialActivityCount = 2130771999;
427 |
428 | // aapt resource value: 0x7f010002
429 | public const int isLightTheme = 2130771970;
430 |
431 | // aapt resource value: 0x7f010014
432 | public const int itemPadding = 2130771988;
433 |
434 | // aapt resource value: 0x7f0100b3
435 | public const int layout = 2130772147;
436 |
437 | // aapt resource value: 0x7f01007b
438 | public const int listChoiceBackgroundIndicator = 2130772091;
439 |
440 | // aapt resource value: 0x7f010056
441 | public const int listDividerAlertDialog = 2130772054;
442 |
443 | // aapt resource value: 0x7f010025
444 | public const int listItemLayout = 2130772005;
445 |
446 | // aapt resource value: 0x7f010022
447 | public const int listLayout = 2130772002;
448 |
449 | // aapt resource value: 0x7f01009b
450 | public const int listMenuViewStyle = 2130772123;
451 |
452 | // aapt resource value: 0x7f010075
453 | public const int listPopupWindowStyle = 2130772085;
454 |
455 | // aapt resource value: 0x7f01006f
456 | public const int listPreferredItemHeight = 2130772079;
457 |
458 | // aapt resource value: 0x7f010071
459 | public const int listPreferredItemHeightLarge = 2130772081;
460 |
461 | // aapt resource value: 0x7f010070
462 | public const int listPreferredItemHeightSmall = 2130772080;
463 |
464 | // aapt resource value: 0x7f010072
465 | public const int listPreferredItemPaddingLeft = 2130772082;
466 |
467 | // aapt resource value: 0x7f010073
468 | public const int listPreferredItemPaddingRight = 2130772083;
469 |
470 | // aapt resource value: 0x7f01000a
471 | public const int logo = 2130771978;
472 |
473 | // aapt resource value: 0x7f0100d9
474 | public const int logoDescription = 2130772185;
475 |
476 | // aapt resource value: 0x7f0100d3
477 | public const int maxButtonHeight = 2130772179;
478 |
479 | // aapt resource value: 0x7f0100a8
480 | public const int measureWithLargestChild = 2130772136;
481 |
482 | // aapt resource value: 0x7f010023
483 | public const int multiChoiceItemLayout = 2130772003;
484 |
485 | // aapt resource value: 0x7f0100d8
486 | public const int navigationContentDescription = 2130772184;
487 |
488 | // aapt resource value: 0x7f0100d7
489 | public const int navigationIcon = 2130772183;
490 |
491 | // aapt resource value: 0x7f010004
492 | public const int navigationMode = 2130771972;
493 |
494 | // aapt resource value: 0x7f0100b1
495 | public const int overlapAnchor = 2130772145;
496 |
497 | // aapt resource value: 0x7f0100dd
498 | public const int paddingEnd = 2130772189;
499 |
500 | // aapt resource value: 0x7f0100dc
501 | public const int paddingStart = 2130772188;
502 |
503 | // aapt resource value: 0x7f010078
504 | public const int panelBackground = 2130772088;
505 |
506 | // aapt resource value: 0x7f01007a
507 | public const int panelMenuListTheme = 2130772090;
508 |
509 | // aapt resource value: 0x7f010079
510 | public const int panelMenuListWidth = 2130772089;
511 |
512 | // aapt resource value: 0x7f010066
513 | public const int popupMenuStyle = 2130772070;
514 |
515 | // aapt resource value: 0x7f01001d
516 | public const int popupTheme = 2130771997;
517 |
518 | // aapt resource value: 0x7f010067
519 | public const int popupWindowStyle = 2130772071;
520 |
521 | // aapt resource value: 0x7f0100af
522 | public const int preserveIconSpacing = 2130772143;
523 |
524 | // aapt resource value: 0x7f010013
525 | public const int progressBarPadding = 2130771987;
526 |
527 | // aapt resource value: 0x7f010011
528 | public const int progressBarStyle = 2130771985;
529 |
530 | // aapt resource value: 0x7f0100be
531 | public const int queryBackground = 2130772158;
532 |
533 | // aapt resource value: 0x7f0100b5
534 | public const int queryHint = 2130772149;
535 |
536 | // aapt resource value: 0x7f010094
537 | public const int radioButtonStyle = 2130772116;
538 |
539 | // aapt resource value: 0x7f010095
540 | public const int ratingBarStyle = 2130772117;
541 |
542 | // aapt resource value: 0x7f010096
543 | public const int ratingBarStyleIndicator = 2130772118;
544 |
545 | // aapt resource value: 0x7f010097
546 | public const int ratingBarStyleSmall = 2130772119;
547 |
548 | // aapt resource value: 0x7f0100ba
549 | public const int searchHintIcon = 2130772154;
550 |
551 | // aapt resource value: 0x7f0100b9
552 | public const int searchIcon = 2130772153;
553 |
554 | // aapt resource value: 0x7f01006e
555 | public const int searchViewStyle = 2130772078;
556 |
557 | // aapt resource value: 0x7f010098
558 | public const int seekBarStyle = 2130772120;
559 |
560 | // aapt resource value: 0x7f01005e
561 | public const int selectableItemBackground = 2130772062;
562 |
563 | // aapt resource value: 0x7f01005f
564 | public const int selectableItemBackgroundBorderless = 2130772063;
565 |
566 | // aapt resource value: 0x7f0100ab
567 | public const int showAsAction = 2130772139;
568 |
569 | // aapt resource value: 0x7f0100a9
570 | public const int showDividers = 2130772137;
571 |
572 | // aapt resource value: 0x7f0100ca
573 | public const int showText = 2130772170;
574 |
575 | // aapt resource value: 0x7f010024
576 | public const int singleChoiceItemLayout = 2130772004;
577 |
578 | // aapt resource value: 0x7f0100a1
579 | public const int spinBars = 2130772129;
580 |
581 | // aapt resource value: 0x7f010059
582 | public const int spinnerDropDownItemStyle = 2130772057;
583 |
584 | // aapt resource value: 0x7f010099
585 | public const int spinnerStyle = 2130772121;
586 |
587 | // aapt resource value: 0x7f0100c9
588 | public const int splitTrack = 2130772169;
589 |
590 | // aapt resource value: 0x7f010026
591 | public const int srcCompat = 2130772006;
592 |
593 | // aapt resource value: 0x7f0100b2
594 | public const int state_above_anchor = 2130772146;
595 |
596 | // aapt resource value: 0x7f0100b0
597 | public const int subMenuArrow = 2130772144;
598 |
599 | // aapt resource value: 0x7f0100bf
600 | public const int submitBackground = 2130772159;
601 |
602 | // aapt resource value: 0x7f010006
603 | public const int subtitle = 2130771974;
604 |
605 | // aapt resource value: 0x7f0100cc
606 | public const int subtitleTextAppearance = 2130772172;
607 |
608 | // aapt resource value: 0x7f0100db
609 | public const int subtitleTextColor = 2130772187;
610 |
611 | // aapt resource value: 0x7f010008
612 | public const int subtitleTextStyle = 2130771976;
613 |
614 | // aapt resource value: 0x7f0100bd
615 | public const int suggestionRowLayout = 2130772157;
616 |
617 | // aapt resource value: 0x7f0100c7
618 | public const int switchMinWidth = 2130772167;
619 |
620 | // aapt resource value: 0x7f0100c8
621 | public const int switchPadding = 2130772168;
622 |
623 | // aapt resource value: 0x7f01009a
624 | public const int switchStyle = 2130772122;
625 |
626 | // aapt resource value: 0x7f0100c6
627 | public const int switchTextAppearance = 2130772166;
628 |
629 | // aapt resource value: 0x7f01002a
630 | public const int textAllCaps = 2130772010;
631 |
632 | // aapt resource value: 0x7f010051
633 | public const int textAppearanceLargePopupMenu = 2130772049;
634 |
635 | // aapt resource value: 0x7f010076
636 | public const int textAppearanceListItem = 2130772086;
637 |
638 | // aapt resource value: 0x7f010077
639 | public const int textAppearanceListItemSmall = 2130772087;
640 |
641 | // aapt resource value: 0x7f010053
642 | public const int textAppearancePopupMenuHeader = 2130772051;
643 |
644 | // aapt resource value: 0x7f01006c
645 | public const int textAppearanceSearchResultSubtitle = 2130772076;
646 |
647 | // aapt resource value: 0x7f01006b
648 | public const int textAppearanceSearchResultTitle = 2130772075;
649 |
650 | // aapt resource value: 0x7f010052
651 | public const int textAppearanceSmallPopupMenu = 2130772050;
652 |
653 | // aapt resource value: 0x7f01008a
654 | public const int textColorAlertDialogListItem = 2130772106;
655 |
656 | // aapt resource value: 0x7f01006d
657 | public const int textColorSearchUrl = 2130772077;
658 |
659 | // aapt resource value: 0x7f0100de
660 | public const int theme = 2130772190;
661 |
662 | // aapt resource value: 0x7f0100a7
663 | public const int thickness = 2130772135;
664 |
665 | // aapt resource value: 0x7f0100c5
666 | public const int thumbTextPadding = 2130772165;
667 |
668 | // aapt resource value: 0x7f0100c0
669 | public const int thumbTint = 2130772160;
670 |
671 | // aapt resource value: 0x7f0100c1
672 | public const int thumbTintMode = 2130772161;
673 |
674 | // aapt resource value: 0x7f010027
675 | public const int tickMark = 2130772007;
676 |
677 | // aapt resource value: 0x7f010028
678 | public const int tickMarkTint = 2130772008;
679 |
680 | // aapt resource value: 0x7f010029
681 | public const int tickMarkTintMode = 2130772009;
682 |
683 | // aapt resource value: 0x7f010003
684 | public const int title = 2130771971;
685 |
686 | // aapt resource value: 0x7f0100cd
687 | public const int titleMargin = 2130772173;
688 |
689 | // aapt resource value: 0x7f0100d1
690 | public const int titleMarginBottom = 2130772177;
691 |
692 | // aapt resource value: 0x7f0100cf
693 | public const int titleMarginEnd = 2130772175;
694 |
695 | // aapt resource value: 0x7f0100ce
696 | public const int titleMarginStart = 2130772174;
697 |
698 | // aapt resource value: 0x7f0100d0
699 | public const int titleMarginTop = 2130772176;
700 |
701 | // aapt resource value: 0x7f0100d2
702 | public const int titleMargins = 2130772178;
703 |
704 | // aapt resource value: 0x7f0100cb
705 | public const int titleTextAppearance = 2130772171;
706 |
707 | // aapt resource value: 0x7f0100da
708 | public const int titleTextColor = 2130772186;
709 |
710 | // aapt resource value: 0x7f010007
711 | public const int titleTextStyle = 2130771975;
712 |
713 | // aapt resource value: 0x7f010065
714 | public const int toolbarNavigationButtonStyle = 2130772069;
715 |
716 | // aapt resource value: 0x7f010064
717 | public const int toolbarStyle = 2130772068;
718 |
719 | // aapt resource value: 0x7f0100c2
720 | public const int track = 2130772162;
721 |
722 | // aapt resource value: 0x7f0100c3
723 | public const int trackTint = 2130772163;
724 |
725 | // aapt resource value: 0x7f0100c4
726 | public const int trackTintMode = 2130772164;
727 |
728 | // aapt resource value: 0x7f0100bb
729 | public const int voiceIcon = 2130772155;
730 |
731 | // aapt resource value: 0x7f01002b
732 | public const int windowActionBar = 2130772011;
733 |
734 | // aapt resource value: 0x7f01002d
735 | public const int windowActionBarOverlay = 2130772013;
736 |
737 | // aapt resource value: 0x7f01002e
738 | public const int windowActionModeOverlay = 2130772014;
739 |
740 | // aapt resource value: 0x7f010032
741 | public const int windowFixedHeightMajor = 2130772018;
742 |
743 | // aapt resource value: 0x7f010030
744 | public const int windowFixedHeightMinor = 2130772016;
745 |
746 | // aapt resource value: 0x7f01002f
747 | public const int windowFixedWidthMajor = 2130772015;
748 |
749 | // aapt resource value: 0x7f010031
750 | public const int windowFixedWidthMinor = 2130772017;
751 |
752 | // aapt resource value: 0x7f010033
753 | public const int windowMinWidthMajor = 2130772019;
754 |
755 | // aapt resource value: 0x7f010034
756 | public const int windowMinWidthMinor = 2130772020;
757 |
758 | // aapt resource value: 0x7f01002c
759 | public const int windowNoTitle = 2130772012;
760 |
761 | static Attribute()
762 | {
763 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
764 | }
765 |
766 | private Attribute()
767 | {
768 | }
769 | }
770 |
771 | public partial class Boolean
772 | {
773 |
774 | // aapt resource value: 0x7f090000
775 | public const int abc_action_bar_embed_tabs = 2131296256;
776 |
777 | // aapt resource value: 0x7f090001
778 | public const int abc_allow_stacked_button_bar = 2131296257;
779 |
780 | // aapt resource value: 0x7f090002
781 | public const int abc_config_actionMenuItemAllCaps = 2131296258;
782 |
783 | // aapt resource value: 0x7f090003
784 | public const int abc_config_closeDialogWhenTouchOutside = 2131296259;
785 |
786 | // aapt resource value: 0x7f090004
787 | public const int abc_config_showMenuShortcutsWhenKeyboardPresent = 2131296260;
788 |
789 | static Boolean()
790 | {
791 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
792 | }
793 |
794 | private Boolean()
795 | {
796 | }
797 | }
798 |
799 | public partial class Color
800 | {
801 |
802 | // aapt resource value: 0x7f0a003d
803 | public const int abc_background_cache_hint_selector_material_dark = 2131361853;
804 |
805 | // aapt resource value: 0x7f0a003e
806 | public const int abc_background_cache_hint_selector_material_light = 2131361854;
807 |
808 | // aapt resource value: 0x7f0a003f
809 | public const int abc_btn_colored_borderless_text_material = 2131361855;
810 |
811 | // aapt resource value: 0x7f0a0040
812 | public const int abc_color_highlight_material = 2131361856;
813 |
814 | // aapt resource value: 0x7f0a0000
815 | public const int abc_input_method_navigation_guard = 2131361792;
816 |
817 | // aapt resource value: 0x7f0a0041
818 | public const int abc_primary_text_disable_only_material_dark = 2131361857;
819 |
820 | // aapt resource value: 0x7f0a0042
821 | public const int abc_primary_text_disable_only_material_light = 2131361858;
822 |
823 | // aapt resource value: 0x7f0a0043
824 | public const int abc_primary_text_material_dark = 2131361859;
825 |
826 | // aapt resource value: 0x7f0a0044
827 | public const int abc_primary_text_material_light = 2131361860;
828 |
829 | // aapt resource value: 0x7f0a0045
830 | public const int abc_search_url_text = 2131361861;
831 |
832 | // aapt resource value: 0x7f0a0001
833 | public const int abc_search_url_text_normal = 2131361793;
834 |
835 | // aapt resource value: 0x7f0a0002
836 | public const int abc_search_url_text_pressed = 2131361794;
837 |
838 | // aapt resource value: 0x7f0a0003
839 | public const int abc_search_url_text_selected = 2131361795;
840 |
841 | // aapt resource value: 0x7f0a0046
842 | public const int abc_secondary_text_material_dark = 2131361862;
843 |
844 | // aapt resource value: 0x7f0a0047
845 | public const int abc_secondary_text_material_light = 2131361863;
846 |
847 | // aapt resource value: 0x7f0a0048
848 | public const int abc_tint_btn_checkable = 2131361864;
849 |
850 | // aapt resource value: 0x7f0a0049
851 | public const int abc_tint_default = 2131361865;
852 |
853 | // aapt resource value: 0x7f0a004a
854 | public const int abc_tint_edittext = 2131361866;
855 |
856 | // aapt resource value: 0x7f0a004b
857 | public const int abc_tint_seek_thumb = 2131361867;
858 |
859 | // aapt resource value: 0x7f0a004c
860 | public const int abc_tint_spinner = 2131361868;
861 |
862 | // aapt resource value: 0x7f0a004d
863 | public const int abc_tint_switch_thumb = 2131361869;
864 |
865 | // aapt resource value: 0x7f0a004e
866 | public const int abc_tint_switch_track = 2131361870;
867 |
868 | // aapt resource value: 0x7f0a0004
869 | public const int accent_material_dark = 2131361796;
870 |
871 | // aapt resource value: 0x7f0a0005
872 | public const int accent_material_light = 2131361797;
873 |
874 | // aapt resource value: 0x7f0a0006
875 | public const int background_floating_material_dark = 2131361798;
876 |
877 | // aapt resource value: 0x7f0a0007
878 | public const int background_floating_material_light = 2131361799;
879 |
880 | // aapt resource value: 0x7f0a0008
881 | public const int background_material_dark = 2131361800;
882 |
883 | // aapt resource value: 0x7f0a0009
884 | public const int background_material_light = 2131361801;
885 |
886 | // aapt resource value: 0x7f0a000a
887 | public const int bright_foreground_disabled_material_dark = 2131361802;
888 |
889 | // aapt resource value: 0x7f0a000b
890 | public const int bright_foreground_disabled_material_light = 2131361803;
891 |
892 | // aapt resource value: 0x7f0a000c
893 | public const int bright_foreground_inverse_material_dark = 2131361804;
894 |
895 | // aapt resource value: 0x7f0a000d
896 | public const int bright_foreground_inverse_material_light = 2131361805;
897 |
898 | // aapt resource value: 0x7f0a000e
899 | public const int bright_foreground_material_dark = 2131361806;
900 |
901 | // aapt resource value: 0x7f0a000f
902 | public const int bright_foreground_material_light = 2131361807;
903 |
904 | // aapt resource value: 0x7f0a0010
905 | public const int button_material_dark = 2131361808;
906 |
907 | // aapt resource value: 0x7f0a0011
908 | public const int button_material_light = 2131361809;
909 |
910 | // aapt resource value: 0x7f0a003c
911 | public const int colorAccent = 2131361852;
912 |
913 | // aapt resource value: 0x7f0a003a
914 | public const int colorPrimary = 2131361850;
915 |
916 | // aapt resource value: 0x7f0a003b
917 | public const int colorPrimaryDark = 2131361851;
918 |
919 | // aapt resource value: 0x7f0a0012
920 | public const int dim_foreground_disabled_material_dark = 2131361810;
921 |
922 | // aapt resource value: 0x7f0a0013
923 | public const int dim_foreground_disabled_material_light = 2131361811;
924 |
925 | // aapt resource value: 0x7f0a0014
926 | public const int dim_foreground_material_dark = 2131361812;
927 |
928 | // aapt resource value: 0x7f0a0015
929 | public const int dim_foreground_material_light = 2131361813;
930 |
931 | // aapt resource value: 0x7f0a0016
932 | public const int foreground_material_dark = 2131361814;
933 |
934 | // aapt resource value: 0x7f0a0017
935 | public const int foreground_material_light = 2131361815;
936 |
937 | // aapt resource value: 0x7f0a0018
938 | public const int highlighted_text_material_dark = 2131361816;
939 |
940 | // aapt resource value: 0x7f0a0019
941 | public const int highlighted_text_material_light = 2131361817;
942 |
943 | // aapt resource value: 0x7f0a001a
944 | public const int hint_foreground_material_dark = 2131361818;
945 |
946 | // aapt resource value: 0x7f0a001b
947 | public const int hint_foreground_material_light = 2131361819;
948 |
949 | // aapt resource value: 0x7f0a001c
950 | public const int material_blue_grey_800 = 2131361820;
951 |
952 | // aapt resource value: 0x7f0a001d
953 | public const int material_blue_grey_900 = 2131361821;
954 |
955 | // aapt resource value: 0x7f0a001e
956 | public const int material_blue_grey_950 = 2131361822;
957 |
958 | // aapt resource value: 0x7f0a001f
959 | public const int material_deep_teal_200 = 2131361823;
960 |
961 | // aapt resource value: 0x7f0a0020
962 | public const int material_deep_teal_500 = 2131361824;
963 |
964 | // aapt resource value: 0x7f0a0021
965 | public const int material_grey_100 = 2131361825;
966 |
967 | // aapt resource value: 0x7f0a0022
968 | public const int material_grey_300 = 2131361826;
969 |
970 | // aapt resource value: 0x7f0a0023
971 | public const int material_grey_50 = 2131361827;
972 |
973 | // aapt resource value: 0x7f0a0024
974 | public const int material_grey_600 = 2131361828;
975 |
976 | // aapt resource value: 0x7f0a0025
977 | public const int material_grey_800 = 2131361829;
978 |
979 | // aapt resource value: 0x7f0a0026
980 | public const int material_grey_850 = 2131361830;
981 |
982 | // aapt resource value: 0x7f0a0027
983 | public const int material_grey_900 = 2131361831;
984 |
985 | // aapt resource value: 0x7f0a0028
986 | public const int primary_dark_material_dark = 2131361832;
987 |
988 | // aapt resource value: 0x7f0a0029
989 | public const int primary_dark_material_light = 2131361833;
990 |
991 | // aapt resource value: 0x7f0a002a
992 | public const int primary_material_dark = 2131361834;
993 |
994 | // aapt resource value: 0x7f0a002b
995 | public const int primary_material_light = 2131361835;
996 |
997 | // aapt resource value: 0x7f0a002c
998 | public const int primary_text_default_material_dark = 2131361836;
999 |
1000 | // aapt resource value: 0x7f0a002d
1001 | public const int primary_text_default_material_light = 2131361837;
1002 |
1003 | // aapt resource value: 0x7f0a002e
1004 | public const int primary_text_disabled_material_dark = 2131361838;
1005 |
1006 | // aapt resource value: 0x7f0a002f
1007 | public const int primary_text_disabled_material_light = 2131361839;
1008 |
1009 | // aapt resource value: 0x7f0a0030
1010 | public const int ripple_material_dark = 2131361840;
1011 |
1012 | // aapt resource value: 0x7f0a0031
1013 | public const int ripple_material_light = 2131361841;
1014 |
1015 | // aapt resource value: 0x7f0a0032
1016 | public const int secondary_text_default_material_dark = 2131361842;
1017 |
1018 | // aapt resource value: 0x7f0a0033
1019 | public const int secondary_text_default_material_light = 2131361843;
1020 |
1021 | // aapt resource value: 0x7f0a0034
1022 | public const int secondary_text_disabled_material_dark = 2131361844;
1023 |
1024 | // aapt resource value: 0x7f0a0035
1025 | public const int secondary_text_disabled_material_light = 2131361845;
1026 |
1027 | // aapt resource value: 0x7f0a0036
1028 | public const int switch_thumb_disabled_material_dark = 2131361846;
1029 |
1030 | // aapt resource value: 0x7f0a0037
1031 | public const int switch_thumb_disabled_material_light = 2131361847;
1032 |
1033 | // aapt resource value: 0x7f0a004f
1034 | public const int switch_thumb_material_dark = 2131361871;
1035 |
1036 | // aapt resource value: 0x7f0a0050
1037 | public const int switch_thumb_material_light = 2131361872;
1038 |
1039 | // aapt resource value: 0x7f0a0038
1040 | public const int switch_thumb_normal_material_dark = 2131361848;
1041 |
1042 | // aapt resource value: 0x7f0a0039
1043 | public const int switch_thumb_normal_material_light = 2131361849;
1044 |
1045 | static Color()
1046 | {
1047 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
1048 | }
1049 |
1050 | private Color()
1051 | {
1052 | }
1053 | }
1054 |
1055 | public partial class Dimension
1056 | {
1057 |
1058 | // aapt resource value: 0x7f07000c
1059 | public const int abc_action_bar_content_inset_material = 2131165196;
1060 |
1061 | // aapt resource value: 0x7f07000d
1062 | public const int abc_action_bar_content_inset_with_nav = 2131165197;
1063 |
1064 | // aapt resource value: 0x7f070001
1065 | public const int abc_action_bar_default_height_material = 2131165185;
1066 |
1067 | // aapt resource value: 0x7f07000e
1068 | public const int abc_action_bar_default_padding_end_material = 2131165198;
1069 |
1070 | // aapt resource value: 0x7f07000f
1071 | public const int abc_action_bar_default_padding_start_material = 2131165199;
1072 |
1073 | // aapt resource value: 0x7f070011
1074 | public const int abc_action_bar_elevation_material = 2131165201;
1075 |
1076 | // aapt resource value: 0x7f070012
1077 | public const int abc_action_bar_icon_vertical_padding_material = 2131165202;
1078 |
1079 | // aapt resource value: 0x7f070013
1080 | public const int abc_action_bar_overflow_padding_end_material = 2131165203;
1081 |
1082 | // aapt resource value: 0x7f070014
1083 | public const int abc_action_bar_overflow_padding_start_material = 2131165204;
1084 |
1085 | // aapt resource value: 0x7f070002
1086 | public const int abc_action_bar_progress_bar_size = 2131165186;
1087 |
1088 | // aapt resource value: 0x7f070015
1089 | public const int abc_action_bar_stacked_max_height = 2131165205;
1090 |
1091 | // aapt resource value: 0x7f070016
1092 | public const int abc_action_bar_stacked_tab_max_width = 2131165206;
1093 |
1094 | // aapt resource value: 0x7f070017
1095 | public const int abc_action_bar_subtitle_bottom_margin_material = 2131165207;
1096 |
1097 | // aapt resource value: 0x7f070018
1098 | public const int abc_action_bar_subtitle_top_margin_material = 2131165208;
1099 |
1100 | // aapt resource value: 0x7f070019
1101 | public const int abc_action_button_min_height_material = 2131165209;
1102 |
1103 | // aapt resource value: 0x7f07001a
1104 | public const int abc_action_button_min_width_material = 2131165210;
1105 |
1106 | // aapt resource value: 0x7f07001b
1107 | public const int abc_action_button_min_width_overflow_material = 2131165211;
1108 |
1109 | // aapt resource value: 0x7f070000
1110 | public const int abc_alert_dialog_button_bar_height = 2131165184;
1111 |
1112 | // aapt resource value: 0x7f07001c
1113 | public const int abc_button_inset_horizontal_material = 2131165212;
1114 |
1115 | // aapt resource value: 0x7f07001d
1116 | public const int abc_button_inset_vertical_material = 2131165213;
1117 |
1118 | // aapt resource value: 0x7f07001e
1119 | public const int abc_button_padding_horizontal_material = 2131165214;
1120 |
1121 | // aapt resource value: 0x7f07001f
1122 | public const int abc_button_padding_vertical_material = 2131165215;
1123 |
1124 | // aapt resource value: 0x7f070020
1125 | public const int abc_cascading_menus_min_smallest_width = 2131165216;
1126 |
1127 | // aapt resource value: 0x7f070005
1128 | public const int abc_config_prefDialogWidth = 2131165189;
1129 |
1130 | // aapt resource value: 0x7f070021
1131 | public const int abc_control_corner_material = 2131165217;
1132 |
1133 | // aapt resource value: 0x7f070022
1134 | public const int abc_control_inset_material = 2131165218;
1135 |
1136 | // aapt resource value: 0x7f070023
1137 | public const int abc_control_padding_material = 2131165219;
1138 |
1139 | // aapt resource value: 0x7f070006
1140 | public const int abc_dialog_fixed_height_major = 2131165190;
1141 |
1142 | // aapt resource value: 0x7f070007
1143 | public const int abc_dialog_fixed_height_minor = 2131165191;
1144 |
1145 | // aapt resource value: 0x7f070008
1146 | public const int abc_dialog_fixed_width_major = 2131165192;
1147 |
1148 | // aapt resource value: 0x7f070009
1149 | public const int abc_dialog_fixed_width_minor = 2131165193;
1150 |
1151 | // aapt resource value: 0x7f070024
1152 | public const int abc_dialog_list_padding_vertical_material = 2131165220;
1153 |
1154 | // aapt resource value: 0x7f07000a
1155 | public const int abc_dialog_min_width_major = 2131165194;
1156 |
1157 | // aapt resource value: 0x7f07000b
1158 | public const int abc_dialog_min_width_minor = 2131165195;
1159 |
1160 | // aapt resource value: 0x7f070025
1161 | public const int abc_dialog_padding_material = 2131165221;
1162 |
1163 | // aapt resource value: 0x7f070026
1164 | public const int abc_dialog_padding_top_material = 2131165222;
1165 |
1166 | // aapt resource value: 0x7f070027
1167 | public const int abc_disabled_alpha_material_dark = 2131165223;
1168 |
1169 | // aapt resource value: 0x7f070028
1170 | public const int abc_disabled_alpha_material_light = 2131165224;
1171 |
1172 | // aapt resource value: 0x7f070029
1173 | public const int abc_dropdownitem_icon_width = 2131165225;
1174 |
1175 | // aapt resource value: 0x7f07002a
1176 | public const int abc_dropdownitem_text_padding_left = 2131165226;
1177 |
1178 | // aapt resource value: 0x7f07002b
1179 | public const int abc_dropdownitem_text_padding_right = 2131165227;
1180 |
1181 | // aapt resource value: 0x7f07002c
1182 | public const int abc_edit_text_inset_bottom_material = 2131165228;
1183 |
1184 | // aapt resource value: 0x7f07002d
1185 | public const int abc_edit_text_inset_horizontal_material = 2131165229;
1186 |
1187 | // aapt resource value: 0x7f07002e
1188 | public const int abc_edit_text_inset_top_material = 2131165230;
1189 |
1190 | // aapt resource value: 0x7f07002f
1191 | public const int abc_floating_window_z = 2131165231;
1192 |
1193 | // aapt resource value: 0x7f070030
1194 | public const int abc_list_item_padding_horizontal_material = 2131165232;
1195 |
1196 | // aapt resource value: 0x7f070031
1197 | public const int abc_panel_menu_list_width = 2131165233;
1198 |
1199 | // aapt resource value: 0x7f070032
1200 | public const int abc_progress_bar_height_material = 2131165234;
1201 |
1202 | // aapt resource value: 0x7f070033
1203 | public const int abc_search_view_preferred_height = 2131165235;
1204 |
1205 | // aapt resource value: 0x7f070034
1206 | public const int abc_search_view_preferred_width = 2131165236;
1207 |
1208 | // aapt resource value: 0x7f070035
1209 | public const int abc_seekbar_track_background_height_material = 2131165237;
1210 |
1211 | // aapt resource value: 0x7f070036
1212 | public const int abc_seekbar_track_progress_height_material = 2131165238;
1213 |
1214 | // aapt resource value: 0x7f070037
1215 | public const int abc_select_dialog_padding_start_material = 2131165239;
1216 |
1217 | // aapt resource value: 0x7f070010
1218 | public const int abc_switch_padding = 2131165200;
1219 |
1220 | // aapt resource value: 0x7f070038
1221 | public const int abc_text_size_body_1_material = 2131165240;
1222 |
1223 | // aapt resource value: 0x7f070039
1224 | public const int abc_text_size_body_2_material = 2131165241;
1225 |
1226 | // aapt resource value: 0x7f07003a
1227 | public const int abc_text_size_button_material = 2131165242;
1228 |
1229 | // aapt resource value: 0x7f07003b
1230 | public const int abc_text_size_caption_material = 2131165243;
1231 |
1232 | // aapt resource value: 0x7f07003c
1233 | public const int abc_text_size_display_1_material = 2131165244;
1234 |
1235 | // aapt resource value: 0x7f07003d
1236 | public const int abc_text_size_display_2_material = 2131165245;
1237 |
1238 | // aapt resource value: 0x7f07003e
1239 | public const int abc_text_size_display_3_material = 2131165246;
1240 |
1241 | // aapt resource value: 0x7f07003f
1242 | public const int abc_text_size_display_4_material = 2131165247;
1243 |
1244 | // aapt resource value: 0x7f070040
1245 | public const int abc_text_size_headline_material = 2131165248;
1246 |
1247 | // aapt resource value: 0x7f070041
1248 | public const int abc_text_size_large_material = 2131165249;
1249 |
1250 | // aapt resource value: 0x7f070042
1251 | public const int abc_text_size_medium_material = 2131165250;
1252 |
1253 | // aapt resource value: 0x7f070043
1254 | public const int abc_text_size_menu_header_material = 2131165251;
1255 |
1256 | // aapt resource value: 0x7f070044
1257 | public const int abc_text_size_menu_material = 2131165252;
1258 |
1259 | // aapt resource value: 0x7f070045
1260 | public const int abc_text_size_small_material = 2131165253;
1261 |
1262 | // aapt resource value: 0x7f070046
1263 | public const int abc_text_size_subhead_material = 2131165254;
1264 |
1265 | // aapt resource value: 0x7f070003
1266 | public const int abc_text_size_subtitle_material_toolbar = 2131165187;
1267 |
1268 | // aapt resource value: 0x7f070047
1269 | public const int abc_text_size_title_material = 2131165255;
1270 |
1271 | // aapt resource value: 0x7f070004
1272 | public const int abc_text_size_title_material_toolbar = 2131165188;
1273 |
1274 | // aapt resource value: 0x7f070050
1275 | public const int activity_horizontal_margin = 2131165264;
1276 |
1277 | // aapt resource value: 0x7f070048
1278 | public const int disabled_alpha_material_dark = 2131165256;
1279 |
1280 | // aapt resource value: 0x7f070049
1281 | public const int disabled_alpha_material_light = 2131165257;
1282 |
1283 | // aapt resource value: 0x7f07004a
1284 | public const int highlight_alpha_material_colored = 2131165258;
1285 |
1286 | // aapt resource value: 0x7f07004b
1287 | public const int highlight_alpha_material_dark = 2131165259;
1288 |
1289 | // aapt resource value: 0x7f07004c
1290 | public const int highlight_alpha_material_light = 2131165260;
1291 |
1292 | // aapt resource value: 0x7f07004d
1293 | public const int notification_large_icon_height = 2131165261;
1294 |
1295 | // aapt resource value: 0x7f07004e
1296 | public const int notification_large_icon_width = 2131165262;
1297 |
1298 | // aapt resource value: 0x7f07004f
1299 | public const int notification_subtext_size = 2131165263;
1300 |
1301 | static Dimension()
1302 | {
1303 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
1304 | }
1305 |
1306 | private Dimension()
1307 | {
1308 | }
1309 | }
1310 |
1311 | public partial class Drawable
1312 | {
1313 |
1314 | // aapt resource value: 0x7f020000
1315 | public const int abc_ab_share_pack_mtrl_alpha = 2130837504;
1316 |
1317 | // aapt resource value: 0x7f020001
1318 | public const int abc_action_bar_item_background_material = 2130837505;
1319 |
1320 | // aapt resource value: 0x7f020002
1321 | public const int abc_btn_borderless_material = 2130837506;
1322 |
1323 | // aapt resource value: 0x7f020003
1324 | public const int abc_btn_check_material = 2130837507;
1325 |
1326 | // aapt resource value: 0x7f020004
1327 | public const int abc_btn_check_to_on_mtrl_000 = 2130837508;
1328 |
1329 | // aapt resource value: 0x7f020005
1330 | public const int abc_btn_check_to_on_mtrl_015 = 2130837509;
1331 |
1332 | // aapt resource value: 0x7f020006
1333 | public const int abc_btn_colored_material = 2130837510;
1334 |
1335 | // aapt resource value: 0x7f020007
1336 | public const int abc_btn_default_mtrl_shape = 2130837511;
1337 |
1338 | // aapt resource value: 0x7f020008
1339 | public const int abc_btn_radio_material = 2130837512;
1340 |
1341 | // aapt resource value: 0x7f020009
1342 | public const int abc_btn_radio_to_on_mtrl_000 = 2130837513;
1343 |
1344 | // aapt resource value: 0x7f02000a
1345 | public const int abc_btn_radio_to_on_mtrl_015 = 2130837514;
1346 |
1347 | // aapt resource value: 0x7f02000b
1348 | public const int abc_btn_switch_to_on_mtrl_00001 = 2130837515;
1349 |
1350 | // aapt resource value: 0x7f02000c
1351 | public const int abc_btn_switch_to_on_mtrl_00012 = 2130837516;
1352 |
1353 | // aapt resource value: 0x7f02000d
1354 | public const int abc_cab_background_internal_bg = 2130837517;
1355 |
1356 | // aapt resource value: 0x7f02000e
1357 | public const int abc_cab_background_top_material = 2130837518;
1358 |
1359 | // aapt resource value: 0x7f02000f
1360 | public const int abc_cab_background_top_mtrl_alpha = 2130837519;
1361 |
1362 | // aapt resource value: 0x7f020010
1363 | public const int abc_control_background_material = 2130837520;
1364 |
1365 | // aapt resource value: 0x7f020011
1366 | public const int abc_dialog_material_background = 2130837521;
1367 |
1368 | // aapt resource value: 0x7f020012
1369 | public const int abc_edit_text_material = 2130837522;
1370 |
1371 | // aapt resource value: 0x7f020013
1372 | public const int abc_ic_ab_back_material = 2130837523;
1373 |
1374 | // aapt resource value: 0x7f020014
1375 | public const int abc_ic_arrow_drop_right_black_24dp = 2130837524;
1376 |
1377 | // aapt resource value: 0x7f020015
1378 | public const int abc_ic_clear_material = 2130837525;
1379 |
1380 | // aapt resource value: 0x7f020016
1381 | public const int abc_ic_commit_search_api_mtrl_alpha = 2130837526;
1382 |
1383 | // aapt resource value: 0x7f020017
1384 | public const int abc_ic_go_search_api_material = 2130837527;
1385 |
1386 | // aapt resource value: 0x7f020018
1387 | public const int abc_ic_menu_copy_mtrl_am_alpha = 2130837528;
1388 |
1389 | // aapt resource value: 0x7f020019
1390 | public const int abc_ic_menu_cut_mtrl_alpha = 2130837529;
1391 |
1392 | // aapt resource value: 0x7f02001a
1393 | public const int abc_ic_menu_overflow_material = 2130837530;
1394 |
1395 | // aapt resource value: 0x7f02001b
1396 | public const int abc_ic_menu_paste_mtrl_am_alpha = 2130837531;
1397 |
1398 | // aapt resource value: 0x7f02001c
1399 | public const int abc_ic_menu_selectall_mtrl_alpha = 2130837532;
1400 |
1401 | // aapt resource value: 0x7f02001d
1402 | public const int abc_ic_menu_share_mtrl_alpha = 2130837533;
1403 |
1404 | // aapt resource value: 0x7f02001e
1405 | public const int abc_ic_search_api_material = 2130837534;
1406 |
1407 | // aapt resource value: 0x7f02001f
1408 | public const int abc_ic_star_black_16dp = 2130837535;
1409 |
1410 | // aapt resource value: 0x7f020020
1411 | public const int abc_ic_star_black_36dp = 2130837536;
1412 |
1413 | // aapt resource value: 0x7f020021
1414 | public const int abc_ic_star_black_48dp = 2130837537;
1415 |
1416 | // aapt resource value: 0x7f020022
1417 | public const int abc_ic_star_half_black_16dp = 2130837538;
1418 |
1419 | // aapt resource value: 0x7f020023
1420 | public const int abc_ic_star_half_black_36dp = 2130837539;
1421 |
1422 | // aapt resource value: 0x7f020024
1423 | public const int abc_ic_star_half_black_48dp = 2130837540;
1424 |
1425 | // aapt resource value: 0x7f020025
1426 | public const int abc_ic_voice_search_api_material = 2130837541;
1427 |
1428 | // aapt resource value: 0x7f020026
1429 | public const int abc_item_background_holo_dark = 2130837542;
1430 |
1431 | // aapt resource value: 0x7f020027
1432 | public const int abc_item_background_holo_light = 2130837543;
1433 |
1434 | // aapt resource value: 0x7f020028
1435 | public const int abc_list_divider_mtrl_alpha = 2130837544;
1436 |
1437 | // aapt resource value: 0x7f020029
1438 | public const int abc_list_focused_holo = 2130837545;
1439 |
1440 | // aapt resource value: 0x7f02002a
1441 | public const int abc_list_longpressed_holo = 2130837546;
1442 |
1443 | // aapt resource value: 0x7f02002b
1444 | public const int abc_list_pressed_holo_dark = 2130837547;
1445 |
1446 | // aapt resource value: 0x7f02002c
1447 | public const int abc_list_pressed_holo_light = 2130837548;
1448 |
1449 | // aapt resource value: 0x7f02002d
1450 | public const int abc_list_selector_background_transition_holo_dark = 2130837549;
1451 |
1452 | // aapt resource value: 0x7f02002e
1453 | public const int abc_list_selector_background_transition_holo_light = 2130837550;
1454 |
1455 | // aapt resource value: 0x7f02002f
1456 | public const int abc_list_selector_disabled_holo_dark = 2130837551;
1457 |
1458 | // aapt resource value: 0x7f020030
1459 | public const int abc_list_selector_disabled_holo_light = 2130837552;
1460 |
1461 | // aapt resource value: 0x7f020031
1462 | public const int abc_list_selector_holo_dark = 2130837553;
1463 |
1464 | // aapt resource value: 0x7f020032
1465 | public const int abc_list_selector_holo_light = 2130837554;
1466 |
1467 | // aapt resource value: 0x7f020033
1468 | public const int abc_menu_hardkey_panel_mtrl_mult = 2130837555;
1469 |
1470 | // aapt resource value: 0x7f020034
1471 | public const int abc_popup_background_mtrl_mult = 2130837556;
1472 |
1473 | // aapt resource value: 0x7f020035
1474 | public const int abc_ratingbar_indicator_material = 2130837557;
1475 |
1476 | // aapt resource value: 0x7f020036
1477 | public const int abc_ratingbar_material = 2130837558;
1478 |
1479 | // aapt resource value: 0x7f020037
1480 | public const int abc_ratingbar_small_material = 2130837559;
1481 |
1482 | // aapt resource value: 0x7f020038
1483 | public const int abc_scrubber_control_off_mtrl_alpha = 2130837560;
1484 |
1485 | // aapt resource value: 0x7f020039
1486 | public const int abc_scrubber_control_to_pressed_mtrl_000 = 2130837561;
1487 |
1488 | // aapt resource value: 0x7f02003a
1489 | public const int abc_scrubber_control_to_pressed_mtrl_005 = 2130837562;
1490 |
1491 | // aapt resource value: 0x7f02003b
1492 | public const int abc_scrubber_primary_mtrl_alpha = 2130837563;
1493 |
1494 | // aapt resource value: 0x7f02003c
1495 | public const int abc_scrubber_track_mtrl_alpha = 2130837564;
1496 |
1497 | // aapt resource value: 0x7f02003d
1498 | public const int abc_seekbar_thumb_material = 2130837565;
1499 |
1500 | // aapt resource value: 0x7f02003e
1501 | public const int abc_seekbar_tick_mark_material = 2130837566;
1502 |
1503 | // aapt resource value: 0x7f02003f
1504 | public const int abc_seekbar_track_material = 2130837567;
1505 |
1506 | // aapt resource value: 0x7f020040
1507 | public const int abc_spinner_mtrl_am_alpha = 2130837568;
1508 |
1509 | // aapt resource value: 0x7f020041
1510 | public const int abc_spinner_textfield_background_material = 2130837569;
1511 |
1512 | // aapt resource value: 0x7f020042
1513 | public const int abc_switch_thumb_material = 2130837570;
1514 |
1515 | // aapt resource value: 0x7f020043
1516 | public const int abc_switch_track_mtrl_alpha = 2130837571;
1517 |
1518 | // aapt resource value: 0x7f020044
1519 | public const int abc_tab_indicator_material = 2130837572;
1520 |
1521 | // aapt resource value: 0x7f020045
1522 | public const int abc_tab_indicator_mtrl_alpha = 2130837573;
1523 |
1524 | // aapt resource value: 0x7f020046
1525 | public const int abc_text_cursor_material = 2130837574;
1526 |
1527 | // aapt resource value: 0x7f020047
1528 | public const int abc_text_select_handle_left_mtrl_dark = 2130837575;
1529 |
1530 | // aapt resource value: 0x7f020048
1531 | public const int abc_text_select_handle_left_mtrl_light = 2130837576;
1532 |
1533 | // aapt resource value: 0x7f020049
1534 | public const int abc_text_select_handle_middle_mtrl_dark = 2130837577;
1535 |
1536 | // aapt resource value: 0x7f02004a
1537 | public const int abc_text_select_handle_middle_mtrl_light = 2130837578;
1538 |
1539 | // aapt resource value: 0x7f02004b
1540 | public const int abc_text_select_handle_right_mtrl_dark = 2130837579;
1541 |
1542 | // aapt resource value: 0x7f02004c
1543 | public const int abc_text_select_handle_right_mtrl_light = 2130837580;
1544 |
1545 | // aapt resource value: 0x7f02004d
1546 | public const int abc_textfield_activated_mtrl_alpha = 2130837581;
1547 |
1548 | // aapt resource value: 0x7f02004e
1549 | public const int abc_textfield_default_mtrl_alpha = 2130837582;
1550 |
1551 | // aapt resource value: 0x7f02004f
1552 | public const int abc_textfield_search_activated_mtrl_alpha = 2130837583;
1553 |
1554 | // aapt resource value: 0x7f020050
1555 | public const int abc_textfield_search_default_mtrl_alpha = 2130837584;
1556 |
1557 | // aapt resource value: 0x7f020051
1558 | public const int abc_textfield_search_material = 2130837585;
1559 |
1560 | // aapt resource value: 0x7f020052
1561 | public const int abc_vector_test = 2130837586;
1562 |
1563 | // aapt resource value: 0x7f020053
1564 | public const int background = 2130837587;
1565 |
1566 | // aapt resource value: 0x7f020054
1567 | public const int circle = 2130837588;
1568 |
1569 | // aapt resource value: 0x7f020055
1570 | public const int hughjackman = 2130837589;
1571 |
1572 | // aapt resource value: 0x7f020056
1573 | public const int mountains = 2130837590;
1574 |
1575 | // aapt resource value: 0x7f020057
1576 | public const int notification_template_icon_bg = 2130837591;
1577 |
1578 | static Drawable()
1579 | {
1580 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
1581 | }
1582 |
1583 | private Drawable()
1584 | {
1585 | }
1586 | }
1587 |
1588 | public partial class Id
1589 | {
1590 |
1591 | // aapt resource value: 0x7f0b005d
1592 | public const int action0 = 2131427421;
1593 |
1594 | // aapt resource value: 0x7f0b0047
1595 | public const int action_bar = 2131427399;
1596 |
1597 | // aapt resource value: 0x7f0b0000
1598 | public const int action_bar_activity_content = 2131427328;
1599 |
1600 | // aapt resource value: 0x7f0b0046
1601 | public const int action_bar_container = 2131427398;
1602 |
1603 | // aapt resource value: 0x7f0b0042
1604 | public const int action_bar_root = 2131427394;
1605 |
1606 | // aapt resource value: 0x7f0b0001
1607 | public const int action_bar_spinner = 2131427329;
1608 |
1609 | // aapt resource value: 0x7f0b0027
1610 | public const int action_bar_subtitle = 2131427367;
1611 |
1612 | // aapt resource value: 0x7f0b0026
1613 | public const int action_bar_title = 2131427366;
1614 |
1615 | // aapt resource value: 0x7f0b0048
1616 | public const int action_context_bar = 2131427400;
1617 |
1618 | // aapt resource value: 0x7f0b0061
1619 | public const int action_divider = 2131427425;
1620 |
1621 | // aapt resource value: 0x7f0b0002
1622 | public const int action_menu_divider = 2131427330;
1623 |
1624 | // aapt resource value: 0x7f0b0003
1625 | public const int action_menu_presenter = 2131427331;
1626 |
1627 | // aapt resource value: 0x7f0b0044
1628 | public const int action_mode_bar = 2131427396;
1629 |
1630 | // aapt resource value: 0x7f0b0043
1631 | public const int action_mode_bar_stub = 2131427395;
1632 |
1633 | // aapt resource value: 0x7f0b0028
1634 | public const int action_mode_close_button = 2131427368;
1635 |
1636 | // aapt resource value: 0x7f0b0029
1637 | public const int activity_chooser_view_content = 2131427369;
1638 |
1639 | // aapt resource value: 0x7f0b0056
1640 | public const int activity_main = 2131427414;
1641 |
1642 | // aapt resource value: 0x7f0b0013
1643 | public const int add = 2131427347;
1644 |
1645 | // aapt resource value: 0x7f0b0035
1646 | public const int alertTitle = 2131427381;
1647 |
1648 | // aapt resource value: 0x7f0b001d
1649 | public const int always = 2131427357;
1650 |
1651 | // aapt resource value: 0x7f0b005a
1652 | public const int avatar = 2131427418;
1653 |
1654 | // aapt resource value: 0x7f0b001a
1655 | public const int beginning = 2131427354;
1656 |
1657 | // aapt resource value: 0x7f0b0022
1658 | public const int bottom = 2131427362;
1659 |
1660 | // aapt resource value: 0x7f0b0030
1661 | public const int buttonPanel = 2131427376;
1662 |
1663 | // aapt resource value: 0x7f0b005e
1664 | public const int cancel_action = 2131427422;
1665 |
1666 | // aapt resource value: 0x7f0b003e
1667 | public const int checkbox = 2131427390;
1668 |
1669 | // aapt resource value: 0x7f0b0064
1670 | public const int chronometer = 2131427428;
1671 |
1672 | // aapt resource value: 0x7f0b001e
1673 | public const int collapseActionView = 2131427358;
1674 |
1675 | // aapt resource value: 0x7f0b0036
1676 | public const int contentPanel = 2131427382;
1677 |
1678 | // aapt resource value: 0x7f0b003c
1679 | public const int custom = 2131427388;
1680 |
1681 | // aapt resource value: 0x7f0b003b
1682 | public const int customPanel = 2131427387;
1683 |
1684 | // aapt resource value: 0x7f0b0045
1685 | public const int decor_content_parent = 2131427397;
1686 |
1687 | // aapt resource value: 0x7f0b002c
1688 | public const int default_activity_button = 2131427372;
1689 |
1690 | // aapt resource value: 0x7f0b0059
1691 | public const int diagonalLayout = 2131427417;
1692 |
1693 | // aapt resource value: 0x7f0b000c
1694 | public const int disableHome = 2131427340;
1695 |
1696 | // aapt resource value: 0x7f0b0049
1697 | public const int edit_query = 2131427401;
1698 |
1699 | // aapt resource value: 0x7f0b001b
1700 | public const int end = 2131427355;
1701 |
1702 | // aapt resource value: 0x7f0b0069
1703 | public const int end_padder = 2131427433;
1704 |
1705 | // aapt resource value: 0x7f0b002a
1706 | public const int expand_activities_button = 2131427370;
1707 |
1708 | // aapt resource value: 0x7f0b003d
1709 | public const int expanded_menu = 2131427389;
1710 |
1711 | // aapt resource value: 0x7f0b0004
1712 | public const int home = 2131427332;
1713 |
1714 | // aapt resource value: 0x7f0b000d
1715 | public const int homeAsUp = 2131427341;
1716 |
1717 | // aapt resource value: 0x7f0b002e
1718 | public const int icon = 2131427374;
1719 |
1720 | // aapt resource value: 0x7f0b001f
1721 | public const int ifRoom = 2131427359;
1722 |
1723 | // aapt resource value: 0x7f0b002b
1724 | public const int image = 2131427371;
1725 |
1726 | // aapt resource value: 0x7f0b0068
1727 | public const int info = 2131427432;
1728 |
1729 | // aapt resource value: 0x7f0b0057
1730 | public const int layoutBottom = 2131427415;
1731 |
1732 | // aapt resource value: 0x7f0b0058
1733 | public const int layoutTop = 2131427416;
1734 |
1735 | // aapt resource value: 0x7f0b0024
1736 | public const int left = 2131427364;
1737 |
1738 | // aapt resource value: 0x7f0b0062
1739 | public const int line1 = 2131427426;
1740 |
1741 | // aapt resource value: 0x7f0b0066
1742 | public const int line3 = 2131427430;
1743 |
1744 | // aapt resource value: 0x7f0b0009
1745 | public const int listMode = 2131427337;
1746 |
1747 | // aapt resource value: 0x7f0b002d
1748 | public const int list_item = 2131427373;
1749 |
1750 | // aapt resource value: 0x7f0b0060
1751 | public const int media_actions = 2131427424;
1752 |
1753 | // aapt resource value: 0x7f0b001c
1754 | public const int middle = 2131427356;
1755 |
1756 | // aapt resource value: 0x7f0b0014
1757 | public const int multiply = 2131427348;
1758 |
1759 | // aapt resource value: 0x7f0b0020
1760 | public const int never = 2131427360;
1761 |
1762 | // aapt resource value: 0x7f0b000e
1763 | public const int none = 2131427342;
1764 |
1765 | // aapt resource value: 0x7f0b000a
1766 | public const int normal = 2131427338;
1767 |
1768 | // aapt resource value: 0x7f0b0032
1769 | public const int parentPanel = 2131427378;
1770 |
1771 | // aapt resource value: 0x7f0b0005
1772 | public const int progress_circular = 2131427333;
1773 |
1774 | // aapt resource value: 0x7f0b0006
1775 | public const int progress_horizontal = 2131427334;
1776 |
1777 | // aapt resource value: 0x7f0b0040
1778 | public const int radio = 2131427392;
1779 |
1780 | // aapt resource value: 0x7f0b0025
1781 | public const int right = 2131427365;
1782 |
1783 | // aapt resource value: 0x7f0b0015
1784 | public const int screen = 2131427349;
1785 |
1786 | // aapt resource value: 0x7f0b003a
1787 | public const int scrollIndicatorDown = 2131427386;
1788 |
1789 | // aapt resource value: 0x7f0b0037
1790 | public const int scrollIndicatorUp = 2131427383;
1791 |
1792 | // aapt resource value: 0x7f0b0038
1793 | public const int scrollView = 2131427384;
1794 |
1795 | // aapt resource value: 0x7f0b004b
1796 | public const int search_badge = 2131427403;
1797 |
1798 | // aapt resource value: 0x7f0b004a
1799 | public const int search_bar = 2131427402;
1800 |
1801 | // aapt resource value: 0x7f0b004c
1802 | public const int search_button = 2131427404;
1803 |
1804 | // aapt resource value: 0x7f0b0051
1805 | public const int search_close_btn = 2131427409;
1806 |
1807 | // aapt resource value: 0x7f0b004d
1808 | public const int search_edit_frame = 2131427405;
1809 |
1810 | // aapt resource value: 0x7f0b0053
1811 | public const int search_go_btn = 2131427411;
1812 |
1813 | // aapt resource value: 0x7f0b004e
1814 | public const int search_mag_icon = 2131427406;
1815 |
1816 | // aapt resource value: 0x7f0b004f
1817 | public const int search_plate = 2131427407;
1818 |
1819 | // aapt resource value: 0x7f0b0050
1820 | public const int search_src_text = 2131427408;
1821 |
1822 | // aapt resource value: 0x7f0b0054
1823 | public const int search_voice_btn = 2131427412;
1824 |
1825 | // aapt resource value: 0x7f0b0055
1826 | public const int select_dialog_listview = 2131427413;
1827 |
1828 | // aapt resource value: 0x7f0b003f
1829 | public const int shortcut = 2131427391;
1830 |
1831 | // aapt resource value: 0x7f0b000f
1832 | public const int showCustom = 2131427343;
1833 |
1834 | // aapt resource value: 0x7f0b0010
1835 | public const int showHome = 2131427344;
1836 |
1837 | // aapt resource value: 0x7f0b0011
1838 | public const int showTitle = 2131427345;
1839 |
1840 | // aapt resource value: 0x7f0b0031
1841 | public const int spacer = 2131427377;
1842 |
1843 | // aapt resource value: 0x7f0b0007
1844 | public const int split_action_bar = 2131427335;
1845 |
1846 | // aapt resource value: 0x7f0b0016
1847 | public const int src_atop = 2131427350;
1848 |
1849 | // aapt resource value: 0x7f0b0017
1850 | public const int src_in = 2131427351;
1851 |
1852 | // aapt resource value: 0x7f0b0018
1853 | public const int src_over = 2131427352;
1854 |
1855 | // aapt resource value: 0x7f0b005f
1856 | public const int status_bar_latest_event_content = 2131427423;
1857 |
1858 | // aapt resource value: 0x7f0b0041
1859 | public const int submenuarrow = 2131427393;
1860 |
1861 | // aapt resource value: 0x7f0b0052
1862 | public const int submit_area = 2131427410;
1863 |
1864 | // aapt resource value: 0x7f0b000b
1865 | public const int tabMode = 2131427339;
1866 |
1867 | // aapt resource value: 0x7f0b0067
1868 | public const int text = 2131427431;
1869 |
1870 | // aapt resource value: 0x7f0b0065
1871 | public const int text2 = 2131427429;
1872 |
1873 | // aapt resource value: 0x7f0b0039
1874 | public const int textSpacerNoButtons = 2131427385;
1875 |
1876 | // aapt resource value: 0x7f0b005c
1877 | public const int textView = 2131427420;
1878 |
1879 | // aapt resource value: 0x7f0b0063
1880 | public const int time = 2131427427;
1881 |
1882 | // aapt resource value: 0x7f0b002f
1883 | public const int title = 2131427375;
1884 |
1885 | // aapt resource value: 0x7f0b0034
1886 | public const int title_template = 2131427380;
1887 |
1888 | // aapt resource value: 0x7f0b005b
1889 | public const int toolbar = 2131427419;
1890 |
1891 | // aapt resource value: 0x7f0b0023
1892 | public const int top = 2131427363;
1893 |
1894 | // aapt resource value: 0x7f0b0033
1895 | public const int topPanel = 2131427379;
1896 |
1897 | // aapt resource value: 0x7f0b0008
1898 | public const int up = 2131427336;
1899 |
1900 | // aapt resource value: 0x7f0b0012
1901 | public const int useLogo = 2131427346;
1902 |
1903 | // aapt resource value: 0x7f0b0021
1904 | public const int withText = 2131427361;
1905 |
1906 | // aapt resource value: 0x7f0b0019
1907 | public const int wrap_content = 2131427353;
1908 |
1909 | static Id()
1910 | {
1911 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
1912 | }
1913 |
1914 | private Id()
1915 | {
1916 | }
1917 | }
1918 |
1919 | public partial class Integer
1920 | {
1921 |
1922 | // aapt resource value: 0x7f0c0000
1923 | public const int abc_config_activityDefaultDur = 2131492864;
1924 |
1925 | // aapt resource value: 0x7f0c0001
1926 | public const int abc_config_activityShortDur = 2131492865;
1927 |
1928 | // aapt resource value: 0x7f0c0002
1929 | public const int cancel_button_image_alpha = 2131492866;
1930 |
1931 | // aapt resource value: 0x7f0c0003
1932 | public const int status_bar_notification_info_maxnum = 2131492867;
1933 |
1934 | static Integer()
1935 | {
1936 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
1937 | }
1938 |
1939 | private Integer()
1940 | {
1941 | }
1942 | }
1943 |
1944 | public partial class Layout
1945 | {
1946 |
1947 | // aapt resource value: 0x7f040000
1948 | public const int abc_action_bar_title_item = 2130968576;
1949 |
1950 | // aapt resource value: 0x7f040001
1951 | public const int abc_action_bar_up_container = 2130968577;
1952 |
1953 | // aapt resource value: 0x7f040002
1954 | public const int abc_action_bar_view_list_nav_layout = 2130968578;
1955 |
1956 | // aapt resource value: 0x7f040003
1957 | public const int abc_action_menu_item_layout = 2130968579;
1958 |
1959 | // aapt resource value: 0x7f040004
1960 | public const int abc_action_menu_layout = 2130968580;
1961 |
1962 | // aapt resource value: 0x7f040005
1963 | public const int abc_action_mode_bar = 2130968581;
1964 |
1965 | // aapt resource value: 0x7f040006
1966 | public const int abc_action_mode_close_item_material = 2130968582;
1967 |
1968 | // aapt resource value: 0x7f040007
1969 | public const int abc_activity_chooser_view = 2130968583;
1970 |
1971 | // aapt resource value: 0x7f040008
1972 | public const int abc_activity_chooser_view_list_item = 2130968584;
1973 |
1974 | // aapt resource value: 0x7f040009
1975 | public const int abc_alert_dialog_button_bar_material = 2130968585;
1976 |
1977 | // aapt resource value: 0x7f04000a
1978 | public const int abc_alert_dialog_material = 2130968586;
1979 |
1980 | // aapt resource value: 0x7f04000b
1981 | public const int abc_dialog_title_material = 2130968587;
1982 |
1983 | // aapt resource value: 0x7f04000c
1984 | public const int abc_expanded_menu_layout = 2130968588;
1985 |
1986 | // aapt resource value: 0x7f04000d
1987 | public const int abc_list_menu_item_checkbox = 2130968589;
1988 |
1989 | // aapt resource value: 0x7f04000e
1990 | public const int abc_list_menu_item_icon = 2130968590;
1991 |
1992 | // aapt resource value: 0x7f04000f
1993 | public const int abc_list_menu_item_layout = 2130968591;
1994 |
1995 | // aapt resource value: 0x7f040010
1996 | public const int abc_list_menu_item_radio = 2130968592;
1997 |
1998 | // aapt resource value: 0x7f040011
1999 | public const int abc_popup_menu_header_item_layout = 2130968593;
2000 |
2001 | // aapt resource value: 0x7f040012
2002 | public const int abc_popup_menu_item_layout = 2130968594;
2003 |
2004 | // aapt resource value: 0x7f040013
2005 | public const int abc_screen_content_include = 2130968595;
2006 |
2007 | // aapt resource value: 0x7f040014
2008 | public const int abc_screen_simple = 2130968596;
2009 |
2010 | // aapt resource value: 0x7f040015
2011 | public const int abc_screen_simple_overlay_action_mode = 2130968597;
2012 |
2013 | // aapt resource value: 0x7f040016
2014 | public const int abc_screen_toolbar = 2130968598;
2015 |
2016 | // aapt resource value: 0x7f040017
2017 | public const int abc_search_dropdown_item_icons_2line = 2130968599;
2018 |
2019 | // aapt resource value: 0x7f040018
2020 | public const int abc_search_view = 2130968600;
2021 |
2022 | // aapt resource value: 0x7f040019
2023 | public const int abc_select_dialog_material = 2130968601;
2024 |
2025 | // aapt resource value: 0x7f04001a
2026 | public const int activity_anim = 2130968602;
2027 |
2028 | // aapt resource value: 0x7f04001b
2029 | public const int activity_main = 2130968603;
2030 |
2031 | // aapt resource value: 0x7f04001c
2032 | public const int activity_main_linear = 2130968604;
2033 |
2034 | // aapt resource value: 0x7f04001d
2035 | public const int activity_main_simple = 2130968605;
2036 |
2037 | // aapt resource value: 0x7f04001e
2038 | public const int notification_media_action = 2130968606;
2039 |
2040 | // aapt resource value: 0x7f04001f
2041 | public const int notification_media_cancel_action = 2130968607;
2042 |
2043 | // aapt resource value: 0x7f040020
2044 | public const int notification_template_big_media = 2130968608;
2045 |
2046 | // aapt resource value: 0x7f040021
2047 | public const int notification_template_big_media_narrow = 2130968609;
2048 |
2049 | // aapt resource value: 0x7f040022
2050 | public const int notification_template_lines = 2130968610;
2051 |
2052 | // aapt resource value: 0x7f040023
2053 | public const int notification_template_media = 2130968611;
2054 |
2055 | // aapt resource value: 0x7f040024
2056 | public const int notification_template_part_chronometer = 2130968612;
2057 |
2058 | // aapt resource value: 0x7f040025
2059 | public const int notification_template_part_time = 2130968613;
2060 |
2061 | // aapt resource value: 0x7f040026
2062 | public const int select_dialog_item_material = 2130968614;
2063 |
2064 | // aapt resource value: 0x7f040027
2065 | public const int select_dialog_multichoice_material = 2130968615;
2066 |
2067 | // aapt resource value: 0x7f040028
2068 | public const int select_dialog_singlechoice_material = 2130968616;
2069 |
2070 | // aapt resource value: 0x7f040029
2071 | public const int support_simple_spinner_dropdown_item = 2130968617;
2072 |
2073 | static Layout()
2074 | {
2075 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
2076 | }
2077 |
2078 | private Layout()
2079 | {
2080 | }
2081 | }
2082 |
2083 | public partial class Mipmap
2084 | {
2085 |
2086 | // aapt resource value: 0x7f030000
2087 | public const int Icon = 2130903040;
2088 |
2089 | static Mipmap()
2090 | {
2091 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
2092 | }
2093 |
2094 | private Mipmap()
2095 | {
2096 | }
2097 | }
2098 |
2099 | public partial class String
2100 | {
2101 |
2102 | // aapt resource value: 0x7f060000
2103 | public const int abc_action_bar_home_description = 2131099648;
2104 |
2105 | // aapt resource value: 0x7f060001
2106 | public const int abc_action_bar_home_description_format = 2131099649;
2107 |
2108 | // aapt resource value: 0x7f060002
2109 | public const int abc_action_bar_home_subtitle_description_format = 2131099650;
2110 |
2111 | // aapt resource value: 0x7f060003
2112 | public const int abc_action_bar_up_description = 2131099651;
2113 |
2114 | // aapt resource value: 0x7f060004
2115 | public const int abc_action_menu_overflow_description = 2131099652;
2116 |
2117 | // aapt resource value: 0x7f060005
2118 | public const int abc_action_mode_done = 2131099653;
2119 |
2120 | // aapt resource value: 0x7f060006
2121 | public const int abc_activity_chooser_view_see_all = 2131099654;
2122 |
2123 | // aapt resource value: 0x7f060007
2124 | public const int abc_activitychooserview_choose_application = 2131099655;
2125 |
2126 | // aapt resource value: 0x7f060008
2127 | public const int abc_capital_off = 2131099656;
2128 |
2129 | // aapt resource value: 0x7f060009
2130 | public const int abc_capital_on = 2131099657;
2131 |
2132 | // aapt resource value: 0x7f060015
2133 | public const int abc_font_family_body_1_material = 2131099669;
2134 |
2135 | // aapt resource value: 0x7f060016
2136 | public const int abc_font_family_body_2_material = 2131099670;
2137 |
2138 | // aapt resource value: 0x7f060017
2139 | public const int abc_font_family_button_material = 2131099671;
2140 |
2141 | // aapt resource value: 0x7f060018
2142 | public const int abc_font_family_caption_material = 2131099672;
2143 |
2144 | // aapt resource value: 0x7f060019
2145 | public const int abc_font_family_display_1_material = 2131099673;
2146 |
2147 | // aapt resource value: 0x7f06001a
2148 | public const int abc_font_family_display_2_material = 2131099674;
2149 |
2150 | // aapt resource value: 0x7f06001b
2151 | public const int abc_font_family_display_3_material = 2131099675;
2152 |
2153 | // aapt resource value: 0x7f06001c
2154 | public const int abc_font_family_display_4_material = 2131099676;
2155 |
2156 | // aapt resource value: 0x7f06001d
2157 | public const int abc_font_family_headline_material = 2131099677;
2158 |
2159 | // aapt resource value: 0x7f06001e
2160 | public const int abc_font_family_menu_material = 2131099678;
2161 |
2162 | // aapt resource value: 0x7f06001f
2163 | public const int abc_font_family_subhead_material = 2131099679;
2164 |
2165 | // aapt resource value: 0x7f060020
2166 | public const int abc_font_family_title_material = 2131099680;
2167 |
2168 | // aapt resource value: 0x7f06000a
2169 | public const int abc_search_hint = 2131099658;
2170 |
2171 | // aapt resource value: 0x7f06000b
2172 | public const int abc_searchview_description_clear = 2131099659;
2173 |
2174 | // aapt resource value: 0x7f06000c
2175 | public const int abc_searchview_description_query = 2131099660;
2176 |
2177 | // aapt resource value: 0x7f06000d
2178 | public const int abc_searchview_description_search = 2131099661;
2179 |
2180 | // aapt resource value: 0x7f06000e
2181 | public const int abc_searchview_description_submit = 2131099662;
2182 |
2183 | // aapt resource value: 0x7f06000f
2184 | public const int abc_searchview_description_voice = 2131099663;
2185 |
2186 | // aapt resource value: 0x7f060010
2187 | public const int abc_shareactionprovider_share_with = 2131099664;
2188 |
2189 | // aapt resource value: 0x7f060011
2190 | public const int abc_shareactionprovider_share_with_application = 2131099665;
2191 |
2192 | // aapt resource value: 0x7f060012
2193 | public const int abc_toolbar_collapse_description = 2131099666;
2194 |
2195 | // aapt resource value: 0x7f060021
2196 | public const int app_name = 2131099681;
2197 |
2198 | // aapt resource value: 0x7f060022
2199 | public const int description = 2131099682;
2200 |
2201 | // aapt resource value: 0x7f060013
2202 | public const int search_menu_title = 2131099667;
2203 |
2204 | // aapt resource value: 0x7f060014
2205 | public const int status_bar_notification_info_overflow = 2131099668;
2206 |
2207 | static String()
2208 | {
2209 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
2210 | }
2211 |
2212 | private String()
2213 | {
2214 | }
2215 | }
2216 |
2217 | public partial class Style
2218 | {
2219 |
2220 | // aapt resource value: 0x7f08008a
2221 | public const int AlertDialog_AppCompat = 2131230858;
2222 |
2223 | // aapt resource value: 0x7f08008b
2224 | public const int AlertDialog_AppCompat_Light = 2131230859;
2225 |
2226 | // aapt resource value: 0x7f08008c
2227 | public const int Animation_AppCompat_Dialog = 2131230860;
2228 |
2229 | // aapt resource value: 0x7f08008d
2230 | public const int Animation_AppCompat_DropDownUp = 2131230861;
2231 |
2232 | // aapt resource value: 0x7f08014b
2233 | public const int AppTheme = 2131231051;
2234 |
2235 | // aapt resource value: 0x7f08008e
2236 | public const int Base_AlertDialog_AppCompat = 2131230862;
2237 |
2238 | // aapt resource value: 0x7f08008f
2239 | public const int Base_AlertDialog_AppCompat_Light = 2131230863;
2240 |
2241 | // aapt resource value: 0x7f080090
2242 | public const int Base_Animation_AppCompat_Dialog = 2131230864;
2243 |
2244 | // aapt resource value: 0x7f080091
2245 | public const int Base_Animation_AppCompat_DropDownUp = 2131230865;
2246 |
2247 | // aapt resource value: 0x7f080092
2248 | public const int Base_DialogWindowTitle_AppCompat = 2131230866;
2249 |
2250 | // aapt resource value: 0x7f080093
2251 | public const int Base_DialogWindowTitleBackground_AppCompat = 2131230867;
2252 |
2253 | // aapt resource value: 0x7f080038
2254 | public const int Base_TextAppearance_AppCompat = 2131230776;
2255 |
2256 | // aapt resource value: 0x7f080039
2257 | public const int Base_TextAppearance_AppCompat_Body1 = 2131230777;
2258 |
2259 | // aapt resource value: 0x7f08003a
2260 | public const int Base_TextAppearance_AppCompat_Body2 = 2131230778;
2261 |
2262 | // aapt resource value: 0x7f080022
2263 | public const int Base_TextAppearance_AppCompat_Button = 2131230754;
2264 |
2265 | // aapt resource value: 0x7f08003b
2266 | public const int Base_TextAppearance_AppCompat_Caption = 2131230779;
2267 |
2268 | // aapt resource value: 0x7f08003c
2269 | public const int Base_TextAppearance_AppCompat_Display1 = 2131230780;
2270 |
2271 | // aapt resource value: 0x7f08003d
2272 | public const int Base_TextAppearance_AppCompat_Display2 = 2131230781;
2273 |
2274 | // aapt resource value: 0x7f08003e
2275 | public const int Base_TextAppearance_AppCompat_Display3 = 2131230782;
2276 |
2277 | // aapt resource value: 0x7f08003f
2278 | public const int Base_TextAppearance_AppCompat_Display4 = 2131230783;
2279 |
2280 | // aapt resource value: 0x7f080040
2281 | public const int Base_TextAppearance_AppCompat_Headline = 2131230784;
2282 |
2283 | // aapt resource value: 0x7f08000b
2284 | public const int Base_TextAppearance_AppCompat_Inverse = 2131230731;
2285 |
2286 | // aapt resource value: 0x7f080041
2287 | public const int Base_TextAppearance_AppCompat_Large = 2131230785;
2288 |
2289 | // aapt resource value: 0x7f08000c
2290 | public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131230732;
2291 |
2292 | // aapt resource value: 0x7f080042
2293 | public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131230786;
2294 |
2295 | // aapt resource value: 0x7f080043
2296 | public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131230787;
2297 |
2298 | // aapt resource value: 0x7f080044
2299 | public const int Base_TextAppearance_AppCompat_Medium = 2131230788;
2300 |
2301 | // aapt resource value: 0x7f08000d
2302 | public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131230733;
2303 |
2304 | // aapt resource value: 0x7f080045
2305 | public const int Base_TextAppearance_AppCompat_Menu = 2131230789;
2306 |
2307 | // aapt resource value: 0x7f080094
2308 | public const int Base_TextAppearance_AppCompat_SearchResult = 2131230868;
2309 |
2310 | // aapt resource value: 0x7f080046
2311 | public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131230790;
2312 |
2313 | // aapt resource value: 0x7f080047
2314 | public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131230791;
2315 |
2316 | // aapt resource value: 0x7f080048
2317 | public const int Base_TextAppearance_AppCompat_Small = 2131230792;
2318 |
2319 | // aapt resource value: 0x7f08000e
2320 | public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131230734;
2321 |
2322 | // aapt resource value: 0x7f080049
2323 | public const int Base_TextAppearance_AppCompat_Subhead = 2131230793;
2324 |
2325 | // aapt resource value: 0x7f08000f
2326 | public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131230735;
2327 |
2328 | // aapt resource value: 0x7f08004a
2329 | public const int Base_TextAppearance_AppCompat_Title = 2131230794;
2330 |
2331 | // aapt resource value: 0x7f080010
2332 | public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131230736;
2333 |
2334 | // aapt resource value: 0x7f080083
2335 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131230851;
2336 |
2337 | // aapt resource value: 0x7f08004b
2338 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131230795;
2339 |
2340 | // aapt resource value: 0x7f08004c
2341 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131230796;
2342 |
2343 | // aapt resource value: 0x7f08004d
2344 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131230797;
2345 |
2346 | // aapt resource value: 0x7f08004e
2347 | public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131230798;
2348 |
2349 | // aapt resource value: 0x7f08004f
2350 | public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131230799;
2351 |
2352 | // aapt resource value: 0x7f080050
2353 | public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131230800;
2354 |
2355 | // aapt resource value: 0x7f080051
2356 | public const int Base_TextAppearance_AppCompat_Widget_Button = 2131230801;
2357 |
2358 | // aapt resource value: 0x7f080084
2359 | public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131230852;
2360 |
2361 | // aapt resource value: 0x7f080095
2362 | public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131230869;
2363 |
2364 | // aapt resource value: 0x7f080052
2365 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131230802;
2366 |
2367 | // aapt resource value: 0x7f080053
2368 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131230803;
2369 |
2370 | // aapt resource value: 0x7f080054
2371 | public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131230804;
2372 |
2373 | // aapt resource value: 0x7f080055
2374 | public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131230805;
2375 |
2376 | // aapt resource value: 0x7f080056
2377 | public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131230806;
2378 |
2379 | // aapt resource value: 0x7f080096
2380 | public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131230870;
2381 |
2382 | // aapt resource value: 0x7f080057
2383 | public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131230807;
2384 |
2385 | // aapt resource value: 0x7f080058
2386 | public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131230808;
2387 |
2388 | // aapt resource value: 0x7f080059
2389 | public const int Base_Theme_AppCompat = 2131230809;
2390 |
2391 | // aapt resource value: 0x7f080097
2392 | public const int Base_Theme_AppCompat_CompactMenu = 2131230871;
2393 |
2394 | // aapt resource value: 0x7f080011
2395 | public const int Base_Theme_AppCompat_Dialog = 2131230737;
2396 |
2397 | // aapt resource value: 0x7f080098
2398 | public const int Base_Theme_AppCompat_Dialog_Alert = 2131230872;
2399 |
2400 | // aapt resource value: 0x7f080099
2401 | public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131230873;
2402 |
2403 | // aapt resource value: 0x7f08009a
2404 | public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131230874;
2405 |
2406 | // aapt resource value: 0x7f080001
2407 | public const int Base_Theme_AppCompat_DialogWhenLarge = 2131230721;
2408 |
2409 | // aapt resource value: 0x7f08005a
2410 | public const int Base_Theme_AppCompat_Light = 2131230810;
2411 |
2412 | // aapt resource value: 0x7f08009b
2413 | public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131230875;
2414 |
2415 | // aapt resource value: 0x7f080012
2416 | public const int Base_Theme_AppCompat_Light_Dialog = 2131230738;
2417 |
2418 | // aapt resource value: 0x7f08009c
2419 | public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131230876;
2420 |
2421 | // aapt resource value: 0x7f08009d
2422 | public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131230877;
2423 |
2424 | // aapt resource value: 0x7f08009e
2425 | public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131230878;
2426 |
2427 | // aapt resource value: 0x7f080002
2428 | public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131230722;
2429 |
2430 | // aapt resource value: 0x7f08009f
2431 | public const int Base_ThemeOverlay_AppCompat = 2131230879;
2432 |
2433 | // aapt resource value: 0x7f0800a0
2434 | public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131230880;
2435 |
2436 | // aapt resource value: 0x7f0800a1
2437 | public const int Base_ThemeOverlay_AppCompat_Dark = 2131230881;
2438 |
2439 | // aapt resource value: 0x7f0800a2
2440 | public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131230882;
2441 |
2442 | // aapt resource value: 0x7f080013
2443 | public const int Base_ThemeOverlay_AppCompat_Dialog = 2131230739;
2444 |
2445 | // aapt resource value: 0x7f0800a3
2446 | public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131230883;
2447 |
2448 | // aapt resource value: 0x7f0800a4
2449 | public const int Base_ThemeOverlay_AppCompat_Light = 2131230884;
2450 |
2451 | // aapt resource value: 0x7f080014
2452 | public const int Base_V11_Theme_AppCompat_Dialog = 2131230740;
2453 |
2454 | // aapt resource value: 0x7f080015
2455 | public const int Base_V11_Theme_AppCompat_Light_Dialog = 2131230741;
2456 |
2457 | // aapt resource value: 0x7f080016
2458 | public const int Base_V11_ThemeOverlay_AppCompat_Dialog = 2131230742;
2459 |
2460 | // aapt resource value: 0x7f08001e
2461 | public const int Base_V12_Widget_AppCompat_AutoCompleteTextView = 2131230750;
2462 |
2463 | // aapt resource value: 0x7f08001f
2464 | public const int Base_V12_Widget_AppCompat_EditText = 2131230751;
2465 |
2466 | // aapt resource value: 0x7f08005b
2467 | public const int Base_V21_Theme_AppCompat = 2131230811;
2468 |
2469 | // aapt resource value: 0x7f08005c
2470 | public const int Base_V21_Theme_AppCompat_Dialog = 2131230812;
2471 |
2472 | // aapt resource value: 0x7f08005d
2473 | public const int Base_V21_Theme_AppCompat_Light = 2131230813;
2474 |
2475 | // aapt resource value: 0x7f08005e
2476 | public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131230814;
2477 |
2478 | // aapt resource value: 0x7f08005f
2479 | public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131230815;
2480 |
2481 | // aapt resource value: 0x7f080081
2482 | public const int Base_V22_Theme_AppCompat = 2131230849;
2483 |
2484 | // aapt resource value: 0x7f080082
2485 | public const int Base_V22_Theme_AppCompat_Light = 2131230850;
2486 |
2487 | // aapt resource value: 0x7f080085
2488 | public const int Base_V23_Theme_AppCompat = 2131230853;
2489 |
2490 | // aapt resource value: 0x7f080086
2491 | public const int Base_V23_Theme_AppCompat_Light = 2131230854;
2492 |
2493 | // aapt resource value: 0x7f0800a5
2494 | public const int Base_V7_Theme_AppCompat = 2131230885;
2495 |
2496 | // aapt resource value: 0x7f0800a6
2497 | public const int Base_V7_Theme_AppCompat_Dialog = 2131230886;
2498 |
2499 | // aapt resource value: 0x7f0800a7
2500 | public const int Base_V7_Theme_AppCompat_Light = 2131230887;
2501 |
2502 | // aapt resource value: 0x7f0800a8
2503 | public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131230888;
2504 |
2505 | // aapt resource value: 0x7f0800a9
2506 | public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131230889;
2507 |
2508 | // aapt resource value: 0x7f0800aa
2509 | public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131230890;
2510 |
2511 | // aapt resource value: 0x7f0800ab
2512 | public const int Base_V7_Widget_AppCompat_EditText = 2131230891;
2513 |
2514 | // aapt resource value: 0x7f0800ac
2515 | public const int Base_Widget_AppCompat_ActionBar = 2131230892;
2516 |
2517 | // aapt resource value: 0x7f0800ad
2518 | public const int Base_Widget_AppCompat_ActionBar_Solid = 2131230893;
2519 |
2520 | // aapt resource value: 0x7f0800ae
2521 | public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131230894;
2522 |
2523 | // aapt resource value: 0x7f080060
2524 | public const int Base_Widget_AppCompat_ActionBar_TabText = 2131230816;
2525 |
2526 | // aapt resource value: 0x7f080061
2527 | public const int Base_Widget_AppCompat_ActionBar_TabView = 2131230817;
2528 |
2529 | // aapt resource value: 0x7f080062
2530 | public const int Base_Widget_AppCompat_ActionButton = 2131230818;
2531 |
2532 | // aapt resource value: 0x7f080063
2533 | public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131230819;
2534 |
2535 | // aapt resource value: 0x7f080064
2536 | public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131230820;
2537 |
2538 | // aapt resource value: 0x7f0800af
2539 | public const int Base_Widget_AppCompat_ActionMode = 2131230895;
2540 |
2541 | // aapt resource value: 0x7f0800b0
2542 | public const int Base_Widget_AppCompat_ActivityChooserView = 2131230896;
2543 |
2544 | // aapt resource value: 0x7f080020
2545 | public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131230752;
2546 |
2547 | // aapt resource value: 0x7f080065
2548 | public const int Base_Widget_AppCompat_Button = 2131230821;
2549 |
2550 | // aapt resource value: 0x7f080066
2551 | public const int Base_Widget_AppCompat_Button_Borderless = 2131230822;
2552 |
2553 | // aapt resource value: 0x7f080067
2554 | public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131230823;
2555 |
2556 | // aapt resource value: 0x7f0800b1
2557 | public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131230897;
2558 |
2559 | // aapt resource value: 0x7f080087
2560 | public const int Base_Widget_AppCompat_Button_Colored = 2131230855;
2561 |
2562 | // aapt resource value: 0x7f080068
2563 | public const int Base_Widget_AppCompat_Button_Small = 2131230824;
2564 |
2565 | // aapt resource value: 0x7f080069
2566 | public const int Base_Widget_AppCompat_ButtonBar = 2131230825;
2567 |
2568 | // aapt resource value: 0x7f0800b2
2569 | public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131230898;
2570 |
2571 | // aapt resource value: 0x7f08006a
2572 | public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131230826;
2573 |
2574 | // aapt resource value: 0x7f08006b
2575 | public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131230827;
2576 |
2577 | // aapt resource value: 0x7f0800b3
2578 | public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131230899;
2579 |
2580 | // aapt resource value: 0x7f080000
2581 | public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131230720;
2582 |
2583 | // aapt resource value: 0x7f0800b4
2584 | public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131230900;
2585 |
2586 | // aapt resource value: 0x7f08006c
2587 | public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131230828;
2588 |
2589 | // aapt resource value: 0x7f080021
2590 | public const int Base_Widget_AppCompat_EditText = 2131230753;
2591 |
2592 | // aapt resource value: 0x7f08006d
2593 | public const int Base_Widget_AppCompat_ImageButton = 2131230829;
2594 |
2595 | // aapt resource value: 0x7f0800b5
2596 | public const int Base_Widget_AppCompat_Light_ActionBar = 2131230901;
2597 |
2598 | // aapt resource value: 0x7f0800b6
2599 | public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131230902;
2600 |
2601 | // aapt resource value: 0x7f0800b7
2602 | public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131230903;
2603 |
2604 | // aapt resource value: 0x7f08006e
2605 | public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131230830;
2606 |
2607 | // aapt resource value: 0x7f08006f
2608 | public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131230831;
2609 |
2610 | // aapt resource value: 0x7f080070
2611 | public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131230832;
2612 |
2613 | // aapt resource value: 0x7f080071
2614 | public const int Base_Widget_AppCompat_Light_PopupMenu = 2131230833;
2615 |
2616 | // aapt resource value: 0x7f080072
2617 | public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131230834;
2618 |
2619 | // aapt resource value: 0x7f0800b8
2620 | public const int Base_Widget_AppCompat_ListMenuView = 2131230904;
2621 |
2622 | // aapt resource value: 0x7f080073
2623 | public const int Base_Widget_AppCompat_ListPopupWindow = 2131230835;
2624 |
2625 | // aapt resource value: 0x7f080074
2626 | public const int Base_Widget_AppCompat_ListView = 2131230836;
2627 |
2628 | // aapt resource value: 0x7f080075
2629 | public const int Base_Widget_AppCompat_ListView_DropDown = 2131230837;
2630 |
2631 | // aapt resource value: 0x7f080076
2632 | public const int Base_Widget_AppCompat_ListView_Menu = 2131230838;
2633 |
2634 | // aapt resource value: 0x7f080077
2635 | public const int Base_Widget_AppCompat_PopupMenu = 2131230839;
2636 |
2637 | // aapt resource value: 0x7f080078
2638 | public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131230840;
2639 |
2640 | // aapt resource value: 0x7f0800b9
2641 | public const int Base_Widget_AppCompat_PopupWindow = 2131230905;
2642 |
2643 | // aapt resource value: 0x7f080017
2644 | public const int Base_Widget_AppCompat_ProgressBar = 2131230743;
2645 |
2646 | // aapt resource value: 0x7f080018
2647 | public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131230744;
2648 |
2649 | // aapt resource value: 0x7f080079
2650 | public const int Base_Widget_AppCompat_RatingBar = 2131230841;
2651 |
2652 | // aapt resource value: 0x7f080088
2653 | public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131230856;
2654 |
2655 | // aapt resource value: 0x7f080089
2656 | public const int Base_Widget_AppCompat_RatingBar_Small = 2131230857;
2657 |
2658 | // aapt resource value: 0x7f0800ba
2659 | public const int Base_Widget_AppCompat_SearchView = 2131230906;
2660 |
2661 | // aapt resource value: 0x7f0800bb
2662 | public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131230907;
2663 |
2664 | // aapt resource value: 0x7f08007a
2665 | public const int Base_Widget_AppCompat_SeekBar = 2131230842;
2666 |
2667 | // aapt resource value: 0x7f0800bc
2668 | public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131230908;
2669 |
2670 | // aapt resource value: 0x7f08007b
2671 | public const int Base_Widget_AppCompat_Spinner = 2131230843;
2672 |
2673 | // aapt resource value: 0x7f080003
2674 | public const int Base_Widget_AppCompat_Spinner_Underlined = 2131230723;
2675 |
2676 | // aapt resource value: 0x7f08007c
2677 | public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131230844;
2678 |
2679 | // aapt resource value: 0x7f0800bd
2680 | public const int Base_Widget_AppCompat_Toolbar = 2131230909;
2681 |
2682 | // aapt resource value: 0x7f08007d
2683 | public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131230845;
2684 |
2685 | // aapt resource value: 0x7f080019
2686 | public const int Platform_AppCompat = 2131230745;
2687 |
2688 | // aapt resource value: 0x7f08001a
2689 | public const int Platform_AppCompat_Light = 2131230746;
2690 |
2691 | // aapt resource value: 0x7f08007e
2692 | public const int Platform_ThemeOverlay_AppCompat = 2131230846;
2693 |
2694 | // aapt resource value: 0x7f08007f
2695 | public const int Platform_ThemeOverlay_AppCompat_Dark = 2131230847;
2696 |
2697 | // aapt resource value: 0x7f080080
2698 | public const int Platform_ThemeOverlay_AppCompat_Light = 2131230848;
2699 |
2700 | // aapt resource value: 0x7f08001b
2701 | public const int Platform_V11_AppCompat = 2131230747;
2702 |
2703 | // aapt resource value: 0x7f08001c
2704 | public const int Platform_V11_AppCompat_Light = 2131230748;
2705 |
2706 | // aapt resource value: 0x7f080023
2707 | public const int Platform_V14_AppCompat = 2131230755;
2708 |
2709 | // aapt resource value: 0x7f080024
2710 | public const int Platform_V14_AppCompat_Light = 2131230756;
2711 |
2712 | // aapt resource value: 0x7f08001d
2713 | public const int Platform_Widget_AppCompat_Spinner = 2131230749;
2714 |
2715 | // aapt resource value: 0x7f08002a
2716 | public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131230762;
2717 |
2718 | // aapt resource value: 0x7f08002b
2719 | public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131230763;
2720 |
2721 | // aapt resource value: 0x7f08002c
2722 | public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131230764;
2723 |
2724 | // aapt resource value: 0x7f08002d
2725 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131230765;
2726 |
2727 | // aapt resource value: 0x7f08002e
2728 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131230766;
2729 |
2730 | // aapt resource value: 0x7f08002f
2731 | public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131230767;
2732 |
2733 | // aapt resource value: 0x7f080030
2734 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131230768;
2735 |
2736 | // aapt resource value: 0x7f080031
2737 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131230769;
2738 |
2739 | // aapt resource value: 0x7f080032
2740 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131230770;
2741 |
2742 | // aapt resource value: 0x7f080033
2743 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131230771;
2744 |
2745 | // aapt resource value: 0x7f080034
2746 | public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131230772;
2747 |
2748 | // aapt resource value: 0x7f080035
2749 | public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131230773;
2750 |
2751 | // aapt resource value: 0x7f080036
2752 | public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131230774;
2753 |
2754 | // aapt resource value: 0x7f080037
2755 | public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131230775;
2756 |
2757 | // aapt resource value: 0x7f0800be
2758 | public const int TextAppearance_AppCompat = 2131230910;
2759 |
2760 | // aapt resource value: 0x7f0800bf
2761 | public const int TextAppearance_AppCompat_Body1 = 2131230911;
2762 |
2763 | // aapt resource value: 0x7f0800c0
2764 | public const int TextAppearance_AppCompat_Body2 = 2131230912;
2765 |
2766 | // aapt resource value: 0x7f0800c1
2767 | public const int TextAppearance_AppCompat_Button = 2131230913;
2768 |
2769 | // aapt resource value: 0x7f0800c2
2770 | public const int TextAppearance_AppCompat_Caption = 2131230914;
2771 |
2772 | // aapt resource value: 0x7f0800c3
2773 | public const int TextAppearance_AppCompat_Display1 = 2131230915;
2774 |
2775 | // aapt resource value: 0x7f0800c4
2776 | public const int TextAppearance_AppCompat_Display2 = 2131230916;
2777 |
2778 | // aapt resource value: 0x7f0800c5
2779 | public const int TextAppearance_AppCompat_Display3 = 2131230917;
2780 |
2781 | // aapt resource value: 0x7f0800c6
2782 | public const int TextAppearance_AppCompat_Display4 = 2131230918;
2783 |
2784 | // aapt resource value: 0x7f0800c7
2785 | public const int TextAppearance_AppCompat_Headline = 2131230919;
2786 |
2787 | // aapt resource value: 0x7f0800c8
2788 | public const int TextAppearance_AppCompat_Inverse = 2131230920;
2789 |
2790 | // aapt resource value: 0x7f0800c9
2791 | public const int TextAppearance_AppCompat_Large = 2131230921;
2792 |
2793 | // aapt resource value: 0x7f0800ca
2794 | public const int TextAppearance_AppCompat_Large_Inverse = 2131230922;
2795 |
2796 | // aapt resource value: 0x7f0800cb
2797 | public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131230923;
2798 |
2799 | // aapt resource value: 0x7f0800cc
2800 | public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131230924;
2801 |
2802 | // aapt resource value: 0x7f0800cd
2803 | public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131230925;
2804 |
2805 | // aapt resource value: 0x7f0800ce
2806 | public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131230926;
2807 |
2808 | // aapt resource value: 0x7f0800cf
2809 | public const int TextAppearance_AppCompat_Medium = 2131230927;
2810 |
2811 | // aapt resource value: 0x7f0800d0
2812 | public const int TextAppearance_AppCompat_Medium_Inverse = 2131230928;
2813 |
2814 | // aapt resource value: 0x7f0800d1
2815 | public const int TextAppearance_AppCompat_Menu = 2131230929;
2816 |
2817 | // aapt resource value: 0x7f0800d2
2818 | public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131230930;
2819 |
2820 | // aapt resource value: 0x7f0800d3
2821 | public const int TextAppearance_AppCompat_SearchResult_Title = 2131230931;
2822 |
2823 | // aapt resource value: 0x7f0800d4
2824 | public const int TextAppearance_AppCompat_Small = 2131230932;
2825 |
2826 | // aapt resource value: 0x7f0800d5
2827 | public const int TextAppearance_AppCompat_Small_Inverse = 2131230933;
2828 |
2829 | // aapt resource value: 0x7f0800d6
2830 | public const int TextAppearance_AppCompat_Subhead = 2131230934;
2831 |
2832 | // aapt resource value: 0x7f0800d7
2833 | public const int TextAppearance_AppCompat_Subhead_Inverse = 2131230935;
2834 |
2835 | // aapt resource value: 0x7f0800d8
2836 | public const int TextAppearance_AppCompat_Title = 2131230936;
2837 |
2838 | // aapt resource value: 0x7f0800d9
2839 | public const int TextAppearance_AppCompat_Title_Inverse = 2131230937;
2840 |
2841 | // aapt resource value: 0x7f0800da
2842 | public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131230938;
2843 |
2844 | // aapt resource value: 0x7f0800db
2845 | public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131230939;
2846 |
2847 | // aapt resource value: 0x7f0800dc
2848 | public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131230940;
2849 |
2850 | // aapt resource value: 0x7f0800dd
2851 | public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131230941;
2852 |
2853 | // aapt resource value: 0x7f0800de
2854 | public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131230942;
2855 |
2856 | // aapt resource value: 0x7f0800df
2857 | public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131230943;
2858 |
2859 | // aapt resource value: 0x7f0800e0
2860 | public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131230944;
2861 |
2862 | // aapt resource value: 0x7f0800e1
2863 | public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131230945;
2864 |
2865 | // aapt resource value: 0x7f0800e2
2866 | public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131230946;
2867 |
2868 | // aapt resource value: 0x7f0800e3
2869 | public const int TextAppearance_AppCompat_Widget_Button = 2131230947;
2870 |
2871 | // aapt resource value: 0x7f0800e4
2872 | public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131230948;
2873 |
2874 | // aapt resource value: 0x7f0800e5
2875 | public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131230949;
2876 |
2877 | // aapt resource value: 0x7f0800e6
2878 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131230950;
2879 |
2880 | // aapt resource value: 0x7f0800e7
2881 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131230951;
2882 |
2883 | // aapt resource value: 0x7f0800e8
2884 | public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131230952;
2885 |
2886 | // aapt resource value: 0x7f0800e9
2887 | public const int TextAppearance_AppCompat_Widget_Switch = 2131230953;
2888 |
2889 | // aapt resource value: 0x7f0800ea
2890 | public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131230954;
2891 |
2892 | // aapt resource value: 0x7f080025
2893 | public const int TextAppearance_StatusBar_EventContent = 2131230757;
2894 |
2895 | // aapt resource value: 0x7f080026
2896 | public const int TextAppearance_StatusBar_EventContent_Info = 2131230758;
2897 |
2898 | // aapt resource value: 0x7f080027
2899 | public const int TextAppearance_StatusBar_EventContent_Line2 = 2131230759;
2900 |
2901 | // aapt resource value: 0x7f080028
2902 | public const int TextAppearance_StatusBar_EventContent_Time = 2131230760;
2903 |
2904 | // aapt resource value: 0x7f080029
2905 | public const int TextAppearance_StatusBar_EventContent_Title = 2131230761;
2906 |
2907 | // aapt resource value: 0x7f0800eb
2908 | public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131230955;
2909 |
2910 | // aapt resource value: 0x7f0800ec
2911 | public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131230956;
2912 |
2913 | // aapt resource value: 0x7f0800ed
2914 | public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131230957;
2915 |
2916 | // aapt resource value: 0x7f0800ee
2917 | public const int Theme_AppCompat = 2131230958;
2918 |
2919 | // aapt resource value: 0x7f0800ef
2920 | public const int Theme_AppCompat_CompactMenu = 2131230959;
2921 |
2922 | // aapt resource value: 0x7f080004
2923 | public const int Theme_AppCompat_DayNight = 2131230724;
2924 |
2925 | // aapt resource value: 0x7f080005
2926 | public const int Theme_AppCompat_DayNight_DarkActionBar = 2131230725;
2927 |
2928 | // aapt resource value: 0x7f080006
2929 | public const int Theme_AppCompat_DayNight_Dialog = 2131230726;
2930 |
2931 | // aapt resource value: 0x7f080007
2932 | public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131230727;
2933 |
2934 | // aapt resource value: 0x7f080008
2935 | public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131230728;
2936 |
2937 | // aapt resource value: 0x7f080009
2938 | public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131230729;
2939 |
2940 | // aapt resource value: 0x7f08000a
2941 | public const int Theme_AppCompat_DayNight_NoActionBar = 2131230730;
2942 |
2943 | // aapt resource value: 0x7f0800f0
2944 | public const int Theme_AppCompat_Dialog = 2131230960;
2945 |
2946 | // aapt resource value: 0x7f0800f1
2947 | public const int Theme_AppCompat_Dialog_Alert = 2131230961;
2948 |
2949 | // aapt resource value: 0x7f0800f2
2950 | public const int Theme_AppCompat_Dialog_MinWidth = 2131230962;
2951 |
2952 | // aapt resource value: 0x7f0800f3
2953 | public const int Theme_AppCompat_DialogWhenLarge = 2131230963;
2954 |
2955 | // aapt resource value: 0x7f0800f4
2956 | public const int Theme_AppCompat_Light = 2131230964;
2957 |
2958 | // aapt resource value: 0x7f0800f5
2959 | public const int Theme_AppCompat_Light_DarkActionBar = 2131230965;
2960 |
2961 | // aapt resource value: 0x7f0800f6
2962 | public const int Theme_AppCompat_Light_Dialog = 2131230966;
2963 |
2964 | // aapt resource value: 0x7f0800f7
2965 | public const int Theme_AppCompat_Light_Dialog_Alert = 2131230967;
2966 |
2967 | // aapt resource value: 0x7f0800f8
2968 | public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131230968;
2969 |
2970 | // aapt resource value: 0x7f0800f9
2971 | public const int Theme_AppCompat_Light_DialogWhenLarge = 2131230969;
2972 |
2973 | // aapt resource value: 0x7f0800fa
2974 | public const int Theme_AppCompat_Light_NoActionBar = 2131230970;
2975 |
2976 | // aapt resource value: 0x7f0800fb
2977 | public const int Theme_AppCompat_NoActionBar = 2131230971;
2978 |
2979 | // aapt resource value: 0x7f0800fc
2980 | public const int ThemeOverlay_AppCompat = 2131230972;
2981 |
2982 | // aapt resource value: 0x7f0800fd
2983 | public const int ThemeOverlay_AppCompat_ActionBar = 2131230973;
2984 |
2985 | // aapt resource value: 0x7f0800fe
2986 | public const int ThemeOverlay_AppCompat_Dark = 2131230974;
2987 |
2988 | // aapt resource value: 0x7f0800ff
2989 | public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131230975;
2990 |
2991 | // aapt resource value: 0x7f080100
2992 | public const int ThemeOverlay_AppCompat_Dialog = 2131230976;
2993 |
2994 | // aapt resource value: 0x7f080101
2995 | public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131230977;
2996 |
2997 | // aapt resource value: 0x7f080102
2998 | public const int ThemeOverlay_AppCompat_Light = 2131230978;
2999 |
3000 | // aapt resource value: 0x7f080103
3001 | public const int Widget_AppCompat_ActionBar = 2131230979;
3002 |
3003 | // aapt resource value: 0x7f080104
3004 | public const int Widget_AppCompat_ActionBar_Solid = 2131230980;
3005 |
3006 | // aapt resource value: 0x7f080105
3007 | public const int Widget_AppCompat_ActionBar_TabBar = 2131230981;
3008 |
3009 | // aapt resource value: 0x7f080106
3010 | public const int Widget_AppCompat_ActionBar_TabText = 2131230982;
3011 |
3012 | // aapt resource value: 0x7f080107
3013 | public const int Widget_AppCompat_ActionBar_TabView = 2131230983;
3014 |
3015 | // aapt resource value: 0x7f080108
3016 | public const int Widget_AppCompat_ActionButton = 2131230984;
3017 |
3018 | // aapt resource value: 0x7f080109
3019 | public const int Widget_AppCompat_ActionButton_CloseMode = 2131230985;
3020 |
3021 | // aapt resource value: 0x7f08010a
3022 | public const int Widget_AppCompat_ActionButton_Overflow = 2131230986;
3023 |
3024 | // aapt resource value: 0x7f08010b
3025 | public const int Widget_AppCompat_ActionMode = 2131230987;
3026 |
3027 | // aapt resource value: 0x7f08010c
3028 | public const int Widget_AppCompat_ActivityChooserView = 2131230988;
3029 |
3030 | // aapt resource value: 0x7f08010d
3031 | public const int Widget_AppCompat_AutoCompleteTextView = 2131230989;
3032 |
3033 | // aapt resource value: 0x7f08010e
3034 | public const int Widget_AppCompat_Button = 2131230990;
3035 |
3036 | // aapt resource value: 0x7f08010f
3037 | public const int Widget_AppCompat_Button_Borderless = 2131230991;
3038 |
3039 | // aapt resource value: 0x7f080110
3040 | public const int Widget_AppCompat_Button_Borderless_Colored = 2131230992;
3041 |
3042 | // aapt resource value: 0x7f080111
3043 | public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131230993;
3044 |
3045 | // aapt resource value: 0x7f080112
3046 | public const int Widget_AppCompat_Button_Colored = 2131230994;
3047 |
3048 | // aapt resource value: 0x7f080113
3049 | public const int Widget_AppCompat_Button_Small = 2131230995;
3050 |
3051 | // aapt resource value: 0x7f080114
3052 | public const int Widget_AppCompat_ButtonBar = 2131230996;
3053 |
3054 | // aapt resource value: 0x7f080115
3055 | public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131230997;
3056 |
3057 | // aapt resource value: 0x7f080116
3058 | public const int Widget_AppCompat_CompoundButton_CheckBox = 2131230998;
3059 |
3060 | // aapt resource value: 0x7f080117
3061 | public const int Widget_AppCompat_CompoundButton_RadioButton = 2131230999;
3062 |
3063 | // aapt resource value: 0x7f080118
3064 | public const int Widget_AppCompat_CompoundButton_Switch = 2131231000;
3065 |
3066 | // aapt resource value: 0x7f080119
3067 | public const int Widget_AppCompat_DrawerArrowToggle = 2131231001;
3068 |
3069 | // aapt resource value: 0x7f08011a
3070 | public const int Widget_AppCompat_DropDownItem_Spinner = 2131231002;
3071 |
3072 | // aapt resource value: 0x7f08011b
3073 | public const int Widget_AppCompat_EditText = 2131231003;
3074 |
3075 | // aapt resource value: 0x7f08011c
3076 | public const int Widget_AppCompat_ImageButton = 2131231004;
3077 |
3078 | // aapt resource value: 0x7f08011d
3079 | public const int Widget_AppCompat_Light_ActionBar = 2131231005;
3080 |
3081 | // aapt resource value: 0x7f08011e
3082 | public const int Widget_AppCompat_Light_ActionBar_Solid = 2131231006;
3083 |
3084 | // aapt resource value: 0x7f08011f
3085 | public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131231007;
3086 |
3087 | // aapt resource value: 0x7f080120
3088 | public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131231008;
3089 |
3090 | // aapt resource value: 0x7f080121
3091 | public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131231009;
3092 |
3093 | // aapt resource value: 0x7f080122
3094 | public const int Widget_AppCompat_Light_ActionBar_TabText = 2131231010;
3095 |
3096 | // aapt resource value: 0x7f080123
3097 | public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131231011;
3098 |
3099 | // aapt resource value: 0x7f080124
3100 | public const int Widget_AppCompat_Light_ActionBar_TabView = 2131231012;
3101 |
3102 | // aapt resource value: 0x7f080125
3103 | public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131231013;
3104 |
3105 | // aapt resource value: 0x7f080126
3106 | public const int Widget_AppCompat_Light_ActionButton = 2131231014;
3107 |
3108 | // aapt resource value: 0x7f080127
3109 | public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131231015;
3110 |
3111 | // aapt resource value: 0x7f080128
3112 | public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131231016;
3113 |
3114 | // aapt resource value: 0x7f080129
3115 | public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131231017;
3116 |
3117 | // aapt resource value: 0x7f08012a
3118 | public const int Widget_AppCompat_Light_ActivityChooserView = 2131231018;
3119 |
3120 | // aapt resource value: 0x7f08012b
3121 | public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131231019;
3122 |
3123 | // aapt resource value: 0x7f08012c
3124 | public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131231020;
3125 |
3126 | // aapt resource value: 0x7f08012d
3127 | public const int Widget_AppCompat_Light_ListPopupWindow = 2131231021;
3128 |
3129 | // aapt resource value: 0x7f08012e
3130 | public const int Widget_AppCompat_Light_ListView_DropDown = 2131231022;
3131 |
3132 | // aapt resource value: 0x7f08012f
3133 | public const int Widget_AppCompat_Light_PopupMenu = 2131231023;
3134 |
3135 | // aapt resource value: 0x7f080130
3136 | public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131231024;
3137 |
3138 | // aapt resource value: 0x7f080131
3139 | public const int Widget_AppCompat_Light_SearchView = 2131231025;
3140 |
3141 | // aapt resource value: 0x7f080132
3142 | public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131231026;
3143 |
3144 | // aapt resource value: 0x7f080133
3145 | public const int Widget_AppCompat_ListMenuView = 2131231027;
3146 |
3147 | // aapt resource value: 0x7f080134
3148 | public const int Widget_AppCompat_ListPopupWindow = 2131231028;
3149 |
3150 | // aapt resource value: 0x7f080135
3151 | public const int Widget_AppCompat_ListView = 2131231029;
3152 |
3153 | // aapt resource value: 0x7f080136
3154 | public const int Widget_AppCompat_ListView_DropDown = 2131231030;
3155 |
3156 | // aapt resource value: 0x7f080137
3157 | public const int Widget_AppCompat_ListView_Menu = 2131231031;
3158 |
3159 | // aapt resource value: 0x7f080138
3160 | public const int Widget_AppCompat_PopupMenu = 2131231032;
3161 |
3162 | // aapt resource value: 0x7f080139
3163 | public const int Widget_AppCompat_PopupMenu_Overflow = 2131231033;
3164 |
3165 | // aapt resource value: 0x7f08013a
3166 | public const int Widget_AppCompat_PopupWindow = 2131231034;
3167 |
3168 | // aapt resource value: 0x7f08013b
3169 | public const int Widget_AppCompat_ProgressBar = 2131231035;
3170 |
3171 | // aapt resource value: 0x7f08013c
3172 | public const int Widget_AppCompat_ProgressBar_Horizontal = 2131231036;
3173 |
3174 | // aapt resource value: 0x7f08013d
3175 | public const int Widget_AppCompat_RatingBar = 2131231037;
3176 |
3177 | // aapt resource value: 0x7f08013e
3178 | public const int Widget_AppCompat_RatingBar_Indicator = 2131231038;
3179 |
3180 | // aapt resource value: 0x7f08013f
3181 | public const int Widget_AppCompat_RatingBar_Small = 2131231039;
3182 |
3183 | // aapt resource value: 0x7f080140
3184 | public const int Widget_AppCompat_SearchView = 2131231040;
3185 |
3186 | // aapt resource value: 0x7f080141
3187 | public const int Widget_AppCompat_SearchView_ActionBar = 2131231041;
3188 |
3189 | // aapt resource value: 0x7f080142
3190 | public const int Widget_AppCompat_SeekBar = 2131231042;
3191 |
3192 | // aapt resource value: 0x7f080143
3193 | public const int Widget_AppCompat_SeekBar_Discrete = 2131231043;
3194 |
3195 | // aapt resource value: 0x7f080144
3196 | public const int Widget_AppCompat_Spinner = 2131231044;
3197 |
3198 | // aapt resource value: 0x7f080145
3199 | public const int Widget_AppCompat_Spinner_DropDown = 2131231045;
3200 |
3201 | // aapt resource value: 0x7f080146
3202 | public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131231046;
3203 |
3204 | // aapt resource value: 0x7f080147
3205 | public const int Widget_AppCompat_Spinner_Underlined = 2131231047;
3206 |
3207 | // aapt resource value: 0x7f080148
3208 | public const int Widget_AppCompat_TextView_SpinnerItem = 2131231048;
3209 |
3210 | // aapt resource value: 0x7f080149
3211 | public const int Widget_AppCompat_Toolbar = 2131231049;
3212 |
3213 | // aapt resource value: 0x7f08014a
3214 | public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131231050;
3215 |
3216 | static Style()
3217 | {
3218 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
3219 | }
3220 |
3221 | private Style()
3222 | {
3223 | }
3224 | }
3225 |
3226 | public partial class Styleable
3227 | {
3228 |
3229 | public static int[] ActionBar = new int[]
3230 | {
3231 | 2130771969,
3232 | 2130771971,
3233 | 2130771972,
3234 | 2130771973,
3235 | 2130771974,
3236 | 2130771975,
3237 | 2130771976,
3238 | 2130771977,
3239 | 2130771978,
3240 | 2130771979,
3241 | 2130771980,
3242 | 2130771981,
3243 | 2130771982,
3244 | 2130771983,
3245 | 2130771984,
3246 | 2130771985,
3247 | 2130771986,
3248 | 2130771987,
3249 | 2130771988,
3250 | 2130771989,
3251 | 2130771990,
3252 | 2130771991,
3253 | 2130771992,
3254 | 2130771993,
3255 | 2130771994,
3256 | 2130771995,
3257 | 2130771996,
3258 | 2130771997,
3259 | 2130772058};
3260 |
3261 | // aapt resource value: 10
3262 | public const int ActionBar_background = 10;
3263 |
3264 | // aapt resource value: 12
3265 | public const int ActionBar_backgroundSplit = 12;
3266 |
3267 | // aapt resource value: 11
3268 | public const int ActionBar_backgroundStacked = 11;
3269 |
3270 | // aapt resource value: 21
3271 | public const int ActionBar_contentInsetEnd = 21;
3272 |
3273 | // aapt resource value: 25
3274 | public const int ActionBar_contentInsetEndWithActions = 25;
3275 |
3276 | // aapt resource value: 22
3277 | public const int ActionBar_contentInsetLeft = 22;
3278 |
3279 | // aapt resource value: 23
3280 | public const int ActionBar_contentInsetRight = 23;
3281 |
3282 | // aapt resource value: 20
3283 | public const int ActionBar_contentInsetStart = 20;
3284 |
3285 | // aapt resource value: 24
3286 | public const int ActionBar_contentInsetStartWithNavigation = 24;
3287 |
3288 | // aapt resource value: 13
3289 | public const int ActionBar_customNavigationLayout = 13;
3290 |
3291 | // aapt resource value: 3
3292 | public const int ActionBar_displayOptions = 3;
3293 |
3294 | // aapt resource value: 9
3295 | public const int ActionBar_divider = 9;
3296 |
3297 | // aapt resource value: 26
3298 | public const int ActionBar_elevation = 26;
3299 |
3300 | // aapt resource value: 0
3301 | public const int ActionBar_height = 0;
3302 |
3303 | // aapt resource value: 19
3304 | public const int ActionBar_hideOnContentScroll = 19;
3305 |
3306 | // aapt resource value: 28
3307 | public const int ActionBar_homeAsUpIndicator = 28;
3308 |
3309 | // aapt resource value: 14
3310 | public const int ActionBar_homeLayout = 14;
3311 |
3312 | // aapt resource value: 7
3313 | public const int ActionBar_icon = 7;
3314 |
3315 | // aapt resource value: 16
3316 | public const int ActionBar_indeterminateProgressStyle = 16;
3317 |
3318 | // aapt resource value: 18
3319 | public const int ActionBar_itemPadding = 18;
3320 |
3321 | // aapt resource value: 8
3322 | public const int ActionBar_logo = 8;
3323 |
3324 | // aapt resource value: 2
3325 | public const int ActionBar_navigationMode = 2;
3326 |
3327 | // aapt resource value: 27
3328 | public const int ActionBar_popupTheme = 27;
3329 |
3330 | // aapt resource value: 17
3331 | public const int ActionBar_progressBarPadding = 17;
3332 |
3333 | // aapt resource value: 15
3334 | public const int ActionBar_progressBarStyle = 15;
3335 |
3336 | // aapt resource value: 4
3337 | public const int ActionBar_subtitle = 4;
3338 |
3339 | // aapt resource value: 6
3340 | public const int ActionBar_subtitleTextStyle = 6;
3341 |
3342 | // aapt resource value: 1
3343 | public const int ActionBar_title = 1;
3344 |
3345 | // aapt resource value: 5
3346 | public const int ActionBar_titleTextStyle = 5;
3347 |
3348 | public static int[] ActionBarLayout = new int[]
3349 | {
3350 | 16842931};
3351 |
3352 | // aapt resource value: 0
3353 | public const int ActionBarLayout_android_layout_gravity = 0;
3354 |
3355 | public static int[] ActionMenuItemView = new int[]
3356 | {
3357 | 16843071};
3358 |
3359 | // aapt resource value: 0
3360 | public const int ActionMenuItemView_android_minWidth = 0;
3361 |
3362 | public static int[] ActionMenuView;
3363 |
3364 | public static int[] ActionMode = new int[]
3365 | {
3366 | 2130771969,
3367 | 2130771975,
3368 | 2130771976,
3369 | 2130771980,
3370 | 2130771982,
3371 | 2130771998};
3372 |
3373 | // aapt resource value: 3
3374 | public const int ActionMode_background = 3;
3375 |
3376 | // aapt resource value: 4
3377 | public const int ActionMode_backgroundSplit = 4;
3378 |
3379 | // aapt resource value: 5
3380 | public const int ActionMode_closeItemLayout = 5;
3381 |
3382 | // aapt resource value: 0
3383 | public const int ActionMode_height = 0;
3384 |
3385 | // aapt resource value: 2
3386 | public const int ActionMode_subtitleTextStyle = 2;
3387 |
3388 | // aapt resource value: 1
3389 | public const int ActionMode_titleTextStyle = 1;
3390 |
3391 | public static int[] ActivityChooserView = new int[]
3392 | {
3393 | 2130771999,
3394 | 2130772000};
3395 |
3396 | // aapt resource value: 1
3397 | public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
3398 |
3399 | // aapt resource value: 0
3400 | public const int ActivityChooserView_initialActivityCount = 0;
3401 |
3402 | public static int[] AlertDialog = new int[]
3403 | {
3404 | 16842994,
3405 | 2130772001,
3406 | 2130772002,
3407 | 2130772003,
3408 | 2130772004,
3409 | 2130772005};
3410 |
3411 | // aapt resource value: 0
3412 | public const int AlertDialog_android_layout = 0;
3413 |
3414 | // aapt resource value: 1
3415 | public const int AlertDialog_buttonPanelSideLayout = 1;
3416 |
3417 | // aapt resource value: 5
3418 | public const int AlertDialog_listItemLayout = 5;
3419 |
3420 | // aapt resource value: 2
3421 | public const int AlertDialog_listLayout = 2;
3422 |
3423 | // aapt resource value: 3
3424 | public const int AlertDialog_multiChoiceItemLayout = 3;
3425 |
3426 | // aapt resource value: 4
3427 | public const int AlertDialog_singleChoiceItemLayout = 4;
3428 |
3429 | public static int[] AppCompatImageView = new int[]
3430 | {
3431 | 16843033,
3432 | 2130772006};
3433 |
3434 | // aapt resource value: 0
3435 | public const int AppCompatImageView_android_src = 0;
3436 |
3437 | // aapt resource value: 1
3438 | public const int AppCompatImageView_srcCompat = 1;
3439 |
3440 | public static int[] AppCompatSeekBar = new int[]
3441 | {
3442 | 16843074,
3443 | 2130772007,
3444 | 2130772008,
3445 | 2130772009};
3446 |
3447 | // aapt resource value: 0
3448 | public const int AppCompatSeekBar_android_thumb = 0;
3449 |
3450 | // aapt resource value: 1
3451 | public const int AppCompatSeekBar_tickMark = 1;
3452 |
3453 | // aapt resource value: 2
3454 | public const int AppCompatSeekBar_tickMarkTint = 2;
3455 |
3456 | // aapt resource value: 3
3457 | public const int AppCompatSeekBar_tickMarkTintMode = 3;
3458 |
3459 | public static int[] AppCompatTextHelper = new int[]
3460 | {
3461 | 16842804,
3462 | 16843117,
3463 | 16843118,
3464 | 16843119,
3465 | 16843120,
3466 | 16843666,
3467 | 16843667};
3468 |
3469 | // aapt resource value: 2
3470 | public const int AppCompatTextHelper_android_drawableBottom = 2;
3471 |
3472 | // aapt resource value: 6
3473 | public const int AppCompatTextHelper_android_drawableEnd = 6;
3474 |
3475 | // aapt resource value: 3
3476 | public const int AppCompatTextHelper_android_drawableLeft = 3;
3477 |
3478 | // aapt resource value: 4
3479 | public const int AppCompatTextHelper_android_drawableRight = 4;
3480 |
3481 | // aapt resource value: 5
3482 | public const int AppCompatTextHelper_android_drawableStart = 5;
3483 |
3484 | // aapt resource value: 1
3485 | public const int AppCompatTextHelper_android_drawableTop = 1;
3486 |
3487 | // aapt resource value: 0
3488 | public const int AppCompatTextHelper_android_textAppearance = 0;
3489 |
3490 | public static int[] AppCompatTextView = new int[]
3491 | {
3492 | 16842804,
3493 | 2130772010};
3494 |
3495 | // aapt resource value: 0
3496 | public const int AppCompatTextView_android_textAppearance = 0;
3497 |
3498 | // aapt resource value: 1
3499 | public const int AppCompatTextView_textAllCaps = 1;
3500 |
3501 | public static int[] AppCompatTheme = new int[]
3502 | {
3503 | 16842839,
3504 | 16842926,
3505 | 2130772011,
3506 | 2130772012,
3507 | 2130772013,
3508 | 2130772014,
3509 | 2130772015,
3510 | 2130772016,
3511 | 2130772017,
3512 | 2130772018,
3513 | 2130772019,
3514 | 2130772020,
3515 | 2130772021,
3516 | 2130772022,
3517 | 2130772023,
3518 | 2130772024,
3519 | 2130772025,
3520 | 2130772026,
3521 | 2130772027,
3522 | 2130772028,
3523 | 2130772029,
3524 | 2130772030,
3525 | 2130772031,
3526 | 2130772032,
3527 | 2130772033,
3528 | 2130772034,
3529 | 2130772035,
3530 | 2130772036,
3531 | 2130772037,
3532 | 2130772038,
3533 | 2130772039,
3534 | 2130772040,
3535 | 2130772041,
3536 | 2130772042,
3537 | 2130772043,
3538 | 2130772044,
3539 | 2130772045,
3540 | 2130772046,
3541 | 2130772047,
3542 | 2130772048,
3543 | 2130772049,
3544 | 2130772050,
3545 | 2130772051,
3546 | 2130772052,
3547 | 2130772053,
3548 | 2130772054,
3549 | 2130772055,
3550 | 2130772056,
3551 | 2130772057,
3552 | 2130772058,
3553 | 2130772059,
3554 | 2130772060,
3555 | 2130772061,
3556 | 2130772062,
3557 | 2130772063,
3558 | 2130772064,
3559 | 2130772065,
3560 | 2130772066,
3561 | 2130772067,
3562 | 2130772068,
3563 | 2130772069,
3564 | 2130772070,
3565 | 2130772071,
3566 | 2130772072,
3567 | 2130772073,
3568 | 2130772074,
3569 | 2130772075,
3570 | 2130772076,
3571 | 2130772077,
3572 | 2130772078,
3573 | 2130772079,
3574 | 2130772080,
3575 | 2130772081,
3576 | 2130772082,
3577 | 2130772083,
3578 | 2130772084,
3579 | 2130772085,
3580 | 2130772086,
3581 | 2130772087,
3582 | 2130772088,
3583 | 2130772089,
3584 | 2130772090,
3585 | 2130772091,
3586 | 2130772092,
3587 | 2130772093,
3588 | 2130772094,
3589 | 2130772095,
3590 | 2130772096,
3591 | 2130772097,
3592 | 2130772098,
3593 | 2130772099,
3594 | 2130772100,
3595 | 2130772101,
3596 | 2130772102,
3597 | 2130772103,
3598 | 2130772104,
3599 | 2130772105,
3600 | 2130772106,
3601 | 2130772107,
3602 | 2130772108,
3603 | 2130772109,
3604 | 2130772110,
3605 | 2130772111,
3606 | 2130772112,
3607 | 2130772113,
3608 | 2130772114,
3609 | 2130772115,
3610 | 2130772116,
3611 | 2130772117,
3612 | 2130772118,
3613 | 2130772119,
3614 | 2130772120,
3615 | 2130772121,
3616 | 2130772122,
3617 | 2130772123};
3618 |
3619 | // aapt resource value: 23
3620 | public const int AppCompatTheme_actionBarDivider = 23;
3621 |
3622 | // aapt resource value: 24
3623 | public const int AppCompatTheme_actionBarItemBackground = 24;
3624 |
3625 | // aapt resource value: 17
3626 | public const int AppCompatTheme_actionBarPopupTheme = 17;
3627 |
3628 | // aapt resource value: 22
3629 | public const int AppCompatTheme_actionBarSize = 22;
3630 |
3631 | // aapt resource value: 19
3632 | public const int AppCompatTheme_actionBarSplitStyle = 19;
3633 |
3634 | // aapt resource value: 18
3635 | public const int AppCompatTheme_actionBarStyle = 18;
3636 |
3637 | // aapt resource value: 13
3638 | public const int AppCompatTheme_actionBarTabBarStyle = 13;
3639 |
3640 | // aapt resource value: 12
3641 | public const int AppCompatTheme_actionBarTabStyle = 12;
3642 |
3643 | // aapt resource value: 14
3644 | public const int AppCompatTheme_actionBarTabTextStyle = 14;
3645 |
3646 | // aapt resource value: 20
3647 | public const int AppCompatTheme_actionBarTheme = 20;
3648 |
3649 | // aapt resource value: 21
3650 | public const int AppCompatTheme_actionBarWidgetTheme = 21;
3651 |
3652 | // aapt resource value: 50
3653 | public const int AppCompatTheme_actionButtonStyle = 50;
3654 |
3655 | // aapt resource value: 46
3656 | public const int AppCompatTheme_actionDropDownStyle = 46;
3657 |
3658 | // aapt resource value: 25
3659 | public const int AppCompatTheme_actionMenuTextAppearance = 25;
3660 |
3661 | // aapt resource value: 26
3662 | public const int AppCompatTheme_actionMenuTextColor = 26;
3663 |
3664 | // aapt resource value: 29
3665 | public const int AppCompatTheme_actionModeBackground = 29;
3666 |
3667 | // aapt resource value: 28
3668 | public const int AppCompatTheme_actionModeCloseButtonStyle = 28;
3669 |
3670 | // aapt resource value: 31
3671 | public const int AppCompatTheme_actionModeCloseDrawable = 31;
3672 |
3673 | // aapt resource value: 33
3674 | public const int AppCompatTheme_actionModeCopyDrawable = 33;
3675 |
3676 | // aapt resource value: 32
3677 | public const int AppCompatTheme_actionModeCutDrawable = 32;
3678 |
3679 | // aapt resource value: 37
3680 | public const int AppCompatTheme_actionModeFindDrawable = 37;
3681 |
3682 | // aapt resource value: 34
3683 | public const int AppCompatTheme_actionModePasteDrawable = 34;
3684 |
3685 | // aapt resource value: 39
3686 | public const int AppCompatTheme_actionModePopupWindowStyle = 39;
3687 |
3688 | // aapt resource value: 35
3689 | public const int AppCompatTheme_actionModeSelectAllDrawable = 35;
3690 |
3691 | // aapt resource value: 36
3692 | public const int AppCompatTheme_actionModeShareDrawable = 36;
3693 |
3694 | // aapt resource value: 30
3695 | public const int AppCompatTheme_actionModeSplitBackground = 30;
3696 |
3697 | // aapt resource value: 27
3698 | public const int AppCompatTheme_actionModeStyle = 27;
3699 |
3700 | // aapt resource value: 38
3701 | public const int AppCompatTheme_actionModeWebSearchDrawable = 38;
3702 |
3703 | // aapt resource value: 15
3704 | public const int AppCompatTheme_actionOverflowButtonStyle = 15;
3705 |
3706 | // aapt resource value: 16
3707 | public const int AppCompatTheme_actionOverflowMenuStyle = 16;
3708 |
3709 | // aapt resource value: 58
3710 | public const int AppCompatTheme_activityChooserViewStyle = 58;
3711 |
3712 | // aapt resource value: 94
3713 | public const int AppCompatTheme_alertDialogButtonGroupStyle = 94;
3714 |
3715 | // aapt resource value: 95
3716 | public const int AppCompatTheme_alertDialogCenterButtons = 95;
3717 |
3718 | // aapt resource value: 93
3719 | public const int AppCompatTheme_alertDialogStyle = 93;
3720 |
3721 | // aapt resource value: 96
3722 | public const int AppCompatTheme_alertDialogTheme = 96;
3723 |
3724 | // aapt resource value: 1
3725 | public const int AppCompatTheme_android_windowAnimationStyle = 1;
3726 |
3727 | // aapt resource value: 0
3728 | public const int AppCompatTheme_android_windowIsFloating = 0;
3729 |
3730 | // aapt resource value: 101
3731 | public const int AppCompatTheme_autoCompleteTextViewStyle = 101;
3732 |
3733 | // aapt resource value: 55
3734 | public const int AppCompatTheme_borderlessButtonStyle = 55;
3735 |
3736 | // aapt resource value: 52
3737 | public const int AppCompatTheme_buttonBarButtonStyle = 52;
3738 |
3739 | // aapt resource value: 99
3740 | public const int AppCompatTheme_buttonBarNegativeButtonStyle = 99;
3741 |
3742 | // aapt resource value: 100
3743 | public const int AppCompatTheme_buttonBarNeutralButtonStyle = 100;
3744 |
3745 | // aapt resource value: 98
3746 | public const int AppCompatTheme_buttonBarPositiveButtonStyle = 98;
3747 |
3748 | // aapt resource value: 51
3749 | public const int AppCompatTheme_buttonBarStyle = 51;
3750 |
3751 | // aapt resource value: 102
3752 | public const int AppCompatTheme_buttonStyle = 102;
3753 |
3754 | // aapt resource value: 103
3755 | public const int AppCompatTheme_buttonStyleSmall = 103;
3756 |
3757 | // aapt resource value: 104
3758 | public const int AppCompatTheme_checkboxStyle = 104;
3759 |
3760 | // aapt resource value: 105
3761 | public const int AppCompatTheme_checkedTextViewStyle = 105;
3762 |
3763 | // aapt resource value: 85
3764 | public const int AppCompatTheme_colorAccent = 85;
3765 |
3766 | // aapt resource value: 92
3767 | public const int AppCompatTheme_colorBackgroundFloating = 92;
3768 |
3769 | // aapt resource value: 89
3770 | public const int AppCompatTheme_colorButtonNormal = 89;
3771 |
3772 | // aapt resource value: 87
3773 | public const int AppCompatTheme_colorControlActivated = 87;
3774 |
3775 | // aapt resource value: 88
3776 | public const int AppCompatTheme_colorControlHighlight = 88;
3777 |
3778 | // aapt resource value: 86
3779 | public const int AppCompatTheme_colorControlNormal = 86;
3780 |
3781 | // aapt resource value: 83
3782 | public const int AppCompatTheme_colorPrimary = 83;
3783 |
3784 | // aapt resource value: 84
3785 | public const int AppCompatTheme_colorPrimaryDark = 84;
3786 |
3787 | // aapt resource value: 90
3788 | public const int AppCompatTheme_colorSwitchThumbNormal = 90;
3789 |
3790 | // aapt resource value: 91
3791 | public const int AppCompatTheme_controlBackground = 91;
3792 |
3793 | // aapt resource value: 44
3794 | public const int AppCompatTheme_dialogPreferredPadding = 44;
3795 |
3796 | // aapt resource value: 43
3797 | public const int AppCompatTheme_dialogTheme = 43;
3798 |
3799 | // aapt resource value: 57
3800 | public const int AppCompatTheme_dividerHorizontal = 57;
3801 |
3802 | // aapt resource value: 56
3803 | public const int AppCompatTheme_dividerVertical = 56;
3804 |
3805 | // aapt resource value: 75
3806 | public const int AppCompatTheme_dropDownListViewStyle = 75;
3807 |
3808 | // aapt resource value: 47
3809 | public const int AppCompatTheme_dropdownListPreferredItemHeight = 47;
3810 |
3811 | // aapt resource value: 64
3812 | public const int AppCompatTheme_editTextBackground = 64;
3813 |
3814 | // aapt resource value: 63
3815 | public const int AppCompatTheme_editTextColor = 63;
3816 |
3817 | // aapt resource value: 106
3818 | public const int AppCompatTheme_editTextStyle = 106;
3819 |
3820 | // aapt resource value: 49
3821 | public const int AppCompatTheme_homeAsUpIndicator = 49;
3822 |
3823 | // aapt resource value: 65
3824 | public const int AppCompatTheme_imageButtonStyle = 65;
3825 |
3826 | // aapt resource value: 82
3827 | public const int AppCompatTheme_listChoiceBackgroundIndicator = 82;
3828 |
3829 | // aapt resource value: 45
3830 | public const int AppCompatTheme_listDividerAlertDialog = 45;
3831 |
3832 | // aapt resource value: 114
3833 | public const int AppCompatTheme_listMenuViewStyle = 114;
3834 |
3835 | // aapt resource value: 76
3836 | public const int AppCompatTheme_listPopupWindowStyle = 76;
3837 |
3838 | // aapt resource value: 70
3839 | public const int AppCompatTheme_listPreferredItemHeight = 70;
3840 |
3841 | // aapt resource value: 72
3842 | public const int AppCompatTheme_listPreferredItemHeightLarge = 72;
3843 |
3844 | // aapt resource value: 71
3845 | public const int AppCompatTheme_listPreferredItemHeightSmall = 71;
3846 |
3847 | // aapt resource value: 73
3848 | public const int AppCompatTheme_listPreferredItemPaddingLeft = 73;
3849 |
3850 | // aapt resource value: 74
3851 | public const int AppCompatTheme_listPreferredItemPaddingRight = 74;
3852 |
3853 | // aapt resource value: 79
3854 | public const int AppCompatTheme_panelBackground = 79;
3855 |
3856 | // aapt resource value: 81
3857 | public const int AppCompatTheme_panelMenuListTheme = 81;
3858 |
3859 | // aapt resource value: 80
3860 | public const int AppCompatTheme_panelMenuListWidth = 80;
3861 |
3862 | // aapt resource value: 61
3863 | public const int AppCompatTheme_popupMenuStyle = 61;
3864 |
3865 | // aapt resource value: 62
3866 | public const int AppCompatTheme_popupWindowStyle = 62;
3867 |
3868 | // aapt resource value: 107
3869 | public const int AppCompatTheme_radioButtonStyle = 107;
3870 |
3871 | // aapt resource value: 108
3872 | public const int AppCompatTheme_ratingBarStyle = 108;
3873 |
3874 | // aapt resource value: 109
3875 | public const int AppCompatTheme_ratingBarStyleIndicator = 109;
3876 |
3877 | // aapt resource value: 110
3878 | public const int AppCompatTheme_ratingBarStyleSmall = 110;
3879 |
3880 | // aapt resource value: 69
3881 | public const int AppCompatTheme_searchViewStyle = 69;
3882 |
3883 | // aapt resource value: 111
3884 | public const int AppCompatTheme_seekBarStyle = 111;
3885 |
3886 | // aapt resource value: 53
3887 | public const int AppCompatTheme_selectableItemBackground = 53;
3888 |
3889 | // aapt resource value: 54
3890 | public const int AppCompatTheme_selectableItemBackgroundBorderless = 54;
3891 |
3892 | // aapt resource value: 48
3893 | public const int AppCompatTheme_spinnerDropDownItemStyle = 48;
3894 |
3895 | // aapt resource value: 112
3896 | public const int AppCompatTheme_spinnerStyle = 112;
3897 |
3898 | // aapt resource value: 113
3899 | public const int AppCompatTheme_switchStyle = 113;
3900 |
3901 | // aapt resource value: 40
3902 | public const int AppCompatTheme_textAppearanceLargePopupMenu = 40;
3903 |
3904 | // aapt resource value: 77
3905 | public const int AppCompatTheme_textAppearanceListItem = 77;
3906 |
3907 | // aapt resource value: 78
3908 | public const int AppCompatTheme_textAppearanceListItemSmall = 78;
3909 |
3910 | // aapt resource value: 42
3911 | public const int AppCompatTheme_textAppearancePopupMenuHeader = 42;
3912 |
3913 | // aapt resource value: 67
3914 | public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
3915 |
3916 | // aapt resource value: 66
3917 | public const int AppCompatTheme_textAppearanceSearchResultTitle = 66;
3918 |
3919 | // aapt resource value: 41
3920 | public const int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
3921 |
3922 | // aapt resource value: 97
3923 | public const int AppCompatTheme_textColorAlertDialogListItem = 97;
3924 |
3925 | // aapt resource value: 68
3926 | public const int AppCompatTheme_textColorSearchUrl = 68;
3927 |
3928 | // aapt resource value: 60
3929 | public const int AppCompatTheme_toolbarNavigationButtonStyle = 60;
3930 |
3931 | // aapt resource value: 59
3932 | public const int AppCompatTheme_toolbarStyle = 59;
3933 |
3934 | // aapt resource value: 2
3935 | public const int AppCompatTheme_windowActionBar = 2;
3936 |
3937 | // aapt resource value: 4
3938 | public const int AppCompatTheme_windowActionBarOverlay = 4;
3939 |
3940 | // aapt resource value: 5
3941 | public const int AppCompatTheme_windowActionModeOverlay = 5;
3942 |
3943 | // aapt resource value: 9
3944 | public const int AppCompatTheme_windowFixedHeightMajor = 9;
3945 |
3946 | // aapt resource value: 7
3947 | public const int AppCompatTheme_windowFixedHeightMinor = 7;
3948 |
3949 | // aapt resource value: 6
3950 | public const int AppCompatTheme_windowFixedWidthMajor = 6;
3951 |
3952 | // aapt resource value: 8
3953 | public const int AppCompatTheme_windowFixedWidthMinor = 8;
3954 |
3955 | // aapt resource value: 10
3956 | public const int AppCompatTheme_windowMinWidthMajor = 10;
3957 |
3958 | // aapt resource value: 11
3959 | public const int AppCompatTheme_windowMinWidthMinor = 11;
3960 |
3961 | // aapt resource value: 3
3962 | public const int AppCompatTheme_windowNoTitle = 3;
3963 |
3964 | public static int[] ButtonBarLayout = new int[]
3965 | {
3966 | 2130772124};
3967 |
3968 | // aapt resource value: 0
3969 | public const int ButtonBarLayout_allowStacking = 0;
3970 |
3971 | public static int[] ColorStateListItem = new int[]
3972 | {
3973 | 16843173,
3974 | 16843551,
3975 | 2130772125};
3976 |
3977 | // aapt resource value: 2
3978 | public const int ColorStateListItem_alpha = 2;
3979 |
3980 | // aapt resource value: 1
3981 | public const int ColorStateListItem_android_alpha = 1;
3982 |
3983 | // aapt resource value: 0
3984 | public const int ColorStateListItem_android_color = 0;
3985 |
3986 | public static int[] CompoundButton = new int[]
3987 | {
3988 | 16843015,
3989 | 2130772126,
3990 | 2130772127};
3991 |
3992 | // aapt resource value: 0
3993 | public const int CompoundButton_android_button = 0;
3994 |
3995 | // aapt resource value: 1
3996 | public const int CompoundButton_buttonTint = 1;
3997 |
3998 | // aapt resource value: 2
3999 | public const int CompoundButton_buttonTintMode = 2;
4000 |
4001 | public static int[] DiagonalLayout = new int[]
4002 | {
4003 | 2130772193,
4004 | 2130772194,
4005 | 2130772195};
4006 |
4007 | // aapt resource value: 0
4008 | public const int DiagonalLayout_diagonal_angle = 0;
4009 |
4010 | // aapt resource value: 2
4011 | public const int DiagonalLayout_diagonal_gravity = 2;
4012 |
4013 | // aapt resource value: 1
4014 | public const int DiagonalLayout_diagonal_handleMargins = 1;
4015 |
4016 | public static int[] DrawerArrowToggle = new int[]
4017 | {
4018 | 2130772128,
4019 | 2130772129,
4020 | 2130772130,
4021 | 2130772131,
4022 | 2130772132,
4023 | 2130772133,
4024 | 2130772134,
4025 | 2130772135};
4026 |
4027 | // aapt resource value: 4
4028 | public const int DrawerArrowToggle_arrowHeadLength = 4;
4029 |
4030 | // aapt resource value: 5
4031 | public const int DrawerArrowToggle_arrowShaftLength = 5;
4032 |
4033 | // aapt resource value: 6
4034 | public const int DrawerArrowToggle_barLength = 6;
4035 |
4036 | // aapt resource value: 0
4037 | public const int DrawerArrowToggle_color = 0;
4038 |
4039 | // aapt resource value: 2
4040 | public const int DrawerArrowToggle_drawableSize = 2;
4041 |
4042 | // aapt resource value: 3
4043 | public const int DrawerArrowToggle_gapBetweenBars = 3;
4044 |
4045 | // aapt resource value: 1
4046 | public const int DrawerArrowToggle_spinBars = 1;
4047 |
4048 | // aapt resource value: 7
4049 | public const int DrawerArrowToggle_thickness = 7;
4050 |
4051 | public static int[] LinearLayoutCompat = new int[]
4052 | {
4053 | 16842927,
4054 | 16842948,
4055 | 16843046,
4056 | 16843047,
4057 | 16843048,
4058 | 2130771979,
4059 | 2130772136,
4060 | 2130772137,
4061 | 2130772138};
4062 |
4063 | // aapt resource value: 2
4064 | public const int LinearLayoutCompat_android_baselineAligned = 2;
4065 |
4066 | // aapt resource value: 3
4067 | public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
4068 |
4069 | // aapt resource value: 0
4070 | public const int LinearLayoutCompat_android_gravity = 0;
4071 |
4072 | // aapt resource value: 1
4073 | public const int LinearLayoutCompat_android_orientation = 1;
4074 |
4075 | // aapt resource value: 4
4076 | public const int LinearLayoutCompat_android_weightSum = 4;
4077 |
4078 | // aapt resource value: 5
4079 | public const int LinearLayoutCompat_divider = 5;
4080 |
4081 | // aapt resource value: 8
4082 | public const int LinearLayoutCompat_dividerPadding = 8;
4083 |
4084 | // aapt resource value: 6
4085 | public const int LinearLayoutCompat_measureWithLargestChild = 6;
4086 |
4087 | // aapt resource value: 7
4088 | public const int LinearLayoutCompat_showDividers = 7;
4089 |
4090 | public static int[] LinearLayoutCompat_Layout = new int[]
4091 | {
4092 | 16842931,
4093 | 16842996,
4094 | 16842997,
4095 | 16843137};
4096 |
4097 | // aapt resource value: 0
4098 | public const int LinearLayoutCompat_Layout_android_layout_gravity = 0;
4099 |
4100 | // aapt resource value: 2
4101 | public const int LinearLayoutCompat_Layout_android_layout_height = 2;
4102 |
4103 | // aapt resource value: 3
4104 | public const int LinearLayoutCompat_Layout_android_layout_weight = 3;
4105 |
4106 | // aapt resource value: 1
4107 | public const int LinearLayoutCompat_Layout_android_layout_width = 1;
4108 |
4109 | public static int[] ListPopupWindow = new int[]
4110 | {
4111 | 16843436,
4112 | 16843437};
4113 |
4114 | // aapt resource value: 0
4115 | public const int ListPopupWindow_android_dropDownHorizontalOffset = 0;
4116 |
4117 | // aapt resource value: 1
4118 | public const int ListPopupWindow_android_dropDownVerticalOffset = 1;
4119 |
4120 | public static int[] MenuGroup = new int[]
4121 | {
4122 | 16842766,
4123 | 16842960,
4124 | 16843156,
4125 | 16843230,
4126 | 16843231,
4127 | 16843232};
4128 |
4129 | // aapt resource value: 5
4130 | public const int MenuGroup_android_checkableBehavior = 5;
4131 |
4132 | // aapt resource value: 0
4133 | public const int MenuGroup_android_enabled = 0;
4134 |
4135 | // aapt resource value: 1
4136 | public const int MenuGroup_android_id = 1;
4137 |
4138 | // aapt resource value: 3
4139 | public const int MenuGroup_android_menuCategory = 3;
4140 |
4141 | // aapt resource value: 4
4142 | public const int MenuGroup_android_orderInCategory = 4;
4143 |
4144 | // aapt resource value: 2
4145 | public const int MenuGroup_android_visible = 2;
4146 |
4147 | public static int[] MenuItem = new int[]
4148 | {
4149 | 16842754,
4150 | 16842766,
4151 | 16842960,
4152 | 16843014,
4153 | 16843156,
4154 | 16843230,
4155 | 16843231,
4156 | 16843233,
4157 | 16843234,
4158 | 16843235,
4159 | 16843236,
4160 | 16843237,
4161 | 16843375,
4162 | 2130772139,
4163 | 2130772140,
4164 | 2130772141,
4165 | 2130772142};
4166 |
4167 | // aapt resource value: 14
4168 | public const int MenuItem_actionLayout = 14;
4169 |
4170 | // aapt resource value: 16
4171 | public const int MenuItem_actionProviderClass = 16;
4172 |
4173 | // aapt resource value: 15
4174 | public const int MenuItem_actionViewClass = 15;
4175 |
4176 | // aapt resource value: 9
4177 | public const int MenuItem_android_alphabeticShortcut = 9;
4178 |
4179 | // aapt resource value: 11
4180 | public const int MenuItem_android_checkable = 11;
4181 |
4182 | // aapt resource value: 3
4183 | public const int MenuItem_android_checked = 3;
4184 |
4185 | // aapt resource value: 1
4186 | public const int MenuItem_android_enabled = 1;
4187 |
4188 | // aapt resource value: 0
4189 | public const int MenuItem_android_icon = 0;
4190 |
4191 | // aapt resource value: 2
4192 | public const int MenuItem_android_id = 2;
4193 |
4194 | // aapt resource value: 5
4195 | public const int MenuItem_android_menuCategory = 5;
4196 |
4197 | // aapt resource value: 10
4198 | public const int MenuItem_android_numericShortcut = 10;
4199 |
4200 | // aapt resource value: 12
4201 | public const int MenuItem_android_onClick = 12;
4202 |
4203 | // aapt resource value: 6
4204 | public const int MenuItem_android_orderInCategory = 6;
4205 |
4206 | // aapt resource value: 7
4207 | public const int MenuItem_android_title = 7;
4208 |
4209 | // aapt resource value: 8
4210 | public const int MenuItem_android_titleCondensed = 8;
4211 |
4212 | // aapt resource value: 4
4213 | public const int MenuItem_android_visible = 4;
4214 |
4215 | // aapt resource value: 13
4216 | public const int MenuItem_showAsAction = 13;
4217 |
4218 | public static int[] MenuView = new int[]
4219 | {
4220 | 16842926,
4221 | 16843052,
4222 | 16843053,
4223 | 16843054,
4224 | 16843055,
4225 | 16843056,
4226 | 16843057,
4227 | 2130772143,
4228 | 2130772144};
4229 |
4230 | // aapt resource value: 4
4231 | public const int MenuView_android_headerBackground = 4;
4232 |
4233 | // aapt resource value: 2
4234 | public const int MenuView_android_horizontalDivider = 2;
4235 |
4236 | // aapt resource value: 5
4237 | public const int MenuView_android_itemBackground = 5;
4238 |
4239 | // aapt resource value: 6
4240 | public const int MenuView_android_itemIconDisabledAlpha = 6;
4241 |
4242 | // aapt resource value: 1
4243 | public const int MenuView_android_itemTextAppearance = 1;
4244 |
4245 | // aapt resource value: 3
4246 | public const int MenuView_android_verticalDivider = 3;
4247 |
4248 | // aapt resource value: 0
4249 | public const int MenuView_android_windowAnimationStyle = 0;
4250 |
4251 | // aapt resource value: 7
4252 | public const int MenuView_preserveIconSpacing = 7;
4253 |
4254 | // aapt resource value: 8
4255 | public const int MenuView_subMenuArrow = 8;
4256 |
4257 | public static int[] PopupWindow = new int[]
4258 | {
4259 | 16843126,
4260 | 16843465,
4261 | 2130772145};
4262 |
4263 | // aapt resource value: 1
4264 | public const int PopupWindow_android_popupAnimationStyle = 1;
4265 |
4266 | // aapt resource value: 0
4267 | public const int PopupWindow_android_popupBackground = 0;
4268 |
4269 | // aapt resource value: 2
4270 | public const int PopupWindow_overlapAnchor = 2;
4271 |
4272 | public static int[] PopupWindowBackgroundState = new int[]
4273 | {
4274 | 2130772146};
4275 |
4276 | // aapt resource value: 0
4277 | public const int PopupWindowBackgroundState_state_above_anchor = 0;
4278 |
4279 | public static int[] SearchView = new int[]
4280 | {
4281 | 16842970,
4282 | 16843039,
4283 | 16843296,
4284 | 16843364,
4285 | 2130772147,
4286 | 2130772148,
4287 | 2130772149,
4288 | 2130772150,
4289 | 2130772151,
4290 | 2130772152,
4291 | 2130772153,
4292 | 2130772154,
4293 | 2130772155,
4294 | 2130772156,
4295 | 2130772157,
4296 | 2130772158,
4297 | 2130772159};
4298 |
4299 | // aapt resource value: 0
4300 | public const int SearchView_android_focusable = 0;
4301 |
4302 | // aapt resource value: 3
4303 | public const int SearchView_android_imeOptions = 3;
4304 |
4305 | // aapt resource value: 2
4306 | public const int SearchView_android_inputType = 2;
4307 |
4308 | // aapt resource value: 1
4309 | public const int SearchView_android_maxWidth = 1;
4310 |
4311 | // aapt resource value: 8
4312 | public const int SearchView_closeIcon = 8;
4313 |
4314 | // aapt resource value: 13
4315 | public const int SearchView_commitIcon = 13;
4316 |
4317 | // aapt resource value: 7
4318 | public const int SearchView_defaultQueryHint = 7;
4319 |
4320 | // aapt resource value: 9
4321 | public const int SearchView_goIcon = 9;
4322 |
4323 | // aapt resource value: 5
4324 | public const int SearchView_iconifiedByDefault = 5;
4325 |
4326 | // aapt resource value: 4
4327 | public const int SearchView_layout = 4;
4328 |
4329 | // aapt resource value: 15
4330 | public const int SearchView_queryBackground = 15;
4331 |
4332 | // aapt resource value: 6
4333 | public const int SearchView_queryHint = 6;
4334 |
4335 | // aapt resource value: 11
4336 | public const int SearchView_searchHintIcon = 11;
4337 |
4338 | // aapt resource value: 10
4339 | public const int SearchView_searchIcon = 10;
4340 |
4341 | // aapt resource value: 16
4342 | public const int SearchView_submitBackground = 16;
4343 |
4344 | // aapt resource value: 14
4345 | public const int SearchView_suggestionRowLayout = 14;
4346 |
4347 | // aapt resource value: 12
4348 | public const int SearchView_voiceIcon = 12;
4349 |
4350 | public static int[] Spinner = new int[]
4351 | {
4352 | 16842930,
4353 | 16843126,
4354 | 16843131,
4355 | 16843362,
4356 | 2130771997};
4357 |
4358 | // aapt resource value: 3
4359 | public const int Spinner_android_dropDownWidth = 3;
4360 |
4361 | // aapt resource value: 0
4362 | public const int Spinner_android_entries = 0;
4363 |
4364 | // aapt resource value: 1
4365 | public const int Spinner_android_popupBackground = 1;
4366 |
4367 | // aapt resource value: 2
4368 | public const int Spinner_android_prompt = 2;
4369 |
4370 | // aapt resource value: 4
4371 | public const int Spinner_popupTheme = 4;
4372 |
4373 | public static int[] SwitchCompat = new int[]
4374 | {
4375 | 16843044,
4376 | 16843045,
4377 | 16843074,
4378 | 2130772160,
4379 | 2130772161,
4380 | 2130772162,
4381 | 2130772163,
4382 | 2130772164,
4383 | 2130772165,
4384 | 2130772166,
4385 | 2130772167,
4386 | 2130772168,
4387 | 2130772169,
4388 | 2130772170};
4389 |
4390 | // aapt resource value: 1
4391 | public const int SwitchCompat_android_textOff = 1;
4392 |
4393 | // aapt resource value: 0
4394 | public const int SwitchCompat_android_textOn = 0;
4395 |
4396 | // aapt resource value: 2
4397 | public const int SwitchCompat_android_thumb = 2;
4398 |
4399 | // aapt resource value: 13
4400 | public const int SwitchCompat_showText = 13;
4401 |
4402 | // aapt resource value: 12
4403 | public const int SwitchCompat_splitTrack = 12;
4404 |
4405 | // aapt resource value: 10
4406 | public const int SwitchCompat_switchMinWidth = 10;
4407 |
4408 | // aapt resource value: 11
4409 | public const int SwitchCompat_switchPadding = 11;
4410 |
4411 | // aapt resource value: 9
4412 | public const int SwitchCompat_switchTextAppearance = 9;
4413 |
4414 | // aapt resource value: 8
4415 | public const int SwitchCompat_thumbTextPadding = 8;
4416 |
4417 | // aapt resource value: 3
4418 | public const int SwitchCompat_thumbTint = 3;
4419 |
4420 | // aapt resource value: 4
4421 | public const int SwitchCompat_thumbTintMode = 4;
4422 |
4423 | // aapt resource value: 5
4424 | public const int SwitchCompat_track = 5;
4425 |
4426 | // aapt resource value: 6
4427 | public const int SwitchCompat_trackTint = 6;
4428 |
4429 | // aapt resource value: 7
4430 | public const int SwitchCompat_trackTintMode = 7;
4431 |
4432 | public static int[] TextAppearance = new int[]
4433 | {
4434 | 16842901,
4435 | 16842902,
4436 | 16842903,
4437 | 16842904,
4438 | 16843105,
4439 | 16843106,
4440 | 16843107,
4441 | 16843108,
4442 | 2130772010};
4443 |
4444 | // aapt resource value: 4
4445 | public const int TextAppearance_android_shadowColor = 4;
4446 |
4447 | // aapt resource value: 5
4448 | public const int TextAppearance_android_shadowDx = 5;
4449 |
4450 | // aapt resource value: 6
4451 | public const int TextAppearance_android_shadowDy = 6;
4452 |
4453 | // aapt resource value: 7
4454 | public const int TextAppearance_android_shadowRadius = 7;
4455 |
4456 | // aapt resource value: 3
4457 | public const int TextAppearance_android_textColor = 3;
4458 |
4459 | // aapt resource value: 0
4460 | public const int TextAppearance_android_textSize = 0;
4461 |
4462 | // aapt resource value: 2
4463 | public const int TextAppearance_android_textStyle = 2;
4464 |
4465 | // aapt resource value: 1
4466 | public const int TextAppearance_android_typeface = 1;
4467 |
4468 | // aapt resource value: 8
4469 | public const int TextAppearance_textAllCaps = 8;
4470 |
4471 | public static int[] Toolbar = new int[]
4472 | {
4473 | 16842927,
4474 | 16843072,
4475 | 2130771971,
4476 | 2130771974,
4477 | 2130771978,
4478 | 2130771990,
4479 | 2130771991,
4480 | 2130771992,
4481 | 2130771993,
4482 | 2130771994,
4483 | 2130771995,
4484 | 2130771997,
4485 | 2130772171,
4486 | 2130772172,
4487 | 2130772173,
4488 | 2130772174,
4489 | 2130772175,
4490 | 2130772176,
4491 | 2130772177,
4492 | 2130772178,
4493 | 2130772179,
4494 | 2130772180,
4495 | 2130772181,
4496 | 2130772182,
4497 | 2130772183,
4498 | 2130772184,
4499 | 2130772185,
4500 | 2130772186,
4501 | 2130772187};
4502 |
4503 | // aapt resource value: 0
4504 | public const int Toolbar_android_gravity = 0;
4505 |
4506 | // aapt resource value: 1
4507 | public const int Toolbar_android_minHeight = 1;
4508 |
4509 | // aapt resource value: 21
4510 | public const int Toolbar_buttonGravity = 21;
4511 |
4512 | // aapt resource value: 23
4513 | public const int Toolbar_collapseContentDescription = 23;
4514 |
4515 | // aapt resource value: 22
4516 | public const int Toolbar_collapseIcon = 22;
4517 |
4518 | // aapt resource value: 6
4519 | public const int Toolbar_contentInsetEnd = 6;
4520 |
4521 | // aapt resource value: 10
4522 | public const int Toolbar_contentInsetEndWithActions = 10;
4523 |
4524 | // aapt resource value: 7
4525 | public const int Toolbar_contentInsetLeft = 7;
4526 |
4527 | // aapt resource value: 8
4528 | public const int Toolbar_contentInsetRight = 8;
4529 |
4530 | // aapt resource value: 5
4531 | public const int Toolbar_contentInsetStart = 5;
4532 |
4533 | // aapt resource value: 9
4534 | public const int Toolbar_contentInsetStartWithNavigation = 9;
4535 |
4536 | // aapt resource value: 4
4537 | public const int Toolbar_logo = 4;
4538 |
4539 | // aapt resource value: 26
4540 | public const int Toolbar_logoDescription = 26;
4541 |
4542 | // aapt resource value: 20
4543 | public const int Toolbar_maxButtonHeight = 20;
4544 |
4545 | // aapt resource value: 25
4546 | public const int Toolbar_navigationContentDescription = 25;
4547 |
4548 | // aapt resource value: 24
4549 | public const int Toolbar_navigationIcon = 24;
4550 |
4551 | // aapt resource value: 11
4552 | public const int Toolbar_popupTheme = 11;
4553 |
4554 | // aapt resource value: 3
4555 | public const int Toolbar_subtitle = 3;
4556 |
4557 | // aapt resource value: 13
4558 | public const int Toolbar_subtitleTextAppearance = 13;
4559 |
4560 | // aapt resource value: 28
4561 | public const int Toolbar_subtitleTextColor = 28;
4562 |
4563 | // aapt resource value: 2
4564 | public const int Toolbar_title = 2;
4565 |
4566 | // aapt resource value: 14
4567 | public const int Toolbar_titleMargin = 14;
4568 |
4569 | // aapt resource value: 18
4570 | public const int Toolbar_titleMarginBottom = 18;
4571 |
4572 | // aapt resource value: 16
4573 | public const int Toolbar_titleMarginEnd = 16;
4574 |
4575 | // aapt resource value: 15
4576 | public const int Toolbar_titleMarginStart = 15;
4577 |
4578 | // aapt resource value: 17
4579 | public const int Toolbar_titleMarginTop = 17;
4580 |
4581 | // aapt resource value: 19
4582 | public const int Toolbar_titleMargins = 19;
4583 |
4584 | // aapt resource value: 12
4585 | public const int Toolbar_titleTextAppearance = 12;
4586 |
4587 | // aapt resource value: 27
4588 | public const int Toolbar_titleTextColor = 27;
4589 |
4590 | public static int[] View = new int[]
4591 | {
4592 | 16842752,
4593 | 16842970,
4594 | 2130772188,
4595 | 2130772189,
4596 | 2130772190};
4597 |
4598 | // aapt resource value: 1
4599 | public const int View_android_focusable = 1;
4600 |
4601 | // aapt resource value: 0
4602 | public const int View_android_theme = 0;
4603 |
4604 | // aapt resource value: 3
4605 | public const int View_paddingEnd = 3;
4606 |
4607 | // aapt resource value: 2
4608 | public const int View_paddingStart = 2;
4609 |
4610 | // aapt resource value: 4
4611 | public const int View_theme = 4;
4612 |
4613 | public static int[] ViewBackgroundHelper = new int[]
4614 | {
4615 | 16842964,
4616 | 2130772191,
4617 | 2130772192};
4618 |
4619 | // aapt resource value: 0
4620 | public const int ViewBackgroundHelper_android_background = 0;
4621 |
4622 | // aapt resource value: 1
4623 | public const int ViewBackgroundHelper_backgroundTint = 1;
4624 |
4625 | // aapt resource value: 2
4626 | public const int ViewBackgroundHelper_backgroundTintMode = 2;
4627 |
4628 | public static int[] ViewStubCompat = new int[]
4629 | {
4630 | 16842960,
4631 | 16842994,
4632 | 16842995};
4633 |
4634 | // aapt resource value: 0
4635 | public const int ViewStubCompat_android_id = 0;
4636 |
4637 | // aapt resource value: 2
4638 | public const int ViewStubCompat_android_inflatedId = 2;
4639 |
4640 | // aapt resource value: 1
4641 | public const int ViewStubCompat_android_layout = 1;
4642 |
4643 | static Styleable()
4644 | {
4645 | global::Android.Runtime.ResourceIdManager.UpdateIdValues();
4646 | }
4647 |
4648 | private Styleable()
4649 | {
4650 | }
4651 | }
4652 | }
4653 | }
4654 | #pragma warning restore 1591
4655 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/drawable/background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/drawable/background.jpg
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/drawable/circle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/drawable/hughjackman.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/drawable/hughjackman.jpg
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/drawable/mountains.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/drawable/mountains.jpg
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/layout/activity_anim.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
15 |
16 |
22 |
23 |
36 |
37 |
38 |
39 |
51 |
52 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/layout/activity_main_simple.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
22 |
23 |
28 |
29 |
30 |
31 |
38 |
39 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/mipmap-hdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/mipmap-hdpi/Icon.png
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/mipmap-mdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/mipmap-mdpi/Icon.png
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/mipmap-xhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/mipmap-xhdpi/Icon.png
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/mipmap-xxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/mipmap-xxhdpi/Icon.png
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/mipmap-xxxhdpi/Icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout.Sample/Resources/mipmap-xxxhdpi/Icon.png
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/values/Strings.xml:
--------------------------------------------------------------------------------
1 |
2 | DiagonalView
3 | Hugh Michael Jackman is an Australian actor, singer and producer. Jackman has won international recognition for playing different roles in various film genres. \n\nHe is best known for his long-running role as Wolverine in the X-Men film series, as well as for his lead roles in the romantic-comedy fantasy Kate & Leopold (2001), the action-horror film Van Helsing (2004)...
4 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #000000
5 | #3F51B5
6 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
--------------------------------------------------------------------------------
/DiagonalLayout.Sample/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/DiagonalLayout.sln:
--------------------------------------------------------------------------------
1 | Microsoft Visual Studio Solution File, Format Version 12.00
2 | # Visual Studio 15
3 | VisualStudioVersion = 15.0.27004.2009
4 | MinimumVisualStudioVersion = 10.0.40219.1
5 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiagonalLayout", "DiagonalLayout\DiagonalLayout.csproj", "{F91E7534-718C-4DA7-9A1F-B4C84F1411FD}"
6 | EndProject
7 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiagonalLayout.Sample", "DiagonalLayout.Sample\DiagonalLayout.Sample.csproj", "{AACA2145-966F-4496-AA0C-73AB7BBB5C6D}"
8 | EndProject
9 | Global
10 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
11 | Debug|Any CPU = Debug|Any CPU
12 | Release|Any CPU = Release|Any CPU
13 | EndGlobalSection
14 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
15 | {F91E7534-718C-4DA7-9A1F-B4C84F1411FD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16 | {F91E7534-718C-4DA7-9A1F-B4C84F1411FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
17 | {F91E7534-718C-4DA7-9A1F-B4C84F1411FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
18 | {F91E7534-718C-4DA7-9A1F-B4C84F1411FD}.Release|Any CPU.Build.0 = Release|Any CPU
19 | {AACA2145-966F-4496-AA0C-73AB7BBB5C6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20 | {AACA2145-966F-4496-AA0C-73AB7BBB5C6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
21 | {AACA2145-966F-4496-AA0C-73AB7BBB5C6D}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
22 | {AACA2145-966F-4496-AA0C-73AB7BBB5C6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
23 | {AACA2145-966F-4496-AA0C-73AB7BBB5C6D}.Release|Any CPU.Build.0 = Release|Any CPU
24 | EndGlobalSection
25 | GlobalSection(SolutionProperties) = preSolution
26 | HideSolutionNode = FALSE
27 | EndGlobalSection
28 | GlobalSection(ExtensibilityGlobals) = postSolution
29 | SolutionGuid = {09569C0E-A6FB-4E5F-9427-D4F734D0B5F6}
30 | EndGlobalSection
31 | EndGlobal
32 |
--------------------------------------------------------------------------------
/DiagonalLayout/Additions/AboutAdditions.txt:
--------------------------------------------------------------------------------
1 | Additions allow you to add arbitrary C# to the generated classes
2 | before they are compiled. This can be helpful for providing convenience
3 | methods or adding pure C# classes.
4 |
5 | == Adding Methods to Generated Classes ==
6 |
7 | Let's say the library being bound has a Rectangle class with a constructor
8 | that takes an x and y position, and a width and length size. It will look like
9 | this:
10 |
11 | public partial class Rectangle
12 | {
13 | public Rectangle (int x, int y, int width, int height)
14 | {
15 | // JNI bindings
16 | }
17 | }
18 |
19 | Imagine we want to add a constructor to this class that takes a Point and
20 | Size structure instead of 4 ints. We can add a new file called Rectangle.cs
21 | with a partial class containing our new method:
22 |
23 | public partial class Rectangle
24 | {
25 | public Rectangle (Point location, Size size) :
26 | this (location.X, location.Y, size.Width, size.Height)
27 | {
28 | }
29 | }
30 |
31 | At compile time, the additions class will be added to the generated class
32 | and the final assembly will a Rectangle class with both constructors.
33 |
34 |
35 | == Adding C# Classes ==
36 |
37 | Another thing that can be done is adding fully C# managed classes to the
38 | generated library. In the above example, let's assume that there isn't a
39 | Point class available in Java or our library. The one we create doesn't need
40 | to interact with Java, so we'll create it like a normal class in C#.
41 |
42 | By adding a Point.cs file with this class, it will end up in the binding library:
43 |
44 | public class Point
45 | {
46 | public int X { get; set; }
47 | public int Y { get; set; }
48 | }
49 |
--------------------------------------------------------------------------------
/DiagonalLayout/DiagonalLayout.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | {F91E7534-718C-4DA7-9A1F-B4C84F1411FD}
7 | {10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
8 | Library
9 | DiagonalLayout
10 | DiagonalLayout
11 | v8.0
12 | Resources
13 | Assets
14 | true
15 |
16 |
17 | true
18 | full
19 | false
20 | bin\Debug
21 | DEBUG;
22 | prompt
23 | 4
24 | None
25 |
26 |
27 | true
28 | pdbonly
29 | true
30 | bin\Release
31 | prompt
32 | 4
33 | true
34 | false
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/DiagonalLayout/Jars/AboutJars.txt:
--------------------------------------------------------------------------------
1 | This directory is for Android .jars.
2 |
3 | There are 4 types of jars that are supported:
4 |
5 | == Input Jar and Embedded Jar ==
6 |
7 | This is the jar that bindings should be generated for.
8 |
9 | For example, if you were binding the Google Maps library, this would
10 | be Google's "maps.jar".
11 |
12 | The difference between EmbeddedJar and InputJar is, EmbeddedJar is to be
13 | embedded in the resulting dll as EmbeddedResource, while InputJar is not.
14 | There are couple of reasons you wouldn't like to embed the target jar
15 | in your dll (the ones that could be internally loaded by
16 | feature e.g. maps.jar, or you cannot embed jars that are under some
17 | proprietary license).
18 |
19 | Set the build action for these jars in the properties page to "InputJar".
20 |
21 |
22 | == Reference Jar and Embedded Reference Jar ==
23 |
24 | These are jars that are referenced by the input jar. C# bindings will
25 | not be created for these jars. These jars will be used to resolve
26 | types used by the input jar.
27 |
28 | NOTE: Do not add "android.jar" as a reference jar. It will be added automatically
29 | based on the Target Framework selected.
30 |
31 | Set the build action for these jars in the properties page to "ReferenceJar".
32 |
33 | "EmbeddedJar" works like "ReferenceJar", but like "EmbeddedJar", it is
34 | embedded in your dll. But at application build time, they are not included
35 | in the final apk, like ReferenceJar files.
36 |
37 |
--------------------------------------------------------------------------------
/DiagonalLayout/Jars/diagonallayout-1.0.8.aar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/DiagonalLayout/Jars/diagonallayout-1.0.8.aar
--------------------------------------------------------------------------------
/DiagonalLayout/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using Android.App;
4 |
5 | // Information about this assembly is defined by the following attributes.
6 | // Change them to the values specific to your project.
7 |
8 | [assembly: AssemblyTitle("DiagonalLayout")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("")]
13 | [assembly: AssemblyCopyright("martijnvandijk")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
18 | // The form "{Major}.{Minor}.*" will automatically update the build and revision,
19 | // and "{Major}.{Minor}.{Build}.*" will update just the revision.
20 |
21 | [assembly: AssemblyVersion("1.0.0")]
22 |
23 | // The following attributes are used to specify the signing key for the assembly,
24 | // if desired. See the Mono documentation for more information about signing.
25 |
26 | //[assembly: AssemblyDelaySign(false)]
27 | //[assembly: AssemblyKeyFile("")]
28 |
--------------------------------------------------------------------------------
/DiagonalLayout/Transforms/EnumFields.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/DiagonalLayout/Transforms/EnumMethods.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/DiagonalLayout/Transforms/Metadata.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Com.Github.Florent37.DiagonalLayout
4 |
5 | context
6 | attrs
7 | angle
8 | position
9 | direction
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: Baseflow
2 | custom: https://baseflow.com/contact
3 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # DiagonalLayout
2 | With Diagonal Layout explore new styles and approaches on material design
3 |
4 | Xamarin bindings library for DiagonalLayout [library](https://github.com/florent37/DiagonalLayout).
5 |
6 | Plugin is available on [Nuget](https://www.nuget.org/packages/Xam.Plugins.Android.DiagonalLayout/).
7 |
8 | # Support
9 |
10 | * Feel free to open an issue. Make sure to use one of the templates!
11 | * Commercial support is available. Integration with your app or services, samples, feature request, etc. Email: [hello@baseflow.com](mailto:hello@baseflow.com)
12 | * Powered by: [baseflow.com](https://baseflow.com)
13 |
14 | ## Preview
15 |
16 | [](https://www.github.com/florent37/DiagonalLayout)
17 |
18 | See the sample for implementation.
19 |
--------------------------------------------------------------------------------
/icon_diagonallayout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Baseflow/DiagonalLayoutXamarin/aa7202b253b4a0f1f3fa28940be8905a8b8d8512/icon_diagonallayout.png
--------------------------------------------------------------------------------
/nuspec/Xam.Plugins.Android.DiagonalLayout.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Xam.Plugins.Android.DiagonalLayout
5 | 1.0.2
6 | DiagonalLayout for Xamarin.Android
7 | Martijn van Dijk
8 | Martijn van Dijk
9 | https://github.com/martijn00/DiagonalLayoutXamarin/blob/master/LICENSE
10 | https://github.com/martijn00/DiagonalLayoutXamarin
11 | https://raw.githubusercontent.com/martijn00/DiagonalLayoutXamarin/master/icon_diagonallayout.png
12 | false
13 | DiagonalLayout for Xamarin Android
14 | With Diagonal Layout explore new styles and approaches on material design
15 | xamarin, monodroid, C#, xamarin.android, android, DiagonalLayout, Diagonal, Layout
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------