-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathResource.designer.cs
More file actions
7544 lines (5221 loc) · 239 KB
/
Copy pathResource.designer.cs
File metadata and controls
7544 lines (5221 loc) · 239 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
[assembly: global::Android.Runtime.ResourceDesignerAttribute("ValidationRulesTest.Droid.Resource", IsApplication=true)]
namespace ValidationRulesTest.Droid
{
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "12.3.99.43")]
public partial class Resource
{
static Resource()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
public static void UpdateIdValues()
{
global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarSize = global::ValidationRulesTest.Droid.Resource.Attribute.actionBarSize;
}
public partial class Animation
{
// aapt resource value: 0x7F010000
public const int abc_fade_in = 2130771968;
// aapt resource value: 0x7F010001
public const int abc_fade_out = 2130771969;
// aapt resource value: 0x7F010002
public const int abc_grow_fade_in_from_bottom = 2130771970;
// aapt resource value: 0x7F010003
public const int abc_popup_enter = 2130771971;
// aapt resource value: 0x7F010004
public const int abc_popup_exit = 2130771972;
// aapt resource value: 0x7F010005
public const int abc_shrink_fade_out_from_bottom = 2130771973;
// aapt resource value: 0x7F010006
public const int abc_slide_in_bottom = 2130771974;
// aapt resource value: 0x7F010007
public const int abc_slide_in_top = 2130771975;
// aapt resource value: 0x7F010008
public const int abc_slide_out_bottom = 2130771976;
// aapt resource value: 0x7F010009
public const int abc_slide_out_top = 2130771977;
// aapt resource value: 0x7F01000A
public const int design_bottom_sheet_slide_in = 2130771978;
// aapt resource value: 0x7F01000B
public const int design_bottom_sheet_slide_out = 2130771979;
// aapt resource value: 0x7F01000C
public const int design_snackbar_in = 2130771980;
// aapt resource value: 0x7F01000D
public const int design_snackbar_out = 2130771981;
// aapt resource value: 0x7F01000E
public const int tooltip_enter = 2130771982;
// aapt resource value: 0x7F01000F
public const int tooltip_exit = 2130771983;
static Animation()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Animation()
{
}
}
public partial class Animator
{
// aapt resource value: 0x7F020000
public const int design_appbar_state_list_animator = 2130837504;
static Animator()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Animator()
{
}
}
public partial class Attribute
{
// aapt resource value: 0x7F030000
public const int actionBarDivider = 2130903040;
// aapt resource value: 0x7F030001
public const int actionBarItemBackground = 2130903041;
// aapt resource value: 0x7F030002
public const int actionBarPopupTheme = 2130903042;
// aapt resource value: 0x7F030003
public const int actionBarSize = 2130903043;
// aapt resource value: 0x7F030004
public const int actionBarSplitStyle = 2130903044;
// aapt resource value: 0x7F030005
public const int actionBarStyle = 2130903045;
// aapt resource value: 0x7F030006
public const int actionBarTabBarStyle = 2130903046;
// aapt resource value: 0x7F030007
public const int actionBarTabStyle = 2130903047;
// aapt resource value: 0x7F030008
public const int actionBarTabTextStyle = 2130903048;
// aapt resource value: 0x7F030009
public const int actionBarTheme = 2130903049;
// aapt resource value: 0x7F03000A
public const int actionBarWidgetTheme = 2130903050;
// aapt resource value: 0x7F03000B
public const int actionButtonStyle = 2130903051;
// aapt resource value: 0x7F03000C
public const int actionDropDownStyle = 2130903052;
// aapt resource value: 0x7F03000D
public const int actionLayout = 2130903053;
// aapt resource value: 0x7F03000E
public const int actionMenuTextAppearance = 2130903054;
// aapt resource value: 0x7F03000F
public const int actionMenuTextColor = 2130903055;
// aapt resource value: 0x7F030010
public const int actionModeBackground = 2130903056;
// aapt resource value: 0x7F030011
public const int actionModeCloseButtonStyle = 2130903057;
// aapt resource value: 0x7F030012
public const int actionModeCloseDrawable = 2130903058;
// aapt resource value: 0x7F030013
public const int actionModeCopyDrawable = 2130903059;
// aapt resource value: 0x7F030014
public const int actionModeCutDrawable = 2130903060;
// aapt resource value: 0x7F030015
public const int actionModeFindDrawable = 2130903061;
// aapt resource value: 0x7F030016
public const int actionModePasteDrawable = 2130903062;
// aapt resource value: 0x7F030017
public const int actionModePopupWindowStyle = 2130903063;
// aapt resource value: 0x7F030018
public const int actionModeSelectAllDrawable = 2130903064;
// aapt resource value: 0x7F030019
public const int actionModeShareDrawable = 2130903065;
// aapt resource value: 0x7F03001A
public const int actionModeSplitBackground = 2130903066;
// aapt resource value: 0x7F03001B
public const int actionModeStyle = 2130903067;
// aapt resource value: 0x7F03001C
public const int actionModeWebSearchDrawable = 2130903068;
// aapt resource value: 0x7F03001D
public const int actionOverflowButtonStyle = 2130903069;
// aapt resource value: 0x7F03001E
public const int actionOverflowMenuStyle = 2130903070;
// aapt resource value: 0x7F03001F
public const int actionProviderClass = 2130903071;
// aapt resource value: 0x7F030020
public const int actionViewClass = 2130903072;
// aapt resource value: 0x7F030021
public const int activityChooserViewStyle = 2130903073;
// aapt resource value: 0x7F030022
public const int alertDialogButtonGroupStyle = 2130903074;
// aapt resource value: 0x7F030023
public const int alertDialogCenterButtons = 2130903075;
// aapt resource value: 0x7F030024
public const int alertDialogStyle = 2130903076;
// aapt resource value: 0x7F030025
public const int alertDialogTheme = 2130903077;
// aapt resource value: 0x7F030026
public const int allowStacking = 2130903078;
// aapt resource value: 0x7F030027
public const int alpha = 2130903079;
// aapt resource value: 0x7F030028
public const int alphabeticModifiers = 2130903080;
// aapt resource value: 0x7F030029
public const int arrowHeadLength = 2130903081;
// aapt resource value: 0x7F03002A
public const int arrowShaftLength = 2130903082;
// aapt resource value: 0x7F03002B
public const int autoCompleteTextViewStyle = 2130903083;
// aapt resource value: 0x7F03002C
public const int autoSizeMaxTextSize = 2130903084;
// aapt resource value: 0x7F03002D
public const int autoSizeMinTextSize = 2130903085;
// aapt resource value: 0x7F03002E
public const int autoSizePresetSizes = 2130903086;
// aapt resource value: 0x7F03002F
public const int autoSizeStepGranularity = 2130903087;
// aapt resource value: 0x7F030030
public const int autoSizeTextType = 2130903088;
// aapt resource value: 0x7F030031
public const int background = 2130903089;
// aapt resource value: 0x7F030032
public const int backgroundSplit = 2130903090;
// aapt resource value: 0x7F030033
public const int backgroundStacked = 2130903091;
// aapt resource value: 0x7F030034
public const int backgroundTint = 2130903092;
// aapt resource value: 0x7F030035
public const int backgroundTintMode = 2130903093;
// aapt resource value: 0x7F030036
public const int barLength = 2130903094;
// aapt resource value: 0x7F030037
public const int behavior_autoHide = 2130903095;
// aapt resource value: 0x7F030038
public const int behavior_hideable = 2130903096;
// aapt resource value: 0x7F030039
public const int behavior_overlapTop = 2130903097;
// aapt resource value: 0x7F03003A
public const int behavior_peekHeight = 2130903098;
// aapt resource value: 0x7F03003B
public const int behavior_skipCollapsed = 2130903099;
// aapt resource value: 0x7F03003D
public const int borderlessButtonStyle = 2130903101;
// aapt resource value: 0x7F03003C
public const int borderWidth = 2130903100;
// aapt resource value: 0x7F03003E
public const int bottomSheetDialogTheme = 2130903102;
// aapt resource value: 0x7F03003F
public const int bottomSheetStyle = 2130903103;
// aapt resource value: 0x7F030040
public const int buttonBarButtonStyle = 2130903104;
// aapt resource value: 0x7F030041
public const int buttonBarNegativeButtonStyle = 2130903105;
// aapt resource value: 0x7F030042
public const int buttonBarNeutralButtonStyle = 2130903106;
// aapt resource value: 0x7F030043
public const int buttonBarPositiveButtonStyle = 2130903107;
// aapt resource value: 0x7F030044
public const int buttonBarStyle = 2130903108;
// aapt resource value: 0x7F030045
public const int buttonGravity = 2130903109;
// aapt resource value: 0x7F030046
public const int buttonPanelSideLayout = 2130903110;
// aapt resource value: 0x7F030047
public const int buttonStyle = 2130903111;
// aapt resource value: 0x7F030048
public const int buttonStyleSmall = 2130903112;
// aapt resource value: 0x7F030049
public const int buttonTint = 2130903113;
// aapt resource value: 0x7F03004A
public const int buttonTintMode = 2130903114;
// aapt resource value: 0x7F03004B
public const int cardBackgroundColor = 2130903115;
// aapt resource value: 0x7F03004C
public const int cardCornerRadius = 2130903116;
// aapt resource value: 0x7F03004D
public const int cardElevation = 2130903117;
// aapt resource value: 0x7F03004E
public const int cardMaxElevation = 2130903118;
// aapt resource value: 0x7F03004F
public const int cardPreventCornerOverlap = 2130903119;
// aapt resource value: 0x7F030050
public const int cardUseCompatPadding = 2130903120;
// aapt resource value: 0x7F030051
public const int checkboxStyle = 2130903121;
// aapt resource value: 0x7F030052
public const int checkedTextViewStyle = 2130903122;
// aapt resource value: 0x7F030053
public const int closeIcon = 2130903123;
// aapt resource value: 0x7F030054
public const int closeItemLayout = 2130903124;
// aapt resource value: 0x7F030055
public const int collapseContentDescription = 2130903125;
// aapt resource value: 0x7F030057
public const int collapsedTitleGravity = 2130903127;
// aapt resource value: 0x7F030058
public const int collapsedTitleTextAppearance = 2130903128;
// aapt resource value: 0x7F030056
public const int collapseIcon = 2130903126;
// aapt resource value: 0x7F030059
public const int color = 2130903129;
// aapt resource value: 0x7F03005A
public const int colorAccent = 2130903130;
// aapt resource value: 0x7F03005B
public const int colorBackgroundFloating = 2130903131;
// aapt resource value: 0x7F03005C
public const int colorButtonNormal = 2130903132;
// aapt resource value: 0x7F03005D
public const int colorControlActivated = 2130903133;
// aapt resource value: 0x7F03005E
public const int colorControlHighlight = 2130903134;
// aapt resource value: 0x7F03005F
public const int colorControlNormal = 2130903135;
// aapt resource value: 0x7F030060
public const int colorError = 2130903136;
// aapt resource value: 0x7F030061
public const int colorPrimary = 2130903137;
// aapt resource value: 0x7F030062
public const int colorPrimaryDark = 2130903138;
// aapt resource value: 0x7F030063
public const int colorSwitchThumbNormal = 2130903139;
// aapt resource value: 0x7F030064
public const int commitIcon = 2130903140;
// aapt resource value: 0x7F030065
public const int contentDescription = 2130903141;
// aapt resource value: 0x7F030066
public const int contentInsetEnd = 2130903142;
// aapt resource value: 0x7F030067
public const int contentInsetEndWithActions = 2130903143;
// aapt resource value: 0x7F030068
public const int contentInsetLeft = 2130903144;
// aapt resource value: 0x7F030069
public const int contentInsetRight = 2130903145;
// aapt resource value: 0x7F03006A
public const int contentInsetStart = 2130903146;
// aapt resource value: 0x7F03006B
public const int contentInsetStartWithNavigation = 2130903147;
// aapt resource value: 0x7F03006C
public const int contentPadding = 2130903148;
// aapt resource value: 0x7F03006D
public const int contentPaddingBottom = 2130903149;
// aapt resource value: 0x7F03006E
public const int contentPaddingLeft = 2130903150;
// aapt resource value: 0x7F03006F
public const int contentPaddingRight = 2130903151;
// aapt resource value: 0x7F030070
public const int contentPaddingTop = 2130903152;
// aapt resource value: 0x7F030071
public const int contentScrim = 2130903153;
// aapt resource value: 0x7F030072
public const int controlBackground = 2130903154;
// aapt resource value: 0x7F030073
public const int counterEnabled = 2130903155;
// aapt resource value: 0x7F030074
public const int counterMaxLength = 2130903156;
// aapt resource value: 0x7F030075
public const int counterOverflowTextAppearance = 2130903157;
// aapt resource value: 0x7F030076
public const int counterTextAppearance = 2130903158;
// aapt resource value: 0x7F030077
public const int customNavigationLayout = 2130903159;
// aapt resource value: 0x7F030078
public const int defaultQueryHint = 2130903160;
// aapt resource value: 0x7F030079
public const int dialogPreferredPadding = 2130903161;
// aapt resource value: 0x7F03007A
public const int dialogTheme = 2130903162;
// aapt resource value: 0x7F03007B
public const int displayOptions = 2130903163;
// aapt resource value: 0x7F03007C
public const int divider = 2130903164;
// aapt resource value: 0x7F03007D
public const int dividerHorizontal = 2130903165;
// aapt resource value: 0x7F03007E
public const int dividerPadding = 2130903166;
// aapt resource value: 0x7F03007F
public const int dividerVertical = 2130903167;
// aapt resource value: 0x7F030080
public const int drawableSize = 2130903168;
// aapt resource value: 0x7F030081
public const int drawerArrowStyle = 2130903169;
// aapt resource value: 0x7F030083
public const int dropdownListPreferredItemHeight = 2130903171;
// aapt resource value: 0x7F030082
public const int dropDownListViewStyle = 2130903170;
// aapt resource value: 0x7F030084
public const int editTextBackground = 2130903172;
// aapt resource value: 0x7F030085
public const int editTextColor = 2130903173;
// aapt resource value: 0x7F030086
public const int editTextStyle = 2130903174;
// aapt resource value: 0x7F030087
public const int elevation = 2130903175;
// aapt resource value: 0x7F030088
public const int errorEnabled = 2130903176;
// aapt resource value: 0x7F030089
public const int errorTextAppearance = 2130903177;
// aapt resource value: 0x7F03008A
public const int expandActivityOverflowButtonDrawable = 2130903178;
// aapt resource value: 0x7F03008B
public const int expanded = 2130903179;
// aapt resource value: 0x7F03008C
public const int expandedTitleGravity = 2130903180;
// aapt resource value: 0x7F03008D
public const int expandedTitleMargin = 2130903181;
// aapt resource value: 0x7F03008E
public const int expandedTitleMarginBottom = 2130903182;
// aapt resource value: 0x7F03008F
public const int expandedTitleMarginEnd = 2130903183;
// aapt resource value: 0x7F030090
public const int expandedTitleMarginStart = 2130903184;
// aapt resource value: 0x7F030091
public const int expandedTitleMarginTop = 2130903185;
// aapt resource value: 0x7F030092
public const int expandedTitleTextAppearance = 2130903186;
// aapt resource value: 0x7F030093
public const int externalRouteEnabledDrawable = 2130903187;
// aapt resource value: 0x7F030094
public const int fabSize = 2130903188;
// aapt resource value: 0x7F030095
public const int fastScrollEnabled = 2130903189;
// aapt resource value: 0x7F030096
public const int fastScrollHorizontalThumbDrawable = 2130903190;
// aapt resource value: 0x7F030097
public const int fastScrollHorizontalTrackDrawable = 2130903191;
// aapt resource value: 0x7F030098
public const int fastScrollVerticalThumbDrawable = 2130903192;
// aapt resource value: 0x7F030099
public const int fastScrollVerticalTrackDrawable = 2130903193;
// aapt resource value: 0x7F03009A
public const int font = 2130903194;
// aapt resource value: 0x7F03009B
public const int fontFamily = 2130903195;
// aapt resource value: 0x7F03009C
public const int fontProviderAuthority = 2130903196;
// aapt resource value: 0x7F03009D
public const int fontProviderCerts = 2130903197;
// aapt resource value: 0x7F03009E
public const int fontProviderFetchStrategy = 2130903198;
// aapt resource value: 0x7F03009F
public const int fontProviderFetchTimeout = 2130903199;
// aapt resource value: 0x7F0300A0
public const int fontProviderPackage = 2130903200;
// aapt resource value: 0x7F0300A1
public const int fontProviderQuery = 2130903201;
// aapt resource value: 0x7F0300A2
public const int fontStyle = 2130903202;
// aapt resource value: 0x7F0300A3
public const int fontWeight = 2130903203;
// aapt resource value: 0x7F0300A4
public const int foregroundInsidePadding = 2130903204;
// aapt resource value: 0x7F0300A5
public const int gapBetweenBars = 2130903205;
// aapt resource value: 0x7F0300A6
public const int goIcon = 2130903206;
// aapt resource value: 0x7F0300A7
public const int headerLayout = 2130903207;
// aapt resource value: 0x7F0300A8
public const int height = 2130903208;
// aapt resource value: 0x7F0300A9
public const int hideOnContentScroll = 2130903209;
// aapt resource value: 0x7F0300AA
public const int hintAnimationEnabled = 2130903210;
// aapt resource value: 0x7F0300AB
public const int hintEnabled = 2130903211;
// aapt resource value: 0x7F0300AC
public const int hintTextAppearance = 2130903212;
// aapt resource value: 0x7F0300AD
public const int homeAsUpIndicator = 2130903213;
// aapt resource value: 0x7F0300AE
public const int homeLayout = 2130903214;
// aapt resource value: 0x7F0300AF
public const int icon = 2130903215;
// aapt resource value: 0x7F0300B2
public const int iconifiedByDefault = 2130903218;
// aapt resource value: 0x7F0300B0
public const int iconTint = 2130903216;
// aapt resource value: 0x7F0300B1
public const int iconTintMode = 2130903217;
// aapt resource value: 0x7F0300B3
public const int imageButtonStyle = 2130903219;
// aapt resource value: 0x7F0300B4
public const int indeterminateProgressStyle = 2130903220;
// aapt resource value: 0x7F0300B5
public const int initialActivityCount = 2130903221;
// aapt resource value: 0x7F0300B6
public const int insetForeground = 2130903222;
// aapt resource value: 0x7F0300B7
public const int isLightTheme = 2130903223;
// aapt resource value: 0x7F0300B8
public const int itemBackground = 2130903224;
// aapt resource value: 0x7F0300B9
public const int itemIconTint = 2130903225;
// aapt resource value: 0x7F0300BA
public const int itemPadding = 2130903226;
// aapt resource value: 0x7F0300BB
public const int itemTextAppearance = 2130903227;
// aapt resource value: 0x7F0300BC
public const int itemTextColor = 2130903228;
// aapt resource value: 0x7F0300BD
public const int keylines = 2130903229;
// aapt resource value: 0x7F0300BE
public const int layout = 2130903230;
// aapt resource value: 0x7F0300BF
public const int layoutManager = 2130903231;
// aapt resource value: 0x7F0300C0
public const int layout_anchor = 2130903232;
// aapt resource value: 0x7F0300C1
public const int layout_anchorGravity = 2130903233;
// aapt resource value: 0x7F0300C2
public const int layout_behavior = 2130903234;
// aapt resource value: 0x7F0300C3
public const int layout_collapseMode = 2130903235;
// aapt resource value: 0x7F0300C4
public const int layout_collapseParallaxMultiplier = 2130903236;
// aapt resource value: 0x7F0300C5
public const int layout_dodgeInsetEdges = 2130903237;
// aapt resource value: 0x7F0300C6
public const int layout_insetEdge = 2130903238;
// aapt resource value: 0x7F0300C7
public const int layout_keyline = 2130903239;
// aapt resource value: 0x7F0300C8
public const int layout_scrollFlags = 2130903240;
// aapt resource value: 0x7F0300C9
public const int layout_scrollInterpolator = 2130903241;
// aapt resource value: 0x7F0300CA
public const int listChoiceBackgroundIndicator = 2130903242;
// aapt resource value: 0x7F0300CB
public const int listDividerAlertDialog = 2130903243;
// aapt resource value: 0x7F0300CC
public const int listItemLayout = 2130903244;
// aapt resource value: 0x7F0300CD
public const int listLayout = 2130903245;
// aapt resource value: 0x7F0300CE
public const int listMenuViewStyle = 2130903246;
// aapt resource value: 0x7F0300CF
public const int listPopupWindowStyle = 2130903247;
// aapt resource value: 0x7F0300D0
public const int listPreferredItemHeight = 2130903248;
// aapt resource value: 0x7F0300D1
public const int listPreferredItemHeightLarge = 2130903249;
// aapt resource value: 0x7F0300D2
public const int listPreferredItemHeightSmall = 2130903250;
// aapt resource value: 0x7F0300D3
public const int listPreferredItemPaddingLeft = 2130903251;
// aapt resource value: 0x7F0300D4
public const int listPreferredItemPaddingRight = 2130903252;
// aapt resource value: 0x7F0300D5
public const int logo = 2130903253;
// aapt resource value: 0x7F0300D6
public const int logoDescription = 2130903254;
// aapt resource value: 0x7F0300D7
public const int maxActionInlineWidth = 2130903255;
// aapt resource value: 0x7F0300D8
public const int maxButtonHeight = 2130903256;
// aapt resource value: 0x7F0300D9
public const int measureWithLargestChild = 2130903257;
// aapt resource value: 0x7F0300DA
public const int mediaRouteAudioTrackDrawable = 2130903258;
// aapt resource value: 0x7F0300DB
public const int mediaRouteButtonStyle = 2130903259;
// aapt resource value: 0x7F0300DC
public const int mediaRouteButtonTint = 2130903260;
// aapt resource value: 0x7F0300DD
public const int mediaRouteCloseDrawable = 2130903261;
// aapt resource value: 0x7F0300DE
public const int mediaRouteControlPanelThemeOverlay = 2130903262;
// aapt resource value: 0x7F0300DF
public const int mediaRouteDefaultIconDrawable = 2130903263;
// aapt resource value: 0x7F0300E0
public const int mediaRoutePauseDrawable = 2130903264;
// aapt resource value: 0x7F0300E1
public const int mediaRoutePlayDrawable = 2130903265;
// aapt resource value: 0x7F0300E2
public const int mediaRouteSpeakerGroupIconDrawable = 2130903266;
// aapt resource value: 0x7F0300E3
public const int mediaRouteSpeakerIconDrawable = 2130903267;
// aapt resource value: 0x7F0300E4
public const int mediaRouteStopDrawable = 2130903268;
// aapt resource value: 0x7F0300E5
public const int mediaRouteTheme = 2130903269;
// aapt resource value: 0x7F0300E6
public const int mediaRouteTvIconDrawable = 2130903270;
// aapt resource value: 0x7F0300E7
public const int menu = 2130903271;
// aapt resource value: 0x7F0300E8
public const int multiChoiceItemLayout = 2130903272;
// aapt resource value: 0x7F0300E9
public const int navigationContentDescription = 2130903273;
// aapt resource value: 0x7F0300EA
public const int navigationIcon = 2130903274;
// aapt resource value: 0x7F0300EB
public const int navigationMode = 2130903275;
// aapt resource value: 0x7F0300EC
public const int numericModifiers = 2130903276;
// aapt resource value: 0x7F0300ED
public const int overlapAnchor = 2130903277;
// aapt resource value: 0x7F0300EE
public const int paddingBottomNoButtons = 2130903278;
// aapt resource value: 0x7F0300EF
public const int paddingEnd = 2130903279;
// aapt resource value: 0x7F0300F0
public const int paddingStart = 2130903280;
// aapt resource value: 0x7F0300F1
public const int paddingTopNoTitle = 2130903281;
// aapt resource value: 0x7F0300F2
public const int panelBackground = 2130903282;
// aapt resource value: 0x7F0300F3
public const int panelMenuListTheme = 2130903283;
// aapt resource value: 0x7F0300F4
public const int panelMenuListWidth = 2130903284;
// aapt resource value: 0x7F0300F5
public const int passwordToggleContentDescription = 2130903285;
// aapt resource value: 0x7F0300F6
public const int passwordToggleDrawable = 2130903286;
// aapt resource value: 0x7F0300F7
public const int passwordToggleEnabled = 2130903287;
// aapt resource value: 0x7F0300F8
public const int passwordToggleTint = 2130903288;
// aapt resource value: 0x7F0300F9
public const int passwordToggleTintMode = 2130903289;
// aapt resource value: 0x7F0300FA
public const int popupMenuStyle = 2130903290;
// aapt resource value: 0x7F0300FB
public const int popupTheme = 2130903291;
// aapt resource value: 0x7F0300FC
public const int popupWindowStyle = 2130903292;
// aapt resource value: 0x7F0300FD
public const int preserveIconSpacing = 2130903293;
// aapt resource value: 0x7F0300FE
public const int pressedTranslationZ = 2130903294;
// aapt resource value: 0x7F0300FF
public const int progressBarPadding = 2130903295;
// aapt resource value: 0x7F030100
public const int progressBarStyle = 2130903296;
// aapt resource value: 0x7F030101
public const int queryBackground = 2130903297;
// aapt resource value: 0x7F030102
public const int queryHint = 2130903298;
// aapt resource value: 0x7F030103
public const int radioButtonStyle = 2130903299;
// aapt resource value: 0x7F030104
public const int ratingBarStyle = 2130903300;
// aapt resource value: 0x7F030105
public const int ratingBarStyleIndicator = 2130903301;
// aapt resource value: 0x7F030106
public const int ratingBarStyleSmall = 2130903302;
// aapt resource value: 0x7F030107
public const int reverseLayout = 2130903303;
// aapt resource value: 0x7F030108
public const int rippleColor = 2130903304;
// aapt resource value: 0x7F030109
public const int scrimAnimationDuration = 2130903305;
// aapt resource value: 0x7F03010A
public const int scrimVisibleHeightTrigger = 2130903306;
// aapt resource value: 0x7F03010B
public const int searchHintIcon = 2130903307;
// aapt resource value: 0x7F03010C
public const int searchIcon = 2130903308;
// aapt resource value: 0x7F03010D
public const int searchViewStyle = 2130903309;
// aapt resource value: 0x7F03010E
public const int seekBarStyle = 2130903310;
// aapt resource value: 0x7F03010F
public const int selectableItemBackground = 2130903311;
// aapt resource value: 0x7F030110
public const int selectableItemBackgroundBorderless = 2130903312;
// aapt resource value: 0x7F030111
public const int showAsAction = 2130903313;
// aapt resource value: 0x7F030112
public const int showDividers = 2130903314;
// aapt resource value: 0x7F030113
public const int showText = 2130903315;
// aapt resource value: 0x7F030114
public const int showTitle = 2130903316;
// aapt resource value: 0x7F030115
public const int singleChoiceItemLayout = 2130903317;
// aapt resource value: 0x7F030116
public const int spanCount = 2130903318;
// aapt resource value: 0x7F030117
public const int spinBars = 2130903319;
// aapt resource value: 0x7F030118
public const int spinnerDropDownItemStyle = 2130903320;
// aapt resource value: 0x7F030119
public const int spinnerStyle = 2130903321;
// aapt resource value: 0x7F03011A
public const int splitTrack = 2130903322;
// aapt resource value: 0x7F03011B
public const int srcCompat = 2130903323;
// aapt resource value: 0x7F03011C
public const int stackFromEnd = 2130903324;
// aapt resource value: 0x7F03011D
public const int state_above_anchor = 2130903325;
// aapt resource value: 0x7F03011E
public const int state_collapsed = 2130903326;
// aapt resource value: 0x7F03011F
public const int state_collapsible = 2130903327;
// aapt resource value: 0x7F030120
public const int statusBarBackground = 2130903328;
// aapt resource value: 0x7F030121
public const int statusBarScrim = 2130903329;
// aapt resource value: 0x7F030122
public const int subMenuArrow = 2130903330;
// aapt resource value: 0x7F030123
public const int submitBackground = 2130903331;
// aapt resource value: 0x7F030124
public const int subtitle = 2130903332;
// aapt resource value: 0x7F030125
public const int subtitleTextAppearance = 2130903333;
// aapt resource value: 0x7F030126
public const int subtitleTextColor = 2130903334;
// aapt resource value: 0x7F030127
public const int subtitleTextStyle = 2130903335;
// aapt resource value: 0x7F030128
public const int suggestionRowLayout = 2130903336;