-
Notifications
You must be signed in to change notification settings - Fork 22
/
attributes.go
2471 lines (2470 loc) · 55.2 KB
/
attributes.go
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
package apkparser
// grep 'public static final int [a-zA-Z_]*=0x0101' R.java
func getAttributteName(id uint32) string {
switch id {
case 0x0101006a:
return "absListViewStyle"
case 0x01010380:
return "accessibilityEventTypes"
case 0x01010382:
return "accessibilityFeedbackType"
case 0x01010384:
return "accessibilityFlags"
case 0x010103ee:
return "accessibilityLiveRegion"
case 0x010104d2:
return "accessibilityTraversalAfter"
case 0x010104d1:
return "accessibilityTraversalBefore"
case 0x0101029f:
return "accountPreferences"
case 0x0101028f:
return "accountType"
case 0x0101002d:
return "action"
case 0x0101039b:
return "actionBarDivider"
case 0x0101039c:
return "actionBarItemBackground"
case 0x0101048d:
return "actionBarPopupTheme"
case 0x010102eb:
return "actionBarSize"
case 0x01010388:
return "actionBarSplitStyle"
case 0x010102ce:
return "actionBarStyle"
case 0x010102f4:
return "actionBarTabBarStyle"
case 0x010102f3:
return "actionBarTabStyle"
case 0x010102f5:
return "actionBarTabTextStyle"
case 0x01010431:
return "actionBarTheme"
case 0x01010397:
return "actionBarWidgetTheme"
case 0x010102d8:
return "actionButtonStyle"
case 0x010102d7:
return "actionDropDownStyle"
case 0x010102fb:
return "actionLayout"
case 0x01010360:
return "actionMenuTextAppearance"
case 0x01010361:
return "actionMenuTextColor"
case 0x010102db:
return "actionModeBackground"
case 0x010102f7:
return "actionModeCloseButtonStyle"
case 0x010102dc:
return "actionModeCloseDrawable"
case 0x01010312:
return "actionModeCopyDrawable"
case 0x01010311:
return "actionModeCutDrawable"
case 0x0101047a:
return "actionModeFindDrawable"
case 0x01010313:
return "actionModePasteDrawable"
case 0x0101037e:
return "actionModeSelectAllDrawable"
case 0x01010479:
return "actionModeShareDrawable"
case 0x0101039d:
return "actionModeSplitBackground"
case 0x01010394:
return "actionModeStyle"
case 0x0101047b:
return "actionModeWebSearchDrawable"
case 0x010102f6:
return "actionOverflowButtonStyle"
case 0x01010444:
return "actionOverflowMenuStyle"
case 0x01010389:
return "actionProviderClass"
case 0x010102fc:
return "actionViewClass"
case 0x010102fd:
return "activatedBackgroundIndicator"
case 0x010100ba:
return "activityCloseEnterAnimation"
case 0x010100bb:
return "activityCloseExitAnimation"
case 0x010100b8:
return "activityOpenEnterAnimation"
case 0x010100b9:
return "activityOpenExitAnimation"
case 0x010103e6:
return "addPrintersActivity"
case 0x010100f0:
return "addStatesFromChildren"
case 0x0101011e:
return "adjustViewBounds"
case 0x010103f1:
return "advancedPrintOptionsActivity"
case 0x01010355:
return "alertDialogIcon"
case 0x0101005d:
return "alertDialogStyle"
case 0x01010309:
return "alertDialogTheme"
case 0x0101037a:
return "alignmentMode"
case 0x010102cc:
return "allContactsName"
case 0x01010280:
return "allowBackup"
case 0x01010005:
return "allowClearUserData"
case 0x010103f5:
return "allowEmbedded"
case 0x01010332:
return "allowParallelSyncs"
case 0x01010259:
return "allowSingleTap"
case 0x01010204:
return "allowTaskReparenting"
case 0x010104df:
return "allowUndo"
case 0x0101031f:
return "alpha"
case 0x010101e3:
return "alphabeticShortcut"
case 0x010100ef:
return "alwaysDrawnWithCache"
case 0x01010203:
return "alwaysRetainTaskState"
case 0x010104a5:
return "amPmBackgroundColor"
case 0x010104a4:
return "amPmTextColor"
case 0x010104be:
return "ambientShadowAlpha"
case 0x010101a0:
return "angle"
case 0x010102d5:
return "animateFirstView"
case 0x010102f2:
return "animateLayoutChanges"
case 0x0101025c:
return "animateOnClick"
case 0x010101cd:
return "animation"
case 0x010100ed:
return "animationCache"
case 0x01010112:
return "animationDuration"
case 0x010101ce:
return "animationOrder"
case 0x0101031a:
return "animationResolution"
case 0x0101011a:
return "antialias"
case 0x0101026c:
return "anyDensity"
case 0x010103ed:
return "apduServiceBanner"
case 0x01010211:
return "apiKey"
case 0x010102b4:
return "author"
case 0x01010018:
return "authorities"
case 0x0101030f:
return "autoAdvanceViewId"
case 0x0101006b:
return "autoCompleteTextViewStyle"
case 0x010100b0:
return "autoLink"
case 0x010103ea:
return "autoMirrored"
case 0x01010447:
return "autoRemoveFromRecents"
case 0x010102b5:
return "autoStart"
case 0x0101016a:
return "autoText"
case 0x0101028c:
return "autoUrlDetect"
case 0x010104ee:
return "autoVerify"
case 0x010100d4:
return "background"
case 0x01010032:
return "backgroundDimAmount"
case 0x0101021f:
return "backgroundDimEnabled"
case 0x0101038b:
return "backgroundSplit"
case 0x0101038a:
return "backgroundStacked"
case 0x0101046b:
return "backgroundTint"
case 0x0101046c:
return "backgroundTintMode"
case 0x0101027f:
return "backupAgent"
case 0x010103f2:
return "banner"
case 0x0101031c:
return "baseline"
case 0x01010122:
return "baselineAlignBottom"
case 0x01010126:
return "baselineAligned"
case 0x01010127:
return "baselineAlignedChildIndex"
case 0x0101032b:
return "borderlessButtonStyle"
case 0x010101b0:
return "bottom"
case 0x010100cd:
return "bottomBright"
case 0x010100c9:
return "bottomDark"
case 0x010101ab:
return "bottomLeftRadius"
case 0x010100ce:
return "bottomMedium"
case 0x01010257:
return "bottomOffset"
case 0x010101ac:
return "bottomRightRadius"
case 0x01010304:
return "breadCrumbShortTitle"
case 0x01010303:
return "breadCrumbTitle"
case 0x010104dd:
return "breakStrategy"
case 0x0101014e:
return "bufferType"
case 0x01010107:
return "button"
case 0x0101032f:
return "buttonBarButtonStyle"
case 0x0101048b:
return "buttonBarNegativeButtonStyle"
case 0x0101048a:
return "buttonBarNeutralButtonStyle"
case 0x01010489:
return "buttonBarPositiveButtonStyle"
case 0x0101032e:
return "buttonBarStyle"
case 0x01010048:
return "buttonStyle"
case 0x0101004a:
return "buttonStyleInset"
case 0x01010049:
return "buttonStyleSmall"
case 0x0101004b:
return "buttonStyleToggle"
case 0x0101046f:
return "buttonTint"
case 0x01010470:
return "buttonTintMode"
case 0x01010101:
return "cacheColorHint"
case 0x0101049b:
return "calendarTextColor"
case 0x0101034c:
return "calendarViewShown"
case 0x0101035d:
return "calendarViewStyle"
case 0x010103d8:
return "canRequestEnhancedWebAccessibility"
case 0x010103d9:
return "canRequestFilterKeyEvents"
case 0x010103d7:
return "canRequestTouchExplorationMode"
case 0x01010385:
return "canRetrieveWindowContent"
case 0x01010230:
return "candidatesTextStyleSpans"
case 0x01010169:
return "capitalize"
case 0x010103e8:
return "category"
case 0x010100cc:
return "centerBright"
case 0x0101020b:
return "centerColor"
case 0x010100c8:
return "centerDark"
case 0x010100cf:
return "centerMedium"
case 0x010101a2:
return "centerX"
case 0x010101a3:
return "centerY"
case 0x0101008f:
return "checkBoxPreferenceStyle"
case 0x01010108:
return "checkMark"
case 0x010104a7:
return "checkMarkTint"
case 0x010104a8:
return "checkMarkTintMode"
case 0x010101e5:
return "checkable"
case 0x010101e0:
return "checkableBehavior"
case 0x0101006c:
return "checkboxStyle"
case 0x01010106:
return "checked"
case 0x01010148:
return "checkedButton"
case 0x010103c8:
return "checkedTextViewStyle"
case 0x01010111:
return "childDivider"
case 0x0101010c:
return "childIndicator"
case 0x010103d4:
return "childIndicatorEnd"
case 0x0101010f:
return "childIndicatorLeft"
case 0x01010110:
return "childIndicatorRight"
case 0x010103d3:
return "childIndicatorStart"
case 0x0101012b:
return "choiceMode"
case 0x01010015:
return "clearTaskOnLaunch"
case 0x010100e5:
return "clickable"
case 0x010100ea:
return "clipChildren"
case 0x0101020a:
return "clipOrientation"
case 0x010100eb:
return "clipToPadding"
case 0x01010481:
return "closeIcon"
case 0x01010242:
return "codes"
case 0x0101014b:
return "collapseColumns"
case 0x010104d0:
return "collapseContentDescription"
case 0x010101a5:
return "color"
case 0x01010435:
return "colorAccent"
case 0x01010390:
return "colorActivatedHighlight"
case 0x01010031:
return "colorBackground"
case 0x010102ab:
return "colorBackgroundCacheHint"
case 0x010104e2:
return "colorBackgroundFloating"
case 0x0101042b:
return "colorButtonNormal"
case 0x0101042a:
return "colorControlActivated"
case 0x0101042c:
return "colorControlHighlight"
case 0x01010429:
return "colorControlNormal"
case 0x010104ce:
return "colorEdgeEffect"
case 0x0101038f:
return "colorFocusedHighlight"
case 0x01010030:
return "colorForeground"
case 0x01010206:
return "colorForegroundInverse"
case 0x0101038e:
return "colorLongPressedHighlight"
case 0x01010391:
return "colorMultiSelectHighlight"
case 0x0101038d:
return "colorPressedHighlight"
case 0x01010433:
return "colorPrimary"
case 0x01010434:
return "colorPrimaryDark"
case 0x01010377:
return "columnCount"
case 0x010101cf:
return "columnDelay"
case 0x01010378:
return "columnOrderPreserved"
case 0x01010117:
return "columnWidth"
case 0x01010485:
return "commitIcon"
case 0x01010365:
return "compatibleWidthLimitDp"
case 0x01010172:
return "completionHint"
case 0x01010173:
return "completionHintView"
case 0x01010174:
return "completionThreshold"
case 0x0101001f:
return "configChanges"
case 0x0101025d:
return "configure"
case 0x01010196:
return "constantSize"
case 0x0101025b:
return "content"
case 0x010104b9:
return "contentAgeHint"
case 0x01010290:
return "contentAuthority"
case 0x01010273:
return "contentDescription"
case 0x01010454:
return "contentInsetEnd"
case 0x01010455:
return "contentInsetLeft"
case 0x01010456:
return "contentInsetRight"
case 0x01010453:
return "contentInsetStart"
case 0x010104e7:
return "contextClickable"
case 0x010104ba:
return "country"
case 0x01010123:
return "cropToPadding"
case 0x01010152:
return "cursorVisible"
case 0x010102d2:
return "customNavigationLayout"
case 0x0101033b:
return "customTokens"
case 0x010101d4:
return "cycles"
case 0x010101a7:
return "dashGap"
case 0x010101a6:
return "dashWidth"
case 0x0101002e:
return "data"
case 0x010104ac:
return "datePickerDialogTheme"
case 0x010104b3:
return "datePickerMode"
case 0x0101035c:
return "datePickerStyle"
case 0x01010349:
return "dateTextAppearance"
case 0x01010494:
return "dayOfWeekBackground"
case 0x01010495:
return "dayOfWeekTextAppearance"
case 0x0101000f:
return "debuggable"
case 0x010101ed:
return "defaultValue"
case 0x010101cc:
return "delay"
case 0x010101ec:
return "dependency"
case 0x010100f1:
return "descendantFocusability"
case 0x01010020:
return "description"
case 0x010102a6:
return "detachWallpaper"
case 0x010102a3:
return "detailColumn"
case 0x010102a4:
return "detailSocialSummary"
case 0x0101034e:
return "detailsElementBackground"
case 0x01010102:
return "dial"
case 0x010101f4:
return "dialogIcon"
case 0x010101f7:
return "dialogLayout"
case 0x010101f3:
return "dialogMessage"
case 0x01010091:
return "dialogPreferenceStyle"
case 0x010104d3:
return "dialogPreferredPadding"
case 0x01010308:
return "dialogTheme"
case 0x010101f2:
return "dialogTitle"
case 0x01010166:
return "digits"
case 0x010101d1:
return "direction"
case 0x010103a1:
return "directionDescriptions"
case 0x010101d2:
return "directionPriority"
case 0x010101f1:
return "disableDependentsState"
case 0x01010033:
return "disabledAlpha"
case 0x010102d0:
return "displayOptions"
case 0x0101011c:
return "dither"
case 0x01010129:
return "divider"
case 0x0101012a:
return "dividerHeight"
case 0x0101032c:
return "dividerHorizontal"
case 0x0101032a:
return "dividerPadding"
case 0x0101030a:
return "dividerVertical"
case 0x01010445:
return "documentLaunchMode"
case 0x010100fc:
return "drawSelectorOnTop"
case 0x01010199:
return "drawable"
case 0x0101016e:
return "drawableBottom"
case 0x01010393:
return "drawableEnd"
case 0x0101016f:
return "drawableLeft"
case 0x01010171:
return "drawablePadding"
case 0x01010170:
return "drawableRight"
case 0x01010392:
return "drawableStart"
case 0x010104d6:
return "drawableTint"
case 0x010104d7:
return "drawableTintMode"
case 0x0101016d:
return "drawableTop"
case 0x010100e8:
return "drawingCacheQuality"
case 0x01010263:
return "dropDownAnchor"
case 0x01010283:
return "dropDownHeight"
case 0x01010088:
return "dropDownHintAppearance"
case 0x010102ac:
return "dropDownHorizontalOffset"
case 0x01010086:
return "dropDownItemStyle"
case 0x0101006d:
return "dropDownListViewStyle"
case 0x01010175:
return "dropDownSelector"
case 0x010102d6:
return "dropDownSpinnerStyle"
case 0x010102ad:
return "dropDownVerticalOffset"
case 0x01010262:
return "dropDownWidth"
case 0x010100e9:
return "duplicateParentState"
case 0x01010198:
return "duration"
case 0x01010352:
return "editTextBackground"
case 0x01010351:
return "editTextColor"
case 0x01010092:
return "editTextPreferenceStyle"
case 0x0101006e:
return "editTextStyle"
case 0x0101016b:
return "editable"
case 0x01010224:
return "editorExtras"
case 0x0101045d:
return "elegantTextHeight"
case 0x01010440:
return "elevation"
case 0x010100ab:
return "ellipsize"
case 0x01010158:
return "ems"
case 0x0101000e:
return "enabled"
case 0x010104dc:
return "end"
case 0x0101019e:
return "endColor"
case 0x0101017d:
return "endYear"
case 0x0101030c:
return "enterFadeDuration"
case 0x010100b2:
return "entries"
case 0x010101f8:
return "entryValues"
case 0x0101027d:
return "eventsInterceptionEnabled"
case 0x01010442:
return "excludeClass"
case 0x01010017:
return "excludeFromRecents"
case 0x01010441:
return "excludeId"
case 0x0101044e:
return "excludeName"
case 0x0101030d:
return "exitFadeDuration"
case 0x01010052:
return "expandableListPreferredChildIndicatorLeft"
case 0x01010053:
return "expandableListPreferredChildIndicatorRight"
case 0x0101004f:
return "expandableListPreferredChildPaddingLeft"
case 0x01010050:
return "expandableListPreferredItemIndicatorLeft"
case 0x01010051:
return "expandableListPreferredItemIndicatorRight"
case 0x0101004e:
return "expandableListPreferredItemPaddingLeft"
case 0x0101006f:
return "expandableListViewStyle"
case 0x010102b6:
return "expandableListViewWhiteStyle"
case 0x01010010:
return "exported"
case 0x0101026b:
return "extraTension"
case 0x010104ea:
return "extractNativeLibs"
case 0x010101d3:
return "factor"
case 0x01010278:
return "fadeDuration"
case 0x0101027e:
return "fadeEnabled"
case 0x01010277:
return "fadeOffset"
case 0x010102aa:
return "fadeScrollbars"
case 0x010100df:
return "fadingEdge"
case 0x010100e0:
return "fadingEdgeLength"
case 0x010103e1:
return "fadingMode"
case 0x01010335:
return "fastScrollAlwaysVisible"
case 0x01010226:
return "fastScrollEnabled"
case 0x0101033a:
return "fastScrollOverlayPosition"
case 0x01010337:
return "fastScrollPreviewBackgroundLeft"
case 0x01010338:
return "fastScrollPreviewBackgroundRight"
case 0x010103f7:
return "fastScrollStyle"
case 0x01010359:
return "fastScrollTextColor"
case 0x01010336:
return "fastScrollThumbDrawable"
case 0x01010339:
return "fastScrollTrackDrawable"
case 0x010101bd:
return "fillAfter"
case 0x010104cc:
return "fillAlpha"
case 0x010101bc:
return "fillBefore"
case 0x01010404:
return "fillColor"
case 0x0101024f:
return "fillEnabled"
case 0x0101017a:
return "fillViewport"
case 0x0101011b:
return "filter"
case 0x010102c4:
return "filterTouchesWhenObscured"
case 0x010104e8:
return "fingerprintAuthDrawable"
case 0x010102a7:
return "finishOnCloseSystemDialogs"
case 0x01010014:
return "finishOnTaskLaunch"
case 0x0101033d:
return "firstDayOfWeek"
case 0x010100dd:
return "fitsSystemWindows"
case 0x01010179:
return "flipInterval"
case 0x010100da:
return "focusable"
case 0x010100db:
return "focusableInTouchMode"
case 0x01010343:
return "focusedMonthDateColor"
case 0x010103ac:
return "fontFamily"
case 0x010104b7:
return "fontFeatureSettings"
case 0x0101022f:
return "footerDividersEnabled"
case 0x01010109:
return "foreground"
case 0x01010200:
return "foregroundGravity"
case 0x0101046d:
return "foregroundTint"
case 0x0101046e:
return "foregroundTintMode"
case 0x01010105:
return "format"
case 0x010104d8:
return "fraction"
case 0x010102e3:
return "fragment"
case 0x010104c8:
return "fragmentAllowEnterTransitionOverlap"
case 0x010104c9:
return "fragmentAllowReturnTransitionOverlap"
case 0x010102e7:
return "fragmentCloseEnterAnimation"
case 0x010102e8:
return "fragmentCloseExitAnimation"
case 0x010104c3:
return "fragmentEnterTransition"
case 0x010104c2:
return "fragmentExitTransition"
case 0x010102e9:
return "fragmentFadeEnterAnimation"
case 0x010102ea:
return "fragmentFadeExitAnimation"
case 0x010102e5:
return "fragmentOpenEnterAnimation"
case 0x010102e6:
return "fragmentOpenExitAnimation"
case 0x010104c7:
return "fragmentReenterTransition"
case 0x010104c5:
return "fragmentReturnTransition"
case 0x010104c4:
return "fragmentSharedElementEnterTransition"
case 0x010104c6:
return "fragmentSharedElementReturnTransition"
case 0x0101016c:
return "freezesText"
case 0x010101ca:
return "fromAlpha"
case 0x010101b3:
return "fromDegrees"
case 0x0101044a:
return "fromId"
case 0x010103dd:
return "fromScene"
case 0x010101c6:
return "fromXDelta"
case 0x010101c2:
return "fromXScale"
case 0x010101c8:
return "fromYDelta"
case 0x010101c4:
return "fromYScale"
case 0x010104eb:
return "fullBackupContent"
case 0x01010473:
return "fullBackupOnly"
case 0x010100ca:
return "fullBright"
case 0x010100c6:
return "fullDark"
case 0x01010023:
return "functionalTest"
case 0x0101004c:
return "galleryItemBackground"
case 0x01010070:
return "galleryStyle"
case 0x01010275:
return "gestureColor"
case 0x0101027c:
return "gestureStrokeAngleThreshold"
case 0x0101027a:
return "gestureStrokeLengthThreshold"
case 0x0101027b:
return "gestureStrokeSquarenessThreshold"
case 0x01010279:
return "gestureStrokeType"
case 0x01010274:
return "gestureStrokeWidth"
case 0x01010281:
return "glEsVersion"
case 0x01010482:
return "goIcon"
case 0x010101a4:
return "gradientRadius"
case 0x0101001b:
return "grantUriPermissions"
case 0x010100af:
return "gravity"
case 0x01010071:
return "gridViewStyle"
case 0x0101010b:
return "groupIndicator"
case 0x01010103:
return "hand_hour"
case 0x01010104:
return "hand_minute"
case 0x0101025a:
return "handle"
case 0x01010022:
return "handleProfiling"
case 0x0101025e:
return "hapticFeedbackEnabled"
case 0x010102d3:
return "hardwareAccelerated"
case 0x0101000c:
return "hasCode"
case 0x010104a0:
return "headerAmPmTextAppearance"
case 0x0101012f:
return "headerBackground"
case 0x01010497:
return "headerDayOfMonthTextAppearance"
case 0x0101022e:
return "headerDividersEnabled"
case 0x01010496:
return "headerMonthTextAppearance"
case 0x0101049f:
return "headerTimeTextAppearance"
case 0x01010498:
return "headerYearTextAppearance"
case 0x01010155:
return "height"
case 0x01010443:
return "hideOnContentScroll"
case 0x01010150:
return "hint"
case 0x0101030b:
return "homeAsUpIndicator"
case 0x0101031d:
return "homeLayout"
case 0x0101012d:
return "horizontalDivider"
case 0x0101023f:
return "horizontalGap"
case 0x01010353:
return "horizontalScrollViewStyle"
case 0x01010114:
return "horizontalSpacing"
case 0x01010028:
return "host"
case 0x010104de:
return "hyphenationFrequency"
case 0x01010002:
return "icon"
case 0x01010249:
return "iconPreview"
case 0x010102fa:
return "iconifiedByDefault"
case 0x010100d0:
return "id"
case 0x010101ff:
return "ignoreGravity"
case 0x01010072:
return "imageButtonStyle"
case 0x01010073:
return "imageWellStyle"
case 0x01010266:
return "imeActionId"
case 0x01010265:
return "imeActionLabel"
case 0x01010268:
return "imeExtractEnterAnimation"
case 0x01010269:
return "imeExtractExitAnimation"
case 0x0101022c:
return "imeFullscreenBackground"
case 0x01010264:
return "imeOptions"
case 0x010102ee:
return "imeSubtypeExtraValue"
case 0x010102ec:
return "imeSubtypeLocale"
case 0x010102ed:
return "imeSubtypeMode"
case 0x010102c0:
return "immersive"
case 0x010103aa:
return "importantForAccessibility"
case 0x01010177:
return "inAnimation"
case 0x0101015f:
return "includeFontPadding"
case 0x0101026e:
return "includeInGlobalSearch"
case 0x01010139:
return "indeterminate"
case 0x0101013e:
return "indeterminateBehavior"
case 0x0101013b:
return "indeterminateDrawable"
case 0x0101013d:
return "indeterminateDuration"
case 0x0101013a:
return "indeterminateOnly"
case 0x01010318:
return "indeterminateProgressStyle"
case 0x01010469:
return "indeterminateTint"
case 0x0101046a:
return "indeterminateTintMode"
case 0x010103d2:
return "indicatorEnd"
case 0x0101010d:
return "indicatorLeft"
case 0x0101010e:
return "indicatorRight"
case 0x010103d1:
return "indicatorStart"
case 0x010100f3:
return "inflatedId"
case 0x0101001a:
return "initOrder"
case 0x010103c2:
return "initialKeyguardLayout"
case 0x01010251:
return "initialLayout"
case 0x0101025f:
return "innerRadius"
case 0x0101019b:
return "innerRadiusRatio"
case 0x01010168:
return "inputMethod"
case 0x01010220:
return "inputType"
case 0x010104b5:
return "inset"
case 0x010101ba:
return "insetBottom"
case 0x010101b7:
return "insetLeft"
case 0x010101b8:
return "insetRight"
case 0x010101b9:
return "insetTop"
case 0x010102b7:
return "installLocation"
case 0x01010141:
return "interpolator"
case 0x01010333:
return "isAlwaysSyncable"
case 0x010103e9:
return "isAsciiCapable"
case 0x0101037f:
return "isAuxiliary"
case 0x01010221:
return "isDefault"
case 0x010103f4:
return "isGame"
case 0x01010147:
return "isIndicator"
case 0x01010246:
return "isModifier"
case 0x01010248:
return "isRepeatable"
case 0x0101024e:
return "isScrollContainer"
case 0x01010247:
return "isSticky"
case 0x010103a9:
return "isolatedProcess"
case 0x01010130:
return "itemBackground"
case 0x01010131:
return "itemIconDisabledAlpha"
case 0x0101032d:
return "itemPadding"
case 0x0101012c:
return "itemTextAppearance"
case 0x01010216:
return "keepScreenOn"
case 0x010101e8:
return "key"
case 0x01010233:
return "keyBackground"
case 0x01010245: