xuxiuxi
2017-03-27 69a6b83ce4de67d42e347af6bfc712edcc96b50f
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
int anim abc_fade_in 0x7f050000
int anim abc_fade_out 0x7f050001
int anim abc_grow_fade_in_from_bottom 0x7f050002
int anim abc_popup_enter 0x7f050003
int anim abc_popup_exit 0x7f050004
int anim abc_shrink_fade_out_from_bottom 0x7f050005
int anim abc_slide_in_bottom 0x7f050006
int anim abc_slide_in_top 0x7f050007
int anim abc_slide_out_bottom 0x7f050008
int anim abc_slide_out_top 0x7f050009
int anim design_fab_in 0x7f05000a
int anim design_fab_out 0x7f05000b
int anim design_snackbar_in 0x7f05000c
int anim design_snackbar_out 0x7f05000d
int anim fade_in 0x7f05000e
int anim fade_out 0x7f05000f
int attr actionBarDivider 0x7f0100bf
int attr actionBarItemBackground 0x7f0100c0
int attr actionBarPopupTheme 0x7f0100b9
int attr actionBarSize 0x7f0100be
int attr actionBarSplitStyle 0x7f0100bb
int attr actionBarStyle 0x7f0100ba
int attr actionBarTabBarStyle 0x7f0100b5
int attr actionBarTabStyle 0x7f0100b4
int attr actionBarTabTextStyle 0x7f0100b6
int attr actionBarTheme 0x7f0100bc
int attr actionBarWidgetTheme 0x7f0100bd
int attr actionButtonStyle 0x7f0100d9
int attr actionDropDownStyle 0x7f0100d5
int attr actionLayout 0x7f01006a
int attr actionMenuTextAppearance 0x7f0100c1
int attr actionMenuTextColor 0x7f0100c2
int attr actionModeBackground 0x7f0100c5
int attr actionModeCloseButtonStyle 0x7f0100c4
int attr actionModeCloseDrawable 0x7f0100c7
int attr actionModeCopyDrawable 0x7f0100c9
int attr actionModeCutDrawable 0x7f0100c8
int attr actionModeFindDrawable 0x7f0100cd
int attr actionModePasteDrawable 0x7f0100ca
int attr actionModePopupWindowStyle 0x7f0100cf
int attr actionModeSelectAllDrawable 0x7f0100cb
int attr actionModeShareDrawable 0x7f0100cc
int attr actionModeSplitBackground 0x7f0100c6
int attr actionModeStyle 0x7f0100c3
int attr actionModeWebSearchDrawable 0x7f0100ce
int attr actionOverflowButtonStyle 0x7f0100b7
int attr actionOverflowMenuStyle 0x7f0100b8
int attr actionProviderClass 0x7f01006c
int attr actionViewClass 0x7f01006b
int attr activityChooserViewStyle 0x7f0100e1
int attr actualImageScaleType 0x7f010058
int attr actualImageUri 0x7f010089
int attr alertDialogButtonGroupStyle 0x7f010104
int attr alertDialogCenterButtons 0x7f010105
int attr alertDialogStyle 0x7f010103
int attr alertDialogTheme 0x7f010106
int attr allowStacking 0x7f010028
int attr arrowHeadLength 0x7f010044
int attr arrowShaftLength 0x7f010045
int attr autoCompleteTextViewStyle 0x7f01010b
int attr background 0x7f01000c
int attr backgroundImage 0x7f010059
int attr backgroundSplit 0x7f01000e
int attr backgroundStacked 0x7f01000d
int attr backgroundTint 0x7f010128
int attr backgroundTintMode 0x7f010129
int attr barLength 0x7f010046
int attr behavior_overlapTop 0x7f01007b
int attr borderWidth 0x7f01004b
int attr borderlessButtonStyle 0x7f0100de
int attr buttonBarButtonStyle 0x7f0100db
int attr buttonBarNegativeButtonStyle 0x7f010109
int attr buttonBarNeutralButtonStyle 0x7f01010a
int attr buttonBarPositiveButtonStyle 0x7f010108
int attr buttonBarStyle 0x7f0100da
int attr buttonPanelSideLayout 0x7f01001f
int attr buttonStyle 0x7f01010c
int attr buttonStyleSmall 0x7f01010d
int attr buttonTint 0x7f010038
int attr buttonTintMode 0x7f010039
int attr checkboxStyle 0x7f01010e
int attr checkedTextViewStyle 0x7f01010f
int attr closeIcon 0x7f010080
int attr closeItemLayout 0x7f01001c
int attr collapseContentDescription 0x7f01011f
int attr collapseIcon 0x7f01011e
int attr collapsedTitleGravity 0x7f010035
int attr collapsedTitleTextAppearance 0x7f010031
int attr color 0x7f010040
int attr colorAccent 0x7f0100fc
int attr colorButtonNormal 0x7f010100
int attr colorControlActivated 0x7f0100fe
int attr colorControlHighlight 0x7f0100ff
int attr colorControlNormal 0x7f0100fd
int attr colorPrimary 0x7f0100fa
int attr colorPrimaryDark 0x7f0100fb
int attr colorSwitchThumbNormal 0x7f010101
int attr commitIcon 0x7f010085
int attr contentInsetEnd 0x7f010017
int attr contentInsetLeft 0x7f010018
int attr contentInsetRight 0x7f010019
int attr contentInsetStart 0x7f010016
int attr contentScrim 0x7f010032
int attr controlBackground 0x7f010102
int attr counterEnabled 0x7f0100a5
int attr counterMaxLength 0x7f0100a6
int attr counterOverflowTextAppearance 0x7f0100a8
int attr counterTextAppearance 0x7f0100a7
int attr customNavigationLayout 0x7f01000f
int attr defaultQueryHint 0x7f01007f
int attr dialogPreferredPadding 0x7f0100d3
int attr dialogTheme 0x7f0100d2
int attr displayOptions 0x7f010005
int attr divider 0x7f01000b
int attr dividerHorizontal 0x7f0100e0
int attr dividerPadding 0x7f010068
int attr dividerVertical 0x7f0100df
int attr drawableSize 0x7f010042
int attr drawerArrowStyle 0x7f010000
int attr dropDownListViewStyle 0x7f0100f2
int attr dropdownListPreferredItemHeight 0x7f0100d6
int attr editTextBackground 0x7f0100e7
int attr editTextColor 0x7f0100e6
int attr editTextStyle 0x7f010110
int attr elevation 0x7f01001a
int attr errorEnabled 0x7f0100a3
int attr errorTextAppearance 0x7f0100a4
int attr expandActivityOverflowButtonDrawable 0x7f01001e
int attr expanded 0x7f010024
int attr expandedTitleGravity 0x7f010036
int attr expandedTitleMargin 0x7f01002b
int attr expandedTitleMarginBottom 0x7f01002f
int attr expandedTitleMarginEnd 0x7f01002e
int attr expandedTitleMarginStart 0x7f01002c
int attr expandedTitleMarginTop 0x7f01002d
int attr expandedTitleTextAppearance 0x7f010030
int attr fabSize 0x7f010049
int attr fadeDuration 0x7f01004d
int attr failureImage 0x7f010053
int attr failureImageScaleType 0x7f010054
int attr foregroundInsidePadding 0x7f01004c
int attr gapBetweenBars 0x7f010043
int attr goIcon 0x7f010081
int attr headerLayout 0x7f010073
int attr height 0x7f010001
int attr hideOnContentScroll 0x7f010015
int attr hintAnimationEnabled 0x7f0100a9
int attr hintTextAppearance 0x7f0100a2
int attr homeAsUpIndicator 0x7f0100d8
int attr homeLayout 0x7f010010
int attr icon 0x7f010009
int attr iconifiedByDefault 0x7f01007d
int attr imageButtonStyle 0x7f0100e8
int attr indeterminateProgressStyle 0x7f010012
int attr initialActivityCount 0x7f01001d
int attr insetForeground 0x7f01007a
int attr isLightTheme 0x7f010002
int attr itemBackground 0x7f010071
int attr itemIconTint 0x7f01006f
int attr itemPadding 0x7f010014
int attr itemTextAppearance 0x7f010072
int attr itemTextColor 0x7f010070
int attr keylines 0x7f01003a
int attr layout 0x7f01007c
int attr layoutManager 0x7f010076
int attr layout_anchor 0x7f01003d
int attr layout_anchorGravity 0x7f01003f
int attr layout_behavior 0x7f01003c
int attr layout_collapseMode 0x7f010029
int attr layout_collapseParallaxMultiplier 0x7f01002a
int attr layout_keyline 0x7f01003e
int attr layout_scrollFlags 0x7f010025
int attr layout_scrollInterpolator 0x7f010026
int attr listChoiceBackgroundIndicator 0x7f0100f9
int attr listDividerAlertDialog 0x7f0100d4
int attr listItemLayout 0x7f010023
int attr listLayout 0x7f010020
int attr listPopupWindowStyle 0x7f0100f3
int attr listPreferredItemHeight 0x7f0100ed
int attr listPreferredItemHeightLarge 0x7f0100ef
int attr listPreferredItemHeightSmall 0x7f0100ee
int attr listPreferredItemPaddingLeft 0x7f0100f0
int attr listPreferredItemPaddingRight 0x7f0100f1
int attr logo 0x7f01000a
int attr logoDescription 0x7f010122
int attr maxActionInlineWidth 0x7f01008a
int attr maxButtonHeight 0x7f01011d
int attr measureWithLargestChild 0x7f010066
int attr menu 0x7f01006e
int attr multiChoiceItemLayout 0x7f010021
int attr navigationContentDescription 0x7f010121
int attr navigationIcon 0x7f010120
int attr navigationMode 0x7f010004
int attr overlapAnchor 0x7f010074
int attr overlayImage 0x7f01005a
int attr paddingEnd 0x7f010126
int attr paddingStart 0x7f010125
int attr panelBackground 0x7f0100f6
int attr panelMenuListTheme 0x7f0100f8
int attr panelMenuListWidth 0x7f0100f7
int attr placeholderImage 0x7f01004f
int attr placeholderImageScaleType 0x7f010050
int attr popupMenuStyle 0x7f0100e4
int attr popupTheme 0x7f01001b
int attr popupWindowStyle 0x7f0100e5
int attr preserveIconSpacing 0x7f01006d
int attr pressedStateOverlayImage 0x7f01005b
int attr pressedTranslationZ 0x7f01004a
int attr progressBarAutoRotateInterval 0x7f010057
int attr progressBarImage 0x7f010055
int attr progressBarImageScaleType 0x7f010056
int attr progressBarPadding 0x7f010013
int attr progressBarStyle 0x7f010011
int attr queryBackground 0x7f010087
int attr queryHint 0x7f01007e
int attr radioButtonStyle 0x7f010111
int attr ratingBarStyle 0x7f010112
int attr retryImage 0x7f010051
int attr retryImageScaleType 0x7f010052
int attr reverseLayout 0x7f010078
int attr rippleColor 0x7f010048
int attr roundAsCircle 0x7f01005c
int attr roundBottomLeft 0x7f010061
int attr roundBottomRight 0x7f010060
int attr roundTopLeft 0x7f01005e
int attr roundTopRight 0x7f01005f
int attr roundWithOverlayColor 0x7f010062
int attr roundedCornerRadius 0x7f01005d
int attr roundingBorderColor 0x7f010064
int attr roundingBorderPadding 0x7f010065
int attr roundingBorderWidth 0x7f010063
int attr searchHintIcon 0x7f010083
int attr searchIcon 0x7f010082
int attr searchViewStyle 0x7f0100ec
int attr seekBarStyle 0x7f010113
int attr selectableItemBackground 0x7f0100dc
int attr selectableItemBackgroundBorderless 0x7f0100dd
int attr showAsAction 0x7f010069
int attr showDividers 0x7f010067
int attr showText 0x7f010091
int attr singleChoiceItemLayout 0x7f010022
int attr spanCount 0x7f010077
int attr spinBars 0x7f010041
int attr spinnerDropDownItemStyle 0x7f0100d7
int attr spinnerStyle 0x7f010114
int attr splitTrack 0x7f010090
int attr stackFromEnd 0x7f010079
int attr state_above_anchor 0x7f010075
int attr statusBarBackground 0x7f01003b
int attr statusBarScrim 0x7f010033
int attr submitBackground 0x7f010088
int attr subtitle 0x7f010006
int attr subtitleTextAppearance 0x7f010117
int attr subtitleTextColor 0x7f010124
int attr subtitleTextStyle 0x7f010008
int attr suggestionRowLayout 0x7f010086
int attr switchMinWidth 0x7f01008e
int attr switchPadding 0x7f01008f
int attr switchStyle 0x7f010115
int attr switchTextAppearance 0x7f01008d
int attr tabBackground 0x7f010095
int attr tabContentStart 0x7f010094
int attr tabGravity 0x7f010097
int attr tabIndicatorColor 0x7f010092
int attr tabIndicatorHeight 0x7f010093
int attr tabMaxWidth 0x7f010099
int attr tabMinWidth 0x7f010098
int attr tabMode 0x7f010096
int attr tabPadding 0x7f0100a1
int attr tabPaddingBottom 0x7f0100a0
int attr tabPaddingEnd 0x7f01009f
int attr tabPaddingStart 0x7f01009d
int attr tabPaddingTop 0x7f01009e
int attr tabSelectedTextColor 0x7f01009c
int attr tabTextAppearance 0x7f01009a
int attr tabTextColor 0x7f01009b
int attr textAllCaps 0x7f010027
int attr textAppearanceLargePopupMenu 0x7f0100d0
int attr textAppearanceListItem 0x7f0100f4
int attr textAppearanceListItemSmall 0x7f0100f5
int attr textAppearanceSearchResultSubtitle 0x7f0100ea
int attr textAppearanceSearchResultTitle 0x7f0100e9
int attr textAppearanceSmallPopupMenu 0x7f0100d1
int attr textColorAlertDialogListItem 0x7f010107
int attr textColorSearchUrl 0x7f0100eb
int attr theme 0x7f010127
int attr thickness 0x7f010047
int attr thumbTextPadding 0x7f01008c
int attr title 0x7f010003
int attr titleEnabled 0x7f010037
int attr titleMarginBottom 0x7f01011c
int attr titleMarginEnd 0x7f01011a
int attr titleMarginStart 0x7f010119
int attr titleMarginTop 0x7f01011b
int attr titleMargins 0x7f010118
int attr titleTextAppearance 0x7f010116
int attr titleTextColor 0x7f010123
int attr titleTextStyle 0x7f010007
int attr toolbarId 0x7f010034
int attr toolbarNavigationButtonStyle 0x7f0100e3
int attr toolbarStyle 0x7f0100e2
int attr track 0x7f01008b
int attr vBackgroundColor 0x7f010131
int attr vBetweenMargin 0x7f01012c
int attr vLeftTextColor 0x7f010130
int attr vLeftTextSize 0x7f01012d
int attr vLeftTextString 0x7f01012a
int attr vRightTextColor 0x7f01012f
int attr vRightTextSize 0x7f01012e
int attr vRightTextString 0x7f01012b
int attr viewAspectRatio 0x7f01004e
int attr voiceIcon 0x7f010084
int attr windowActionBar 0x7f0100aa
int attr windowActionBarOverlay 0x7f0100ac
int attr windowActionModeOverlay 0x7f0100ad
int attr windowFixedHeightMajor 0x7f0100b1
int attr windowFixedHeightMinor 0x7f0100af
int attr windowFixedWidthMajor 0x7f0100ae
int attr windowFixedWidthMinor 0x7f0100b0
int attr windowMinWidthMajor 0x7f0100b2
int attr windowMinWidthMinor 0x7f0100b3
int attr windowNoTitle 0x7f0100ab
int bool abc_action_bar_embed_tabs 0x7f070003
int bool abc_action_bar_embed_tabs_pre_jb 0x7f070001
int bool abc_action_bar_expanded_action_views_exclusive 0x7f070004
int bool abc_allow_stacked_button_bar 0x7f070000
int bool abc_config_actionMenuItemAllCaps 0x7f070005
int bool abc_config_allowActionMenuItemTextWithIcon 0x7f070002
int bool abc_config_closeDialogWhenTouchOutside 0x7f070006
int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f070007
int color abc_background_cache_hint_selector_material_dark 0x7f0b004a
int color abc_background_cache_hint_selector_material_light 0x7f0b004b
int color abc_color_highlight_material 0x7f0b004c
int color abc_input_method_navigation_guard 0x7f0b0000
int color abc_primary_text_disable_only_material_dark 0x7f0b004d
int color abc_primary_text_disable_only_material_light 0x7f0b004e
int color abc_primary_text_material_dark 0x7f0b004f
int color abc_primary_text_material_light 0x7f0b0050
int color abc_search_url_text 0x7f0b0051
int color abc_search_url_text_normal 0x7f0b0001
int color abc_search_url_text_pressed 0x7f0b0002
int color abc_search_url_text_selected 0x7f0b0003
int color abc_secondary_text_material_dark 0x7f0b0052
int color abc_secondary_text_material_light 0x7f0b0053
int color accent_material_dark 0x7f0b0004
int color accent_material_light 0x7f0b0005
int color background_floating_material_dark 0x7f0b0006
int color background_floating_material_light 0x7f0b0007
int color background_material_dark 0x7f0b0008
int color background_material_light 0x7f0b0009
int color bright_foreground_disabled_material_dark 0x7f0b000a
int color bright_foreground_disabled_material_light 0x7f0b000b
int color bright_foreground_inverse_material_dark 0x7f0b000c
int color bright_foreground_inverse_material_light 0x7f0b000d
int color bright_foreground_material_dark 0x7f0b000e
int color bright_foreground_material_light 0x7f0b000f
int color button_material_dark 0x7f0b0010
int color button_material_light 0x7f0b0011
int color colorBackground 0x7f0b0012
int color colorCard 0x7f0b0013
int color colorPrimary 0x7f0b0014
int color colorRed 0x7f0b0015
int color colorSearch 0x7f0b0016
int color colorText_5 0x7f0b0017
int color colorText_b 0x7f0b0018
int color design_fab_shadow_end_color 0x7f0b0019
int color design_fab_shadow_mid_color 0x7f0b001a
int color design_fab_shadow_start_color 0x7f0b001b
int color design_fab_stroke_end_inner_color 0x7f0b001c
int color design_fab_stroke_end_outer_color 0x7f0b001d
int color design_fab_stroke_top_inner_color 0x7f0b001e
int color design_fab_stroke_top_outer_color 0x7f0b001f
int color design_snackbar_background_color 0x7f0b0020
int color design_textinput_error_color 0x7f0b0021
int color dim_foreground_disabled_material_dark 0x7f0b0022
int color dim_foreground_disabled_material_light 0x7f0b0023
int color dim_foreground_material_dark 0x7f0b0024
int color dim_foreground_material_light 0x7f0b0025
int color foreground_material_dark 0x7f0b0026
int color foreground_material_light 0x7f0b0027
int color highlighted_text_material_dark 0x7f0b0028
int color highlighted_text_material_light 0x7f0b0029
int color hint_foreground_material_dark 0x7f0b002a
int color hint_foreground_material_light 0x7f0b002b
int color material_blue_grey_800 0x7f0b002c
int color material_blue_grey_900 0x7f0b002d
int color material_blue_grey_950 0x7f0b002e
int color material_deep_teal_200 0x7f0b002f
int color material_deep_teal_500 0x7f0b0030
int color material_grey_100 0x7f0b0031
int color material_grey_300 0x7f0b0032
int color material_grey_50 0x7f0b0033
int color material_grey_600 0x7f0b0034
int color material_grey_800 0x7f0b0035
int color material_grey_850 0x7f0b0036
int color material_grey_900 0x7f0b0037
int color primary_dark_material_dark 0x7f0b0038
int color primary_dark_material_light 0x7f0b0039
int color primary_material_dark 0x7f0b003a
int color primary_material_light 0x7f0b003b
int color primary_text_default_material_dark 0x7f0b003c
int color primary_text_default_material_light 0x7f0b003d
int color primary_text_disabled_material_dark 0x7f0b003e
int color primary_text_disabled_material_light 0x7f0b003f
int color ripple_material_dark 0x7f0b0040
int color ripple_material_light 0x7f0b0041
int color secondary_text_default_material_dark 0x7f0b0042
int color secondary_text_default_material_light 0x7f0b0043
int color secondary_text_disabled_material_dark 0x7f0b0044
int color secondary_text_disabled_material_light 0x7f0b0045
int color switch_thumb_disabled_material_dark 0x7f0b0046
int color switch_thumb_disabled_material_light 0x7f0b0047
int color switch_thumb_material_dark 0x7f0b0054
int color switch_thumb_material_light 0x7f0b0055
int color switch_thumb_normal_material_dark 0x7f0b0048
int color switch_thumb_normal_material_light 0x7f0b0049
int color tab_item_tv 0x7f0b0056
int color tab_visitor_register 0x7f0b0057
int dimen abc_action_bar_content_inset_material 0x7f08000d
int dimen abc_action_bar_default_height_material 0x7f080001
int dimen abc_action_bar_default_padding_end_material 0x7f08000e
int dimen abc_action_bar_default_padding_start_material 0x7f08000f
int dimen abc_action_bar_icon_vertical_padding_material 0x7f08001a
int dimen abc_action_bar_overflow_padding_end_material 0x7f08001b
int dimen abc_action_bar_overflow_padding_start_material 0x7f08001c
int dimen abc_action_bar_progress_bar_size 0x7f080002
int dimen abc_action_bar_stacked_max_height 0x7f08001d
int dimen abc_action_bar_stacked_tab_max_width 0x7f08001e
int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f08001f
int dimen abc_action_bar_subtitle_top_margin_material 0x7f080020
int dimen abc_action_button_min_height_material 0x7f080021
int dimen abc_action_button_min_width_material 0x7f080022
int dimen abc_action_button_min_width_overflow_material 0x7f080023
int dimen abc_alert_dialog_button_bar_height 0x7f080000
int dimen abc_button_inset_horizontal_material 0x7f080024
int dimen abc_button_inset_vertical_material 0x7f080025
int dimen abc_button_padding_horizontal_material 0x7f080026
int dimen abc_button_padding_vertical_material 0x7f080027
int dimen abc_config_prefDialogWidth 0x7f080005
int dimen abc_control_corner_material 0x7f080028
int dimen abc_control_inset_material 0x7f080029
int dimen abc_control_padding_material 0x7f08002a
int dimen abc_dialog_fixed_height_major 0x7f080006
int dimen abc_dialog_fixed_height_minor 0x7f080007
int dimen abc_dialog_fixed_width_major 0x7f080008
int dimen abc_dialog_fixed_width_minor 0x7f080009
int dimen abc_dialog_list_padding_vertical_material 0x7f08002b
int dimen abc_dialog_min_width_major 0x7f08000a
int dimen abc_dialog_min_width_minor 0x7f08000b
int dimen abc_dialog_padding_material 0x7f08002c
int dimen abc_dialog_padding_top_material 0x7f08002d
int dimen abc_disabled_alpha_material_dark 0x7f08002e
int dimen abc_disabled_alpha_material_light 0x7f08002f
int dimen abc_dropdownitem_icon_width 0x7f080030
int dimen abc_dropdownitem_text_padding_left 0x7f080031
int dimen abc_dropdownitem_text_padding_right 0x7f080032
int dimen abc_edit_text_inset_bottom_material 0x7f080033
int dimen abc_edit_text_inset_horizontal_material 0x7f080034
int dimen abc_edit_text_inset_top_material 0x7f080035
int dimen abc_floating_window_z 0x7f080036
int dimen abc_list_item_padding_horizontal_material 0x7f080037
int dimen abc_panel_menu_list_width 0x7f080038
int dimen abc_search_view_preferred_width 0x7f080039
int dimen abc_search_view_text_min_width 0x7f08000c
int dimen abc_seekbar_track_background_height_material 0x7f08003a
int dimen abc_seekbar_track_progress_height_material 0x7f08003b
int dimen abc_select_dialog_padding_start_material 0x7f08003c
int dimen abc_switch_padding 0x7f080017
int dimen abc_text_size_body_1_material 0x7f08003d
int dimen abc_text_size_body_2_material 0x7f08003e
int dimen abc_text_size_button_material 0x7f08003f
int dimen abc_text_size_caption_material 0x7f080040
int dimen abc_text_size_display_1_material 0x7f080041
int dimen abc_text_size_display_2_material 0x7f080042
int dimen abc_text_size_display_3_material 0x7f080043
int dimen abc_text_size_display_4_material 0x7f080044
int dimen abc_text_size_headline_material 0x7f080045
int dimen abc_text_size_large_material 0x7f080046
int dimen abc_text_size_medium_material 0x7f080047
int dimen abc_text_size_menu_material 0x7f080048
int dimen abc_text_size_small_material 0x7f080049
int dimen abc_text_size_subhead_material 0x7f08004a
int dimen abc_text_size_subtitle_material_toolbar 0x7f080003
int dimen abc_text_size_title_material 0x7f08004b
int dimen abc_text_size_title_material_toolbar 0x7f080004
int dimen activity_horizontal_margin 0x7f080019
int dimen activity_vertical_margin 0x7f08004c
int dimen design_appbar_elevation 0x7f08004d
int dimen design_fab_border_width 0x7f08004e
int dimen design_fab_content_size 0x7f08004f
int dimen design_fab_elevation 0x7f080050
int dimen design_fab_size_mini 0x7f080051
int dimen design_fab_size_normal 0x7f080052
int dimen design_fab_translation_z_pressed 0x7f080053
int dimen design_navigation_elevation 0x7f080054
int dimen design_navigation_icon_padding 0x7f080055
int dimen design_navigation_icon_size 0x7f080056
int dimen design_navigation_max_width 0x7f080057
int dimen design_navigation_padding_bottom 0x7f080058
int dimen design_navigation_padding_top_default 0x7f080018
int dimen design_navigation_separator_vertical_padding 0x7f080059
int dimen design_snackbar_action_inline_max_width 0x7f080010
int dimen design_snackbar_background_corner_radius 0x7f080011
int dimen design_snackbar_elevation 0x7f08005a
int dimen design_snackbar_extra_spacing_horizontal 0x7f080012
int dimen design_snackbar_max_width 0x7f080013
int dimen design_snackbar_min_width 0x7f080014
int dimen design_snackbar_padding_horizontal 0x7f08005b
int dimen design_snackbar_padding_vertical 0x7f08005c
int dimen design_snackbar_padding_vertical_2lines 0x7f080015
int dimen design_snackbar_text_size 0x7f08005d
int dimen design_tab_max_width 0x7f08005e
int dimen design_tab_scrollable_min_width 0x7f080016
int dimen design_tab_text_size 0x7f08005f
int dimen design_tab_text_size_2line 0x7f080060
int dimen disabled_alpha_material_dark 0x7f080061
int dimen disabled_alpha_material_light 0x7f080062
int dimen highlight_alpha_material_colored 0x7f080063
int dimen highlight_alpha_material_dark 0x7f080064
int dimen highlight_alpha_material_light 0x7f080065
int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f080066
int dimen notification_large_icon_height 0x7f080067
int dimen notification_large_icon_width 0x7f080068
int dimen notification_subtext_size 0x7f080069
int dimen text_size_big 0x7f08006a
int dimen text_size_navigation 0x7f08006b
int dimen text_size_normal 0x7f08006c
int dimen text_size_small 0x7f08006d
int dimen view_size_0 0x7f08006e
int dimen view_size_1 0x7f08006f
int dimen view_size_10 0x7f080070
int dimen view_size_25 0x7f080071
int dimen view_size_5 0x7f080072
int dimen view_size_50 0x7f080073
int drawable abc_ab_share_pack_mtrl_alpha 0x7f020000
int drawable abc_action_bar_item_background_material 0x7f020001
int drawable abc_btn_borderless_material 0x7f020002
int drawable abc_btn_check_material 0x7f020003
int drawable abc_btn_check_to_on_mtrl_000 0x7f020004
int drawable abc_btn_check_to_on_mtrl_015 0x7f020005
int drawable abc_btn_colored_material 0x7f020006
int drawable abc_btn_default_mtrl_shape 0x7f020007
int drawable abc_btn_radio_material 0x7f020008
int drawable abc_btn_radio_to_on_mtrl_000 0x7f020009
int drawable abc_btn_radio_to_on_mtrl_015 0x7f02000a
int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f02000b
int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f02000c
int drawable abc_btn_switch_to_on_mtrl_00001 0x7f02000d
int drawable abc_btn_switch_to_on_mtrl_00012 0x7f02000e
int drawable abc_cab_background_internal_bg 0x7f02000f
int drawable abc_cab_background_top_material 0x7f020010
int drawable abc_cab_background_top_mtrl_alpha 0x7f020011
int drawable abc_control_background_material 0x7f020012
int drawable abc_dialog_material_background_dark 0x7f020013
int drawable abc_dialog_material_background_light 0x7f020014
int drawable abc_edit_text_material 0x7f020015
int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f020016
int drawable abc_ic_clear_mtrl_alpha 0x7f020017
int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f020018
int drawable abc_ic_go_search_api_mtrl_alpha 0x7f020019
int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f02001a
int drawable abc_ic_menu_cut_mtrl_alpha 0x7f02001b
int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f02001c
int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f02001d
int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f02001e
int drawable abc_ic_menu_share_mtrl_alpha 0x7f02001f
int drawable abc_ic_search_api_mtrl_alpha 0x7f020020
int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f020021
int drawable abc_item_background_holo_dark 0x7f020022
int drawable abc_item_background_holo_light 0x7f020023
int drawable abc_list_divider_mtrl_alpha 0x7f020024
int drawable abc_list_focused_holo 0x7f020025
int drawable abc_list_longpressed_holo 0x7f020026
int drawable abc_list_pressed_holo_dark 0x7f020027
int drawable abc_list_pressed_holo_light 0x7f020028
int drawable abc_list_selector_background_transition_holo_dark 0x7f020029
int drawable abc_list_selector_background_transition_holo_light 0x7f02002a
int drawable abc_list_selector_disabled_holo_dark 0x7f02002b
int drawable abc_list_selector_disabled_holo_light 0x7f02002c
int drawable abc_list_selector_holo_dark 0x7f02002d
int drawable abc_list_selector_holo_light 0x7f02002e
int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f02002f
int drawable abc_popup_background_mtrl_mult 0x7f020030
int drawable abc_ratingbar_full_material 0x7f020031
int drawable abc_scrubber_control_off_mtrl_alpha 0x7f020032
int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f020033
int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f020034
int drawable abc_scrubber_primary_mtrl_alpha 0x7f020035
int drawable abc_scrubber_track_mtrl_alpha 0x7f020036
int drawable abc_seekbar_thumb_material 0x7f020037
int drawable abc_seekbar_track_material 0x7f020038
int drawable abc_spinner_mtrl_am_alpha 0x7f020039
int drawable abc_spinner_textfield_background_material 0x7f02003a
int drawable abc_switch_thumb_material 0x7f02003b
int drawable abc_switch_track_mtrl_alpha 0x7f02003c
int drawable abc_tab_indicator_material 0x7f02003d
int drawable abc_tab_indicator_mtrl_alpha 0x7f02003e
int drawable abc_text_cursor_material 0x7f02003f
int drawable abc_textfield_activated_mtrl_alpha 0x7f020040
int drawable abc_textfield_default_mtrl_alpha 0x7f020041
int drawable abc_textfield_search_activated_mtrl_alpha 0x7f020042
int drawable abc_textfield_search_default_mtrl_alpha 0x7f020043
int drawable abc_textfield_search_material 0x7f020044
int drawable card_bcg 0x7f020045
int drawable design_fab_background 0x7f020046
int drawable design_snackbar_background 0x7f020047
int drawable main_btn_bcg 0x7f020048
int drawable normal_choose_bcg 0x7f020049
int drawable notification_template_icon_bg 0x7f020056
int drawable one_bottom_tab_bcg 0x7f02004a
int drawable surface_info_bcg 0x7f02004b
int drawable tab_main_0 0x7f02004c
int drawable tab_main_1 0x7f02004d
int drawable tab_main_2 0x7f02004e
int drawable tab_main_3 0x7f02004f
int drawable tab_main_4 0x7f020050
int drawable tab_main_5 0x7f020051
int drawable tab_main_6 0x7f020052
int drawable visitor_register_rb_left 0x7f020053
int drawable visitor_register_rb_right 0x7f020054
int drawable visitor_register_search_et 0x7f020055
int id action0 0x7f0c00bf
int id action_bar 0x7f0c0061
int id action_bar_activity_content 0x7f0c0000
int id action_bar_container 0x7f0c0060
int id action_bar_root 0x7f0c005c
int id action_bar_spinner 0x7f0c0001
int id action_bar_subtitle 0x7f0c0042
int id action_bar_title 0x7f0c0041
int id action_context_bar 0x7f0c0062
int id action_divider 0x7f0c00c3
int id action_menu_divider 0x7f0c0002
int id action_menu_presenter 0x7f0c0003
int id action_mode_bar 0x7f0c005e
int id action_mode_bar_stub 0x7f0c005d
int id action_mode_close_button 0x7f0c0043
int id activity_chooser_view_content 0x7f0c0044
int id activity_main 0x7f0c0070
int id alertTitle 0x7f0c0050
int id always 0x7f0c0039
int id attendance_bottom_title_ll 0x7f0c007c
int id attendance_card_number 0x7f0c0077
int id attendance_department 0x7f0c007b
int id attendance_line 0x7f0c007d
int id attendance_manager_avatar 0x7f0c0076
int id attendance_name 0x7f0c0078
int id attendance_recycler 0x7f0c007e
int id attendance_sex 0x7f0c0079
int id attendance_work 0x7f0c007a
int id beginning 0x7f0c0037
int id bottom 0x7f0c001c
int id buttonPanel 0x7f0c004b
int id cancel_action 0x7f0c00c0
int id center 0x7f0c001d
int id centerCrop 0x7f0c0030
int id centerInside 0x7f0c0031
int id center_horizontal 0x7f0c001e
int id center_vertical 0x7f0c001f
int id checkbox 0x7f0c0059
int id chronometer 0x7f0c00c6
int id clip_horizontal 0x7f0c002b
int id clip_vertical 0x7f0c002c
int id collapseActionView 0x7f0c003a
int id contentPanel 0x7f0c0051
int id custom 0x7f0c0057
int id customPanel 0x7f0c0056
int id datePicker 0x7f0c008c
int id date_picker_cancle 0x7f0c008e
int id date_picker_ok 0x7f0c008d
int id decor_content_parent 0x7f0c005f
int id default_activity_button 0x7f0c0047
int id design_menu_item_action_area 0x7f0c0085
int id design_menu_item_action_area_stub 0x7f0c0084
int id design_menu_item_text 0x7f0c0083
int id design_navigation_view 0x7f0c0082
int id device_camera1 0x7f0c008a
int id device_camera2 0x7f0c008b
int id device_landline 0x7f0c0088
int id device_school 0x7f0c0089
int id device_wifi 0x7f0c0087
int id disableHome 0x7f0c000e
int id edit_query 0x7f0c0063
int id end 0x7f0c0020
int id end_padder 0x7f0c00cb
int id enterAlways 0x7f0c0015
int id enterAlwaysCollapsed 0x7f0c0016
int id exitUntilCollapsed 0x7f0c0017
int id expand_activities_button 0x7f0c0045
int id expanded_menu 0x7f0c0058
int id fill 0x7f0c002d
int id fill_horizontal 0x7f0c002e
int id fill_vertical 0x7f0c0021
int id fitCenter 0x7f0c0032
int id fitEnd 0x7f0c0033
int id fitStart 0x7f0c0034
int id fitXY 0x7f0c0035
int id fixed 0x7f0c003e
int id focusCrop 0x7f0c0036
int id home 0x7f0c0004
int id homeAsUp 0x7f0c000f
int id icon 0x7f0c0049
int id ifRoom 0x7f0c003b
int id image 0x7f0c0046
int id info 0x7f0c00ca
int id item_attendance_address 0x7f0c00ac
int id item_attendance_num 0x7f0c00aa
int id item_attendance_state 0x7f0c00ad
int id item_attendance_time 0x7f0c00ab
int id item_device_check 0x7f0c00ae
int id item_device_tv 0x7f0c00af
int id item_register_base 0x7f0c00b6
int id item_register_bcg 0x7f0c00b7
int id item_touch_helper_previous_elevation 0x7f0c0005
int id item_user_base 0x7f0c00bc
int id item_user_bcg 0x7f0c00bd
int id item_visitor_from_base 0x7f0c00b0
int id item_visitor_info_check 0x7f0c00b1
int id item_visitor_info_name 0x7f0c00b2
int id item_visitor_info_right_icon 0x7f0c00b3
int id item_visitor_info_state 0x7f0c00b4
int id item_visitor_manager_time_tv 0x7f0c00b5
int id item_visitor_to_avatar 0x7f0c00bb
int id item_visitor_to_base 0x7f0c00b8
int id item_visitor_to_department 0x7f0c00ba
int id item_visitor_to_name 0x7f0c00b9
int id item_wheel_name 0x7f0c00be
int id left 0x7f0c0022
int id line1 0x7f0c00c4
int id line3 0x7f0c00c8
int id listMode 0x7f0c000b
int id list_item 0x7f0c0048
int id main_ui_base_left 0x7f0c008f
int id main_ui_base_right 0x7f0c0090
int id media_actions 0x7f0c00c2
int id middle 0x7f0c0038
int id mini 0x7f0c002f
int id multiply 0x7f0c0026
int id navigation_header_container 0x7f0c0081
int id never 0x7f0c003c
int id none 0x7f0c0010
int id normal 0x7f0c000c
int id one_bottom_list 0x7f0c0097
int id parallax 0x7f0c001a
int id parentPanel 0x7f0c004d
int id pin 0x7f0c001b
int id pop_country_cancel 0x7f0c00d0
int id pop_country_confirm 0x7f0c00cf
int id pop_country_name 0x7f0c00ce
int id pop_country_title 0x7f0c00cd
int id pop_single_cancel 0x7f0c00d4
int id pop_single_confirm 0x7f0c00d3
int id pop_single_ll 0x7f0c00cc
int id pop_single_title 0x7f0c00d1
int id pop_single_wheel 0x7f0c00d2
int id progress_circular 0x7f0c0006
int id progress_horizontal 0x7f0c0007
int id radio 0x7f0c005b
int id radio1 0x7f0c0093
int id radio2 0x7f0c0094
int id radio_group 0x7f0c0092
int id radio_line1 0x7f0c0095
int id radio_line2 0x7f0c0096
int id recyclerview_register 0x7f0c0098
int id recyclerview_user 0x7f0c0099
int id register_add 0x7f0c009b
int id register_base 0x7f0c009a
int id register_birthday 0x7f0c00a3
int id register_choose_photo 0x7f0c009d
int id register_company 0x7f0c00a8
int id register_et_content 0x7f0c00d6
int id register_et_title 0x7f0c00d5
int id register_id_class 0x7f0c00a6
int id register_id_num 0x7f0c00a7
int id register_idcard_photo 0x7f0c009f
int id register_name 0x7f0c00a0
int id register_nation 0x7f0c00a2
int id register_phone 0x7f0c00a5
int id register_remark 0x7f0c00a9
int id register_save 0x7f0c009c
int id register_sex 0x7f0c00a1
int id register_tv_content 0x7f0c00d8
int id register_tv_title 0x7f0c00d7
int id register_update__photo 0x7f0c009e
int id register_visitor_class 0x7f0c00a4
int id rewind_native 0x7f0c0074
int id right 0x7f0c0023
int id screen 0x7f0c0027
int id scroll 0x7f0c0018
int id scrollIndicatorDown 0x7f0c0055
int id scrollIndicatorUp 0x7f0c0052
int id scrollView 0x7f0c0053
int id scrollable 0x7f0c003f
int id search_badge 0x7f0c0065
int id search_bar 0x7f0c0064
int id search_button 0x7f0c0066
int id search_close_btn 0x7f0c006b
int id search_edit_frame 0x7f0c0067
int id search_go_btn 0x7f0c006d
int id search_mag_icon 0x7f0c0068
int id search_plate 0x7f0c0069
int id search_src_text 0x7f0c006a
int id search_voice_btn 0x7f0c006e
int id select_dialog_listview 0x7f0c006f
int id shortcut 0x7f0c005a
int id showCustom 0x7f0c0011
int id showHome 0x7f0c0012
int id showTitle 0x7f0c0013
int id snackbar_action 0x7f0c0080
int id snackbar_text 0x7f0c007f
int id snap 0x7f0c0019
int id spacer 0x7f0c004c
int id split_action_bar 0x7f0c0008
int id src_atop 0x7f0c0028
int id src_in 0x7f0c0029
int id src_over 0x7f0c002a
int id start 0x7f0c0024
int id start_native 0x7f0c0073
int id status_bar_latest_event_content 0x7f0c00c1
int id submit_area 0x7f0c006c
int id surfaceview1 0x7f0c0075
int id surfaceview2 0x7f0c0091
int id tabMode 0x7f0c000d
int id tab_item_icon 0x7f0c00d9
int id tab_item_title 0x7f0c00da
int id tab_layout 0x7f0c0071
int id tel_phone_to 0x7f0c00db
int id text 0x7f0c00c9
int id text2 0x7f0c00c7
int id textSpacerNoButtons 0x7f0c0054
int id time 0x7f0c00c5
int id title 0x7f0c004a
int id title_template 0x7f0c004f
int id top 0x7f0c0025
int id topPanel 0x7f0c004e
int id up 0x7f0c0009
int id useLogo 0x7f0c0014
int id view_offset_helper 0x7f0c000a
int id viewpager 0x7f0c0072
int id visitor_from 0x7f0c00fe
int id visitor_from_avatar 0x7f0c00e2
int id visitor_from_ll 0x7f0c00e1
int id visitor_manager_avatar 0x7f0c00e5
int id visitor_manager_card 0x7f0c00e6
int id visitor_manager_recycler 0x7f0c00e3
int id visitor_manager_row1 0x7f0c00e7
int id visitor_manager_row2 0x7f0c00e8
int id visitor_manager_row3 0x7f0c00e9
int id visitor_manager_row4 0x7f0c00ea
int id visitor_manager_row5 0x7f0c00eb
int id visitor_manager_row6 0x7f0c00ec
int id visitor_manager_row7 0x7f0c00ed
int id visitor_manager_row_content_left 0x7f0c00ef
int id visitor_manager_row_content_right 0x7f0c00f1
int id visitor_manager_row_title_left 0x7f0c00ee
int id visitor_manager_row_title_right 0x7f0c00f0
int id visitor_manager_search_et 0x7f0c0086
int id visitor_manager_top_ll 0x7f0c00e4
int id visitor_reason_tv 0x7f0c0100
int id visitor_register_add 0x7f0c00fc
int id visitor_register_check_class 0x7f0c00f7
int id visitor_register_check_class_ll 0x7f0c00f6
int id visitor_register_check_department 0x7f0c00f9
int id visitor_register_check_name 0x7f0c00f8
int id visitor_register_print 0x7f0c00fb
int id visitor_register_radio 0x7f0c00f2
int id visitor_register_rb_left 0x7f0c00f3
int id visitor_register_rb_right 0x7f0c00f4
int id visitor_register_recycler 0x7f0c00fa
int id visitor_register_save 0x7f0c00fd
int id visitor_register_search_et 0x7f0c00f5
int id visitor_remark_et 0x7f0c0101
int id visitor_title 0x7f0c00dc
int id visitor_to 0x7f0c00ff
int id visitor_to_avatar 0x7f0c00de
int id visitor_to_landline 0x7f0c00e0
int id visitor_to_ll 0x7f0c00dd
int id visitor_to_mobile 0x7f0c00df
int id withText 0x7f0c003d
int id wrap_content 0x7f0c0040
int integer abc_config_activityDefaultDur 0x7f0a0002
int integer abc_config_activityShortDur 0x7f0a0003
int integer abc_max_action_buttons 0x7f0a0000
int integer cancel_button_image_alpha 0x7f0a0004
int integer design_snackbar_text_max_lines 0x7f0a0001
int integer status_bar_notification_info_maxnum 0x7f0a0005
int layout abc_action_bar_title_item 0x7f040000
int layout abc_action_bar_up_container 0x7f040001
int layout abc_action_bar_view_list_nav_layout 0x7f040002
int layout abc_action_menu_item_layout 0x7f040003
int layout abc_action_menu_layout 0x7f040004
int layout abc_action_mode_bar 0x7f040005
int layout abc_action_mode_close_item_material 0x7f040006
int layout abc_activity_chooser_view 0x7f040007
int layout abc_activity_chooser_view_list_item 0x7f040008
int layout abc_alert_dialog_button_bar_material 0x7f040009
int layout abc_alert_dialog_material 0x7f04000a
int layout abc_dialog_title_material 0x7f04000b
int layout abc_expanded_menu_layout 0x7f04000c
int layout abc_list_menu_item_checkbox 0x7f04000d
int layout abc_list_menu_item_icon 0x7f04000e
int layout abc_list_menu_item_layout 0x7f04000f
int layout abc_list_menu_item_radio 0x7f040010
int layout abc_popup_menu_item_layout 0x7f040011
int layout abc_screen_content_include 0x7f040012
int layout abc_screen_simple 0x7f040013
int layout abc_screen_simple_overlay_action_mode 0x7f040014
int layout abc_screen_toolbar 0x7f040015
int layout abc_search_dropdown_item_icons_2line 0x7f040016
int layout abc_search_view 0x7f040017
int layout abc_select_dialog_material 0x7f040018
int layout activity_main 0x7f040019
int layout activity_test_argb_8888_actiivty 0x7f04001a
int layout attendance_manager_right 0x7f04001b
int layout design_layout_snackbar 0x7f04001c
int layout design_layout_snackbar_include 0x7f04001d
int layout design_layout_tab_icon 0x7f04001e
int layout design_layout_tab_text 0x7f04001f
int layout design_menu_item_action_area 0x7f040020
int layout design_navigation_item 0x7f040021
int layout design_navigation_item_header 0x7f040022
int layout design_navigation_item_separator 0x7f040023
int layout design_navigation_item_subheader 0x7f040024
int layout design_navigation_menu 0x7f040025
int layout design_navigation_menu_item 0x7f040026
int layout device_manager_left 0x7f040027
int layout device_manager_right 0x7f040028
int layout dialog_date_picker 0x7f040029
int layout fragment_main_ui_base 0x7f04002a
int layout fragment_one 0x7f04002b
int layout fragment_register 0x7f04002c
int layout fragment_two 0x7f04002d
int layout item_attendance 0x7f04002e
int layout item_device_left 0x7f04002f
int layout item_visitor_from 0x7f040030
int layout item_visitor_manager_info 0x7f040031
int layout item_visitor_manager_time 0x7f040032
int layout item_visitor_registe 0x7f040033
int layout item_visitor_to 0x7f040034
int layout item_visitor_user 0x7f040035
int layout item_wheel_list 0x7f040036
int layout notification_media_action 0x7f040037
int layout notification_media_cancel_action 0x7f040038
int layout notification_template_big_media 0x7f040039
int layout notification_template_big_media_narrow 0x7f04003a
int layout notification_template_lines 0x7f04003b
int layout notification_template_media 0x7f04003c
int layout notification_template_part_chronometer 0x7f04003d
int layout notification_template_part_time 0x7f04003e
int layout pop_country 0x7f04003f
int layout pop_single_selection 0x7f040040
int layout registe_edittext 0x7f040041
int layout register_textview 0x7f040042
int layout select_dialog_item_material 0x7f040043
int layout select_dialog_multichoice_material 0x7f040044
int layout select_dialog_singlechoice_material 0x7f040045
int layout support_simple_spinner_dropdown_item 0x7f040046
int layout tab_main 0x7f040047
int layout tel_phone_right 0x7f040048
int layout view_visitor 0x7f040049
int layout visitor_manager_left 0x7f04004a
int layout visitor_manager_right 0x7f04004b
int layout visitor_manager_row_content 0x7f04004c
int layout visitor_register_left 0x7f04004d
int layout visitor_register_right 0x7f04004e
int mipmap ic_launcher 0x7f030000
int mipmap main_tab_1_normal 0x7f030001
int mipmap main_tab_1_press 0x7f030002
int mipmap main_tab_2_normal 0x7f030003
int mipmap main_tab_2_press 0x7f030004
int mipmap main_tab_3_normal 0x7f030005
int mipmap main_tab_3_press 0x7f030006
int mipmap main_tab_4_normal 0x7f030007
int mipmap main_tab_4_press 0x7f030008
int mipmap main_tab_5_normal 0x7f030009
int mipmap main_tab_5_press 0x7f03000a
int mipmap main_tab_6_normal 0x7f03000b
int mipmap main_tab_6_press 0x7f03000c
int mipmap main_tab_7_normal 0x7f03000d
int mipmap main_tab_7_press 0x7f03000e
int mipmap timg 0x7f03000f
int string abc_action_bar_home_description 0x7f060000
int string abc_action_bar_home_description_format 0x7f060001
int string abc_action_bar_home_subtitle_description_format 0x7f060002
int string abc_action_bar_up_description 0x7f060003
int string abc_action_menu_overflow_description 0x7f060004
int string abc_action_mode_done 0x7f060005
int string abc_activity_chooser_view_see_all 0x7f060006
int string abc_activitychooserview_choose_application 0x7f060007
int string abc_capital_off 0x7f060008
int string abc_capital_on 0x7f060009
int string abc_search_hint 0x7f06000a
int string abc_searchview_description_clear 0x7f06000b
int string abc_searchview_description_query 0x7f06000c
int string abc_searchview_description_search 0x7f06000d
int string abc_searchview_description_submit 0x7f06000e
int string abc_searchview_description_voice 0x7f06000f
int string abc_shareactionprovider_share_with 0x7f060010
int string abc_shareactionprovider_share_with_application 0x7f060011
int string abc_toolbar_collapse_description 0x7f060012
int string app_name 0x7f060014
int string appbar_scrolling_view_behavior 0x7f060015
int string attendance_address 0x7f060016
int string attendance_time 0x7f060017
int string attendance_type 0x7f060018
int string base_information 0x7f060019
int string cancel 0x7f06001a
int string character_counter_pattern 0x7f06001b
int string check_class 0x7f06001c
int string confirm 0x7f06001d
int string country 0x7f06001e
int string device_camera 0x7f06001f
int string device_camera1 0x7f060020
int string device_camera2 0x7f060021
int string device_landline 0x7f060022
int string device_school 0x7f060023
int string device_set 0x7f060024
int string device_wifi 0x7f060025
int string number 0x7f060026
int string status_bar_notification_info_overflow 0x7f060013
int string title_birthday 0x7f060027
int string title_card_number 0x7f060028
int string title_companyName 0x7f060029
int string title_department 0x7f06002a
int string title_idClass 0x7f06002b
int string title_idNumber 0x7f06002c
int string title_name 0x7f06002d
int string title_nation 0x7f06002e
int string title_phone 0x7f06002f
int string title_remark 0x7f060030
int string title_sex 0x7f060031
int string title_visitor 0x7f060032
int string title_visitorClass 0x7f060033
int string title_visitor_department 0x7f060034
int string title_visitor_end_time 0x7f060035
int string title_visitor_start_time 0x7f060036
int string title_visitor_state 0x7f060037
int string title_visitor_thing 0x7f060038
int string title_work 0x7f060039
int string visitor_information 0x7f06003a
int string visitor_reason 0x7f06003b
int string visitor_remark 0x7f06003c
int style AlertDialog_AppCompat 0x7f09007e
int style AlertDialog_AppCompat_Light 0x7f09007f
int style Animation_AppCompat_Dialog 0x7f090080
int style Animation_AppCompat_DropDownUp 0x7f090081
int style AppTheme 0x7f090082
int style AppTheme_AppDate 0x7f090083
int style Base_AlertDialog_AppCompat 0x7f090084
int style Base_AlertDialog_AppCompat_Light 0x7f090085
int style Base_Animation_AppCompat_Dialog 0x7f090086
int style Base_Animation_AppCompat_DropDownUp 0x7f090087
int style Base_DialogWindowTitle_AppCompat 0x7f090088
int style Base_DialogWindowTitleBackground_AppCompat 0x7f090089
int style Base_TextAppearance_AppCompat 0x7f090030
int style Base_TextAppearance_AppCompat_Body1 0x7f090031
int style Base_TextAppearance_AppCompat_Body2 0x7f090032
int style Base_TextAppearance_AppCompat_Button 0x7f09001a
int style Base_TextAppearance_AppCompat_Caption 0x7f090033
int style Base_TextAppearance_AppCompat_Display1 0x7f090034
int style Base_TextAppearance_AppCompat_Display2 0x7f090035
int style Base_TextAppearance_AppCompat_Display3 0x7f090036
int style Base_TextAppearance_AppCompat_Display4 0x7f090037
int style Base_TextAppearance_AppCompat_Headline 0x7f090038
int style Base_TextAppearance_AppCompat_Inverse 0x7f090005
int style Base_TextAppearance_AppCompat_Large 0x7f090039
int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f090006
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f09003a
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f09003b
int style Base_TextAppearance_AppCompat_Medium 0x7f09003c
int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f090007
int style Base_TextAppearance_AppCompat_Menu 0x7f09003d
int style Base_TextAppearance_AppCompat_SearchResult 0x7f09008a
int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f09003e
int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f09003f
int style Base_TextAppearance_AppCompat_Small 0x7f090040
int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f090008
int style Base_TextAppearance_AppCompat_Subhead 0x7f090041
int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f090009
int style Base_TextAppearance_AppCompat_Title 0x7f090042
int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f09000a
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f090043
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f090044
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f090045
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f090046
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f090047
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f090048
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f090049
int style Base_TextAppearance_AppCompat_Widget_Button 0x7f09004a
int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f09007a
int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f09008b
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f09004b
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f09004c
int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f09004d
int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f09004e
int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f09008c
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f09004f
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f090050
int style Base_Theme_AppCompat 0x7f090051
int style Base_Theme_AppCompat_CompactMenu 0x7f09008d
int style Base_Theme_AppCompat_Dialog 0x7f09000b
int style Base_Theme_AppCompat_Dialog_Alert 0x7f09008e
int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f09008f
int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f090090
int style Base_Theme_AppCompat_DialogWhenLarge 0x7f090002
int style Base_Theme_AppCompat_Light 0x7f090052
int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f090091
int style Base_Theme_AppCompat_Light_Dialog 0x7f09000c
int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f090092
int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f090093
int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f090094
int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f090003
int style Base_ThemeOverlay_AppCompat 0x7f090095
int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f090096
int style Base_ThemeOverlay_AppCompat_Dark 0x7f090097
int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f090098
int style Base_ThemeOverlay_AppCompat_Light 0x7f090099
int style Base_V11_Theme_AppCompat_Dialog 0x7f09000d
int style Base_V11_Theme_AppCompat_Light_Dialog 0x7f09000e
int style Base_V12_Widget_AppCompat_AutoCompleteTextView 0x7f090016
int style Base_V12_Widget_AppCompat_EditText 0x7f090017
int style Base_V21_Theme_AppCompat 0x7f090053
int style Base_V21_Theme_AppCompat_Dialog 0x7f090054
int style Base_V21_Theme_AppCompat_Light 0x7f090055
int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f090056
int style Base_V22_Theme_AppCompat 0x7f090078
int style Base_V22_Theme_AppCompat_Light 0x7f090079
int style Base_V23_Theme_AppCompat 0x7f09007b
int style Base_V23_Theme_AppCompat_Light 0x7f09007c
int style Base_V7_Theme_AppCompat 0x7f09009a
int style Base_V7_Theme_AppCompat_Dialog 0x7f09009b
int style Base_V7_Theme_AppCompat_Light 0x7f09009c
int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f09009d
int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f09009e
int style Base_V7_Widget_AppCompat_EditText 0x7f09009f
int style Base_Widget_AppCompat_ActionBar 0x7f0900a0
int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0900a1
int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0900a2
int style Base_Widget_AppCompat_ActionBar_TabText 0x7f090057
int style Base_Widget_AppCompat_ActionBar_TabView 0x7f090058
int style Base_Widget_AppCompat_ActionButton 0x7f090059
int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f09005a
int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f09005b
int style Base_Widget_AppCompat_ActionMode 0x7f0900a3
int style Base_Widget_AppCompat_ActivityChooserView 0x7f0900a4
int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f090018
int style Base_Widget_AppCompat_Button 0x7f09005c
int style Base_Widget_AppCompat_Button_Borderless 0x7f09005d
int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f09005e
int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0900a5
int style Base_Widget_AppCompat_Button_Colored 0x7f09007d
int style Base_Widget_AppCompat_Button_Small 0x7f09005f
int style Base_Widget_AppCompat_ButtonBar 0x7f090060
int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0900a6
int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f090061
int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f090062
int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0900a7
int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f090000
int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0900a8
int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f090063
int style Base_Widget_AppCompat_EditText 0x7f090019
int style Base_Widget_AppCompat_ImageButton 0x7f090064
int style Base_Widget_AppCompat_Light_ActionBar 0x7f0900a9
int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0900aa
int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0900ab
int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f090065
int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f090066
int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f090067
int style Base_Widget_AppCompat_Light_PopupMenu 0x7f090068
int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f090069
int style Base_Widget_AppCompat_ListPopupWindow 0x7f09006a
int style Base_Widget_AppCompat_ListView 0x7f09006b
int style Base_Widget_AppCompat_ListView_DropDown 0x7f09006c
int style Base_Widget_AppCompat_ListView_Menu 0x7f09006d
int style Base_Widget_AppCompat_PopupMenu 0x7f09006e
int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f09006f
int style Base_Widget_AppCompat_PopupWindow 0x7f0900ac
int style Base_Widget_AppCompat_ProgressBar 0x7f09000f
int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f090010
int style Base_Widget_AppCompat_RatingBar 0x7f090070
int style Base_Widget_AppCompat_SearchView 0x7f0900ad
int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0900ae
int style Base_Widget_AppCompat_SeekBar 0x7f090071
int style Base_Widget_AppCompat_Spinner 0x7f090072
int style Base_Widget_AppCompat_Spinner_Underlined 0x7f090004
int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f090073
int style Base_Widget_AppCompat_Toolbar 0x7f0900af
int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f090074
int style Base_Widget_Design_TabLayout 0x7f0900b0
int style MyTabLayoutTextAppearance 0x7f0900b1
int style Platform_AppCompat 0x7f090011
int style Platform_AppCompat_Light 0x7f090012
int style Platform_ThemeOverlay_AppCompat 0x7f090075
int style Platform_ThemeOverlay_AppCompat_Dark 0x7f090076
int style Platform_ThemeOverlay_AppCompat_Light 0x7f090077
int style Platform_V11_AppCompat 0x7f090013
int style Platform_V11_AppCompat_Light 0x7f090014
int style Platform_V14_AppCompat 0x7f09001b
int style Platform_V14_AppCompat_Light 0x7f09001c
int style Platform_Widget_AppCompat_Spinner 0x7f090015
int style PopupAnimation 0x7f0900b2
int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f090022
int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f090023
int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f090024
int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f090025
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f090026
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f090027
int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f090028
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f090029
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f09002a
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f09002b
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f09002c
int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f09002d
int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f09002e
int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f09002f
int style TextAppearance_AppCompat 0x7f0900b3
int style TextAppearance_AppCompat_Body1 0x7f0900b4
int style TextAppearance_AppCompat_Body2 0x7f0900b5
int style TextAppearance_AppCompat_Button 0x7f0900b6
int style TextAppearance_AppCompat_Caption 0x7f0900b7
int style TextAppearance_AppCompat_Display1 0x7f0900b8
int style TextAppearance_AppCompat_Display2 0x7f0900b9
int style TextAppearance_AppCompat_Display3 0x7f0900ba
int style TextAppearance_AppCompat_Display4 0x7f0900bb
int style TextAppearance_AppCompat_Headline 0x7f0900bc
int style TextAppearance_AppCompat_Inverse 0x7f0900bd
int style TextAppearance_AppCompat_Large 0x7f0900be
int style TextAppearance_AppCompat_Large_Inverse 0x7f0900bf
int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0900c0
int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0900c1
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0900c2
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0900c3
int style TextAppearance_AppCompat_Medium 0x7f0900c4
int style TextAppearance_AppCompat_Medium_Inverse 0x7f0900c5
int style TextAppearance_AppCompat_Menu 0x7f0900c6
int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0900c7
int style TextAppearance_AppCompat_SearchResult_Title 0x7f0900c8
int style TextAppearance_AppCompat_Small 0x7f0900c9
int style TextAppearance_AppCompat_Small_Inverse 0x7f0900ca
int style TextAppearance_AppCompat_Subhead 0x7f0900cb
int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0900cc
int style TextAppearance_AppCompat_Title 0x7f0900cd
int style TextAppearance_AppCompat_Title_Inverse 0x7f0900ce
int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0900cf
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0900d0
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0900d1
int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0900d2
int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0900d3
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0900d4
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0900d5
int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0900d6
int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0900d7
int style TextAppearance_AppCompat_Widget_Button 0x7f0900d8
int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0900d9
int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0900da
int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0900db
int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0900dc
int style TextAppearance_AppCompat_Widget_Switch 0x7f0900dd
int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0900de
int style TextAppearance_Design_CollapsingToolbar_Expanded 0x7f0900df
int style TextAppearance_Design_Counter 0x7f0900e0
int style TextAppearance_Design_Counter_Overflow 0x7f0900e1
int style TextAppearance_Design_Error 0x7f0900e2
int style TextAppearance_Design_Hint 0x7f0900e3
int style TextAppearance_Design_Snackbar_Message 0x7f0900e4
int style TextAppearance_Design_Tab 0x7f0900e5
int style TextAppearance_StatusBar_EventContent 0x7f09001d
int style TextAppearance_StatusBar_EventContent_Info 0x7f09001e
int style TextAppearance_StatusBar_EventContent_Line2 0x7f09001f
int style TextAppearance_StatusBar_EventContent_Time 0x7f090020
int style TextAppearance_StatusBar_EventContent_Title 0x7f090021
int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0900e6
int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0900e7
int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0900e8
int style Theme_AppCompat 0x7f0900e9
int style Theme_AppCompat_CompactMenu 0x7f0900ea
int style Theme_AppCompat_Dialog 0x7f0900eb
int style Theme_AppCompat_Dialog_Alert 0x7f0900ec
int style Theme_AppCompat_Dialog_MinWidth 0x7f0900ed
int style Theme_AppCompat_DialogWhenLarge 0x7f0900ee
int style Theme_AppCompat_Light 0x7f0900ef
int style Theme_AppCompat_Light_DarkActionBar 0x7f0900f0
int style Theme_AppCompat_Light_Dialog 0x7f0900f1
int style Theme_AppCompat_Light_Dialog_Alert 0x7f0900f2
int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0900f3
int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0900f4
int style Theme_AppCompat_Light_NoActionBar 0x7f0900f5
int style Theme_AppCompat_NoActionBar 0x7f0900f6
int style ThemeOverlay_AppCompat 0x7f0900f7
int style ThemeOverlay_AppCompat_ActionBar 0x7f0900f8
int style ThemeOverlay_AppCompat_Dark 0x7f0900f9
int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0900fa
int style ThemeOverlay_AppCompat_Light 0x7f0900fb
int style Widget_AppCompat_ActionBar 0x7f0900fc
int style Widget_AppCompat_ActionBar_Solid 0x7f0900fd
int style Widget_AppCompat_ActionBar_TabBar 0x7f0900fe
int style Widget_AppCompat_ActionBar_TabText 0x7f0900ff
int style Widget_AppCompat_ActionBar_TabView 0x7f090100
int style Widget_AppCompat_ActionButton 0x7f090101
int style Widget_AppCompat_ActionButton_CloseMode 0x7f090102
int style Widget_AppCompat_ActionButton_Overflow 0x7f090103
int style Widget_AppCompat_ActionMode 0x7f090104
int style Widget_AppCompat_ActivityChooserView 0x7f090105
int style Widget_AppCompat_AutoCompleteTextView 0x7f090106
int style Widget_AppCompat_Button 0x7f090107
int style Widget_AppCompat_Button_Borderless 0x7f090108
int style Widget_AppCompat_Button_Borderless_Colored 0x7f090109
int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f09010a
int style Widget_AppCompat_Button_Colored 0x7f09010b
int style Widget_AppCompat_Button_Small 0x7f09010c
int style Widget_AppCompat_ButtonBar 0x7f09010d
int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f09010e
int style Widget_AppCompat_CompoundButton_CheckBox 0x7f09010f
int style Widget_AppCompat_CompoundButton_RadioButton 0x7f090110
int style Widget_AppCompat_CompoundButton_Switch 0x7f090111
int style Widget_AppCompat_DrawerArrowToggle 0x7f090112
int style Widget_AppCompat_DropDownItem_Spinner 0x7f090113
int style Widget_AppCompat_EditText 0x7f090114
int style Widget_AppCompat_ImageButton 0x7f090115
int style Widget_AppCompat_Light_ActionBar 0x7f090116
int style Widget_AppCompat_Light_ActionBar_Solid 0x7f090117
int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f090118
int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f090119
int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f09011a
int style Widget_AppCompat_Light_ActionBar_TabText 0x7f09011b
int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f09011c
int style Widget_AppCompat_Light_ActionBar_TabView 0x7f09011d
int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f09011e
int style Widget_AppCompat_Light_ActionButton 0x7f09011f
int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f090120
int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f090121
int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f090122
int style Widget_AppCompat_Light_ActivityChooserView 0x7f090123
int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f090124
int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f090125
int style Widget_AppCompat_Light_ListPopupWindow 0x7f090126
int style Widget_AppCompat_Light_ListView_DropDown 0x7f090127
int style Widget_AppCompat_Light_PopupMenu 0x7f090128
int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f090129
int style Widget_AppCompat_Light_SearchView 0x7f09012a
int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f09012b
int style Widget_AppCompat_ListPopupWindow 0x7f09012c
int style Widget_AppCompat_ListView 0x7f09012d
int style Widget_AppCompat_ListView_DropDown 0x7f09012e
int style Widget_AppCompat_ListView_Menu 0x7f09012f
int style Widget_AppCompat_PopupMenu 0x7f090130
int style Widget_AppCompat_PopupMenu_Overflow 0x7f090131
int style Widget_AppCompat_PopupWindow 0x7f090132
int style Widget_AppCompat_ProgressBar 0x7f090133
int style Widget_AppCompat_ProgressBar_Horizontal 0x7f090134
int style Widget_AppCompat_RatingBar 0x7f090135
int style Widget_AppCompat_SearchView 0x7f090136
int style Widget_AppCompat_SearchView_ActionBar 0x7f090137
int style Widget_AppCompat_SeekBar 0x7f090138
int style Widget_AppCompat_Spinner 0x7f090139
int style Widget_AppCompat_Spinner_DropDown 0x7f09013a
int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f09013b
int style Widget_AppCompat_Spinner_Underlined 0x7f09013c
int style Widget_AppCompat_TextView_SpinnerItem 0x7f09013d
int style Widget_AppCompat_Toolbar 0x7f09013e
int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f09013f
int style Widget_Design_AppBarLayout 0x7f090140
int style Widget_Design_CollapsingToolbar 0x7f090141
int style Widget_Design_CoordinatorLayout 0x7f090142
int style Widget_Design_FloatingActionButton 0x7f090143
int style Widget_Design_NavigationView 0x7f090144
int style Widget_Design_ScrimInsetsFrameLayout 0x7f090145
int style Widget_Design_Snackbar 0x7f090146
int style Widget_Design_TabLayout 0x7f090001
int style Widget_Design_TextInputLayout 0x7f090147
int[] styleable ActionBar { 0x7f010001, 0x7f010003, 0x7f010004, 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a, 0x7f01000b, 0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010, 0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001a, 0x7f01001b, 0x7f0100d8 }
int styleable ActionBar_background 10
int styleable ActionBar_backgroundSplit 12
int styleable ActionBar_backgroundStacked 11
int styleable ActionBar_contentInsetEnd 21
int styleable ActionBar_contentInsetLeft 22
int styleable ActionBar_contentInsetRight 23
int styleable ActionBar_contentInsetStart 20
int styleable ActionBar_customNavigationLayout 13
int styleable ActionBar_displayOptions 3
int styleable ActionBar_divider 9
int styleable ActionBar_elevation 24
int styleable ActionBar_height 0
int styleable ActionBar_hideOnContentScroll 19
int styleable ActionBar_homeAsUpIndicator 26
int styleable ActionBar_homeLayout 14
int styleable ActionBar_icon 7
int styleable ActionBar_indeterminateProgressStyle 16
int styleable ActionBar_itemPadding 18
int styleable ActionBar_logo 8
int styleable ActionBar_navigationMode 2
int styleable ActionBar_popupTheme 25
int styleable ActionBar_progressBarPadding 17
int styleable ActionBar_progressBarStyle 15
int styleable ActionBar_subtitle 4
int styleable ActionBar_subtitleTextStyle 6
int styleable ActionBar_title 1
int styleable ActionBar_titleTextStyle 5
int[] styleable ActionBarLayout { 0x010100b3 }
int styleable ActionBarLayout_android_layout_gravity 0
int[] styleable ActionMenuItemView { 0x0101013f }
int styleable ActionMenuItemView_android_minWidth 0
int[] styleable ActionMenuView { }
int[] styleable ActionMode { 0x7f010001, 0x7f010007, 0x7f010008, 0x7f01000c, 0x7f01000e, 0x7f01001c }
int styleable ActionMode_background 3
int styleable ActionMode_backgroundSplit 4
int styleable ActionMode_closeItemLayout 5
int styleable ActionMode_height 0
int styleable ActionMode_subtitleTextStyle 2
int styleable ActionMode_titleTextStyle 1
int[] styleable ActivityChooserView { 0x7f01001d, 0x7f01001e }
int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 1
int styleable ActivityChooserView_initialActivityCount 0
int[] styleable AlertDialog { 0x010100f2, 0x7f01001f, 0x7f010020, 0x7f010021, 0x7f010022, 0x7f010023 }
int styleable AlertDialog_android_layout 0
int styleable AlertDialog_buttonPanelSideLayout 1
int styleable AlertDialog_listItemLayout 5
int styleable AlertDialog_listLayout 2
int styleable AlertDialog_multiChoiceItemLayout 3
int styleable AlertDialog_singleChoiceItemLayout 4
int[] styleable AppBarLayout { 0x010100d4, 0x7f01001a, 0x7f010024 }
int styleable AppBarLayout_android_background 0
int styleable AppBarLayout_elevation 1
int styleable AppBarLayout_expanded 2
int[] styleable AppBarLayout_LayoutParams { 0x7f010025, 0x7f010026 }
int styleable AppBarLayout_LayoutParams_layout_scrollFlags 0
int styleable AppBarLayout_LayoutParams_layout_scrollInterpolator 1
int[] styleable AppCompatTextView { 0x01010034, 0x7f010027 }
int styleable AppCompatTextView_android_textAppearance 0
int styleable AppCompatTextView_textAllCaps 1
int[] styleable ButtonBarLayout { 0x7f010028 }
int styleable ButtonBarLayout_allowStacking 0
int[] styleable CollapsingAppBarLayout_LayoutParams { 0x7f010029, 0x7f01002a }
int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseMode 0
int styleable CollapsingAppBarLayout_LayoutParams_layout_collapseParallaxMultiplier 1
int[] styleable CollapsingToolbarLayout { 0x7f010003, 0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e, 0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032, 0x7f010033, 0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037 }
int styleable CollapsingToolbarLayout_collapsedTitleGravity 11
int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 7
int styleable CollapsingToolbarLayout_contentScrim 8
int styleable CollapsingToolbarLayout_expandedTitleGravity 12
int styleable CollapsingToolbarLayout_expandedTitleMargin 1
int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 5
int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 4
int styleable CollapsingToolbarLayout_expandedTitleMarginStart 2
int styleable CollapsingToolbarLayout_expandedTitleMarginTop 3
int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 6
int styleable CollapsingToolbarLayout_statusBarScrim 9
int styleable CollapsingToolbarLayout_title 0
int styleable CollapsingToolbarLayout_titleEnabled 13
int styleable CollapsingToolbarLayout_toolbarId 10
int[] styleable CompoundButton { 0x01010107, 0x7f010038, 0x7f010039 }
int styleable CompoundButton_android_button 0
int styleable CompoundButton_buttonTint 1
int styleable CompoundButton_buttonTintMode 2
int[] styleable CoordinatorLayout { 0x7f01003a, 0x7f01003b }
int styleable CoordinatorLayout_keylines 0
int styleable CoordinatorLayout_statusBarBackground 1
int[] styleable CoordinatorLayout_LayoutParams { 0x010100b3, 0x7f01003c, 0x7f01003d, 0x7f01003e, 0x7f01003f }
int styleable CoordinatorLayout_LayoutParams_android_layout_gravity 0
int styleable CoordinatorLayout_LayoutParams_layout_anchor 2
int styleable CoordinatorLayout_LayoutParams_layout_anchorGravity 4
int styleable CoordinatorLayout_LayoutParams_layout_behavior 1
int styleable CoordinatorLayout_LayoutParams_layout_keyline 3
int[] styleable DrawerArrowToggle { 0x7f010040, 0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044, 0x7f010045, 0x7f010046, 0x7f010047 }
int styleable DrawerArrowToggle_arrowHeadLength 4
int styleable DrawerArrowToggle_arrowShaftLength 5
int styleable DrawerArrowToggle_barLength 6
int styleable DrawerArrowToggle_color 0
int styleable DrawerArrowToggle_drawableSize 2
int styleable DrawerArrowToggle_gapBetweenBars 3
int styleable DrawerArrowToggle_spinBars 1
int styleable DrawerArrowToggle_thickness 7
int[] styleable FloatingActionButton { 0x010100d4, 0x7f01001a, 0x7f010048, 0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f010128, 0x7f010129 }
int styleable FloatingActionButton_android_background 0
int styleable FloatingActionButton_backgroundTint 6
int styleable FloatingActionButton_backgroundTintMode 7
int styleable FloatingActionButton_borderWidth 5
int styleable FloatingActionButton_elevation 1
int styleable FloatingActionButton_fabSize 3
int styleable FloatingActionButton_pressedTranslationZ 4
int styleable FloatingActionButton_rippleColor 2
int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f01004c }
int styleable ForegroundLinearLayout_android_foreground 0
int styleable ForegroundLinearLayout_android_foregroundGravity 1
int styleable ForegroundLinearLayout_foregroundInsidePadding 2
int[] styleable GenericDraweeHierarchy { 0x7f01004d, 0x7f01004e, 0x7f01004f, 0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053, 0x7f010054, 0x7f010055, 0x7f010056, 0x7f010057, 0x7f010058, 0x7f010059, 0x7f01005a, 0x7f01005b, 0x7f01005c, 0x7f01005d, 0x7f01005e, 0x7f01005f, 0x7f010060, 0x7f010061, 0x7f010062, 0x7f010063, 0x7f010064, 0x7f010065 }
int styleable GenericDraweeHierarchy_actualImageScaleType 11
int styleable GenericDraweeHierarchy_backgroundImage 12
int styleable GenericDraweeHierarchy_fadeDuration 0
int styleable GenericDraweeHierarchy_failureImage 6
int styleable GenericDraweeHierarchy_failureImageScaleType 7
int styleable GenericDraweeHierarchy_overlayImage 13
int styleable GenericDraweeHierarchy_placeholderImage 2
int styleable GenericDraweeHierarchy_placeholderImageScaleType 3
int styleable GenericDraweeHierarchy_pressedStateOverlayImage 14
int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 10
int styleable GenericDraweeHierarchy_progressBarImage 8
int styleable GenericDraweeHierarchy_progressBarImageScaleType 9
int styleable GenericDraweeHierarchy_retryImage 4
int styleable GenericDraweeHierarchy_retryImageScaleType 5
int styleable GenericDraweeHierarchy_roundAsCircle 15
int styleable GenericDraweeHierarchy_roundBottomLeft 20
int styleable GenericDraweeHierarchy_roundBottomRight 19
int styleable GenericDraweeHierarchy_roundTopLeft 17
int styleable GenericDraweeHierarchy_roundTopRight 18
int styleable GenericDraweeHierarchy_roundWithOverlayColor 21
int styleable GenericDraweeHierarchy_roundedCornerRadius 16
int styleable GenericDraweeHierarchy_roundingBorderColor 23
int styleable GenericDraweeHierarchy_roundingBorderPadding 24
int styleable GenericDraweeHierarchy_roundingBorderWidth 22
int styleable GenericDraweeHierarchy_viewAspectRatio 1
int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f01000b, 0x7f010066, 0x7f010067, 0x7f010068 }
int styleable LinearLayoutCompat_android_baselineAligned 2
int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
int styleable LinearLayoutCompat_android_gravity 0
int styleable LinearLayoutCompat_android_orientation 1
int styleable LinearLayoutCompat_android_weightSum 4
int styleable LinearLayoutCompat_divider 5
int styleable LinearLayoutCompat_dividerPadding 8
int styleable LinearLayoutCompat_measureWithLargestChild 6
int styleable LinearLayoutCompat_showDividers 7
int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
int styleable LinearLayoutCompat_Layout_android_layout_height 2
int styleable LinearLayoutCompat_Layout_android_layout_weight 3
int styleable LinearLayoutCompat_Layout_android_layout_width 1
int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
int styleable ListPopupWindow_android_dropDownVerticalOffset 1
int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
int styleable MenuGroup_android_checkableBehavior 5
int styleable MenuGroup_android_enabled 0
int styleable MenuGroup_android_id 1
int styleable MenuGroup_android_menuCategory 3
int styleable MenuGroup_android_orderInCategory 4
int styleable MenuGroup_android_visible 2
int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f010069, 0x7f01006a, 0x7f01006b, 0x7f01006c }
int styleable MenuItem_actionLayout 14
int styleable MenuItem_actionProviderClass 16
int styleable MenuItem_actionViewClass 15
int styleable MenuItem_android_alphabeticShortcut 9
int styleable MenuItem_android_checkable 11
int styleable MenuItem_android_checked 3
int styleable MenuItem_android_enabled 1
int styleable MenuItem_android_icon 0
int styleable MenuItem_android_id 2
int styleable MenuItem_android_menuCategory 5
int styleable MenuItem_android_numericShortcut 10
int styleable MenuItem_android_onClick 12
int styleable MenuItem_android_orderInCategory 6
int styleable MenuItem_android_title 7
int styleable MenuItem_android_titleCondensed 8
int styleable MenuItem_android_visible 4
int styleable MenuItem_showAsAction 13
int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f01006d }
int styleable MenuView_android_headerBackground 4
int styleable MenuView_android_horizontalDivider 2
int styleable MenuView_android_itemBackground 5
int styleable MenuView_android_itemIconDisabledAlpha 6
int styleable MenuView_android_itemTextAppearance 1
int styleable MenuView_android_verticalDivider 3
int styleable MenuView_android_windowAnimationStyle 0
int styleable MenuView_preserveIconSpacing 7
int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x0101011f, 0x7f01001a, 0x7f01006e, 0x7f01006f, 0x7f010070, 0x7f010071, 0x7f010072, 0x7f010073 }
int styleable NavigationView_android_background 0
int styleable NavigationView_android_fitsSystemWindows 1
int styleable NavigationView_android_maxWidth 2
int styleable NavigationView_elevation 3
int styleable NavigationView_headerLayout 9
int styleable NavigationView_itemBackground 7
int styleable NavigationView_itemIconTint 5
int styleable NavigationView_itemTextAppearance 8
int styleable NavigationView_itemTextColor 6
int styleable NavigationView_menu 4
int[] styleable PopupWindow { 0x01010176, 0x7f010074 }
int styleable PopupWindow_android_popupBackground 0
int styleable PopupWindow_overlapAnchor 1
int[] styleable PopupWindowBackgroundState { 0x7f010075 }
int styleable PopupWindowBackgroundState_state_above_anchor 0
int[] styleable RecyclerView { 0x010100c4, 0x7f010076, 0x7f010077, 0x7f010078, 0x7f010079 }
int styleable RecyclerView_android_orientation 0
int styleable RecyclerView_layoutManager 1
int styleable RecyclerView_reverseLayout 3
int styleable RecyclerView_spanCount 2
int styleable RecyclerView_stackFromEnd 4
int[] styleable ScrimInsetsFrameLayout { 0x7f01007a }
int styleable ScrimInsetsFrameLayout_insetForeground 0
int[] styleable ScrollingViewBehavior_Params { 0x7f01007b }
int styleable ScrollingViewBehavior_Params_behavior_overlapTop 0
int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f01007c, 0x7f01007d, 0x7f01007e, 0x7f01007f, 0x7f010080, 0x7f010081, 0x7f010082, 0x7f010083, 0x7f010084, 0x7f010085, 0x7f010086, 0x7f010087, 0x7f010088 }
int styleable SearchView_android_focusable 0
int styleable SearchView_android_imeOptions 3
int styleable SearchView_android_inputType 2
int styleable SearchView_android_maxWidth 1
int styleable SearchView_closeIcon 8
int styleable SearchView_commitIcon 13
int styleable SearchView_defaultQueryHint 7
int styleable SearchView_goIcon 9
int styleable SearchView_iconifiedByDefault 5
int styleable SearchView_layout 4
int styleable SearchView_queryBackground 15
int styleable SearchView_queryHint 6
int styleable SearchView_searchHintIcon 11
int styleable SearchView_searchIcon 10
int styleable SearchView_submitBackground 16
int styleable SearchView_suggestionRowLayout 14
int styleable SearchView_voiceIcon 12
int[] styleable SimpleDraweeView { 0x7f010089 }
int styleable SimpleDraweeView_actualImageUri 0
int[] styleable SnackbarLayout { 0x0101011f, 0x7f01001a, 0x7f01008a }
int styleable SnackbarLayout_android_maxWidth 0
int styleable SnackbarLayout_elevation 1
int styleable SnackbarLayout_maxActionInlineWidth 2
int[] styleable Spinner { 0x01010176, 0x0101017b, 0x01010262, 0x7f01001b }
int styleable Spinner_android_dropDownWidth 2
int styleable Spinner_android_popupBackground 0
int styleable Spinner_android_prompt 1
int styleable Spinner_popupTheme 3
int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f01008b, 0x7f01008c, 0x7f01008d, 0x7f01008e, 0x7f01008f, 0x7f010090, 0x7f010091 }
int styleable SwitchCompat_android_textOff 1
int styleable SwitchCompat_android_textOn 0
int styleable SwitchCompat_android_thumb 2
int styleable SwitchCompat_showText 9
int styleable SwitchCompat_splitTrack 8
int styleable SwitchCompat_switchMinWidth 6
int styleable SwitchCompat_switchPadding 7
int styleable SwitchCompat_switchTextAppearance 5
int styleable SwitchCompat_thumbTextPadding 4
int styleable SwitchCompat_track 3
int[] styleable TabLayout { 0x7f010092, 0x7f010093, 0x7f010094, 0x7f010095, 0x7f010096, 0x7f010097, 0x7f010098, 0x7f010099, 0x7f01009a, 0x7f01009b, 0x7f01009c, 0x7f01009d, 0x7f01009e, 0x7f01009f, 0x7f0100a0, 0x7f0100a1 }
int styleable TabLayout_tabBackground 3
int styleable TabLayout_tabContentStart 2
int styleable TabLayout_tabGravity 5
int styleable TabLayout_tabIndicatorColor 0
int styleable TabLayout_tabIndicatorHeight 1
int styleable TabLayout_tabMaxWidth 7
int styleable TabLayout_tabMinWidth 6
int styleable TabLayout_tabMode 4
int styleable TabLayout_tabPadding 15
int styleable TabLayout_tabPaddingBottom 14
int styleable TabLayout_tabPaddingEnd 13
int styleable TabLayout_tabPaddingStart 11
int styleable TabLayout_tabPaddingTop 12
int styleable TabLayout_tabSelectedTextColor 10
int styleable TabLayout_tabTextAppearance 8
int styleable TabLayout_tabTextColor 9
int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x7f010027 }
int styleable TextAppearance_android_shadowColor 4
int styleable TextAppearance_android_shadowDx 5
int styleable TextAppearance_android_shadowDy 6
int styleable TextAppearance_android_shadowRadius 7
int styleable TextAppearance_android_textColor 3
int styleable TextAppearance_android_textSize 0
int styleable TextAppearance_android_textStyle 2
int styleable TextAppearance_android_typeface 1
int styleable TextAppearance_textAllCaps 8
int[] styleable TextInputLayout { 0x0101009a, 0x01010150, 0x7f0100a2, 0x7f0100a3, 0x7f0100a4, 0x7f0100a5, 0x7f0100a6, 0x7f0100a7, 0x7f0100a8, 0x7f0100a9 }
int styleable TextInputLayout_android_hint 1
int styleable TextInputLayout_android_textColorHint 0
int styleable TextInputLayout_counterEnabled 5
int styleable TextInputLayout_counterMaxLength 6
int styleable TextInputLayout_counterOverflowTextAppearance 8
int styleable TextInputLayout_counterTextAppearance 7
int styleable TextInputLayout_errorEnabled 3
int styleable TextInputLayout_errorTextAppearance 4
int styleable TextInputLayout_hintAnimationEnabled 9
int styleable TextInputLayout_hintTextAppearance 2
int[] styleable Theme { 0x01010057, 0x010100ae, 0x7f0100aa, 0x7f0100ab, 0x7f0100ac, 0x7f0100ad, 0x7f0100ae, 0x7f0100af, 0x7f0100b0, 0x7f0100b1, 0x7f0100b2, 0x7f0100b3, 0x7f0100b4, 0x7f0100b5, 0x7f0100b6, 0x7f0100b7, 0x7f0100b8, 0x7f0100b9, 0x7f0100ba, 0x7f0100bb, 0x7f0100bc, 0x7f0100bd, 0x7f0100be, 0x7f0100bf, 0x7f0100c0, 0x7f0100c1, 0x7f0100c2, 0x7f0100c3, 0x7f0100c4, 0x7f0100c5, 0x7f0100c6, 0x7f0100c7, 0x7f0100c8, 0x7f0100c9, 0x7f0100ca, 0x7f0100cb, 0x7f0100cc, 0x7f0100cd, 0x7f0100ce, 0x7f0100cf, 0x7f0100d0, 0x7f0100d1, 0x7f0100d2, 0x7f0100d3, 0x7f0100d4, 0x7f0100d5, 0x7f0100d6, 0x7f0100d7, 0x7f0100d8, 0x7f0100d9, 0x7f0100da, 0x7f0100db, 0x7f0100dc, 0x7f0100dd, 0x7f0100de, 0x7f0100df, 0x7f0100e0, 0x7f0100e1, 0x7f0100e2, 0x7f0100e3, 0x7f0100e4, 0x7f0100e5, 0x7f0100e6, 0x7f0100e7, 0x7f0100e8, 0x7f0100e9, 0x7f0100ea, 0x7f0100eb, 0x7f0100ec, 0x7f0100ed, 0x7f0100ee, 0x7f0100ef, 0x7f0100f0, 0x7f0100f1, 0x7f0100f2, 0x7f0100f3, 0x7f0100f4, 0x7f0100f5, 0x7f0100f6, 0x7f0100f7, 0x7f0100f8, 0x7f0100f9, 0x7f0100fa, 0x7f0100fb, 0x7f0100fc, 0x7f0100fd, 0x7f0100fe, 0x7f0100ff, 0x7f010100, 0x7f010101, 0x7f010102, 0x7f010103, 0x7f010104, 0x7f010105, 0x7f010106, 0x7f010107, 0x7f010108, 0x7f010109, 0x7f01010a, 0x7f01010b, 0x7f01010c, 0x7f01010d, 0x7f01010e, 0x7f01010f, 0x7f010110, 0x7f010111, 0x7f010112, 0x7f010113, 0x7f010114, 0x7f010115 }
int styleable Theme_actionBarDivider 23
int styleable Theme_actionBarItemBackground 24
int styleable Theme_actionBarPopupTheme 17
int styleable Theme_actionBarSize 22
int styleable Theme_actionBarSplitStyle 19
int styleable Theme_actionBarStyle 18
int styleable Theme_actionBarTabBarStyle 13
int styleable Theme_actionBarTabStyle 12
int styleable Theme_actionBarTabTextStyle 14
int styleable Theme_actionBarTheme 20
int styleable Theme_actionBarWidgetTheme 21
int styleable Theme_actionButtonStyle 49
int styleable Theme_actionDropDownStyle 45
int styleable Theme_actionMenuTextAppearance 25
int styleable Theme_actionMenuTextColor 26
int styleable Theme_actionModeBackground 29
int styleable Theme_actionModeCloseButtonStyle 28
int styleable Theme_actionModeCloseDrawable 31
int styleable Theme_actionModeCopyDrawable 33
int styleable Theme_actionModeCutDrawable 32
int styleable Theme_actionModeFindDrawable 37
int styleable Theme_actionModePasteDrawable 34
int styleable Theme_actionModePopupWindowStyle 39
int styleable Theme_actionModeSelectAllDrawable 35
int styleable Theme_actionModeShareDrawable 36
int styleable Theme_actionModeSplitBackground 30
int styleable Theme_actionModeStyle 27
int styleable Theme_actionModeWebSearchDrawable 38
int styleable Theme_actionOverflowButtonStyle 15
int styleable Theme_actionOverflowMenuStyle 16
int styleable Theme_activityChooserViewStyle 57
int styleable Theme_alertDialogButtonGroupStyle 92
int styleable Theme_alertDialogCenterButtons 93
int styleable Theme_alertDialogStyle 91
int styleable Theme_alertDialogTheme 94
int styleable Theme_android_windowAnimationStyle 1
int styleable Theme_android_windowIsFloating 0
int styleable Theme_autoCompleteTextViewStyle 99
int styleable Theme_borderlessButtonStyle 54
int styleable Theme_buttonBarButtonStyle 51
int styleable Theme_buttonBarNegativeButtonStyle 97
int styleable Theme_buttonBarNeutralButtonStyle 98
int styleable Theme_buttonBarPositiveButtonStyle 96
int styleable Theme_buttonBarStyle 50
int styleable Theme_buttonStyle 100
int styleable Theme_buttonStyleSmall 101
int styleable Theme_checkboxStyle 102
int styleable Theme_checkedTextViewStyle 103
int styleable Theme_colorAccent 84
int styleable Theme_colorButtonNormal 88
int styleable Theme_colorControlActivated 86
int styleable Theme_colorControlHighlight 87
int styleable Theme_colorControlNormal 85
int styleable Theme_colorPrimary 82
int styleable Theme_colorPrimaryDark 83
int styleable Theme_colorSwitchThumbNormal 89
int styleable Theme_controlBackground 90
int styleable Theme_dialogPreferredPadding 43
int styleable Theme_dialogTheme 42
int styleable Theme_dividerHorizontal 56
int styleable Theme_dividerVertical 55
int styleable Theme_dropDownListViewStyle 74
int styleable Theme_dropdownListPreferredItemHeight 46
int styleable Theme_editTextBackground 63
int styleable Theme_editTextColor 62
int styleable Theme_editTextStyle 104
int styleable Theme_homeAsUpIndicator 48
int styleable Theme_imageButtonStyle 64
int styleable Theme_listChoiceBackgroundIndicator 81
int styleable Theme_listDividerAlertDialog 44
int styleable Theme_listPopupWindowStyle 75
int styleable Theme_listPreferredItemHeight 69
int styleable Theme_listPreferredItemHeightLarge 71
int styleable Theme_listPreferredItemHeightSmall 70
int styleable Theme_listPreferredItemPaddingLeft 72
int styleable Theme_listPreferredItemPaddingRight 73
int styleable Theme_panelBackground 78
int styleable Theme_panelMenuListTheme 80
int styleable Theme_panelMenuListWidth 79
int styleable Theme_popupMenuStyle 60
int styleable Theme_popupWindowStyle 61
int styleable Theme_radioButtonStyle 105
int styleable Theme_ratingBarStyle 106
int styleable Theme_searchViewStyle 68
int styleable Theme_seekBarStyle 107
int styleable Theme_selectableItemBackground 52
int styleable Theme_selectableItemBackgroundBorderless 53
int styleable Theme_spinnerDropDownItemStyle 47
int styleable Theme_spinnerStyle 108
int styleable Theme_switchStyle 109
int styleable Theme_textAppearanceLargePopupMenu 40
int styleable Theme_textAppearanceListItem 76
int styleable Theme_textAppearanceListItemSmall 77
int styleable Theme_textAppearanceSearchResultSubtitle 66
int styleable Theme_textAppearanceSearchResultTitle 65
int styleable Theme_textAppearanceSmallPopupMenu 41
int styleable Theme_textColorAlertDialogListItem 95
int styleable Theme_textColorSearchUrl 67
int styleable Theme_toolbarNavigationButtonStyle 59
int styleable Theme_toolbarStyle 58
int styleable Theme_windowActionBar 2
int styleable Theme_windowActionBarOverlay 4
int styleable Theme_windowActionModeOverlay 5
int styleable Theme_windowFixedHeightMajor 9
int styleable Theme_windowFixedHeightMinor 7
int styleable Theme_windowFixedWidthMajor 6
int styleable Theme_windowFixedWidthMinor 8
int styleable Theme_windowMinWidthMajor 10
int styleable Theme_windowMinWidthMinor 11
int styleable Theme_windowNoTitle 3
int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f010003, 0x7f010006, 0x7f01000a, 0x7f010016, 0x7f010017, 0x7f010018, 0x7f010019, 0x7f01001b, 0x7f010116, 0x7f010117, 0x7f010118, 0x7f010119, 0x7f01011a, 0x7f01011b, 0x7f01011c, 0x7f01011d, 0x7f01011e, 0x7f01011f, 0x7f010120, 0x7f010121, 0x7f010122, 0x7f010123, 0x7f010124 }
int styleable Toolbar_android_gravity 0
int styleable Toolbar_android_minHeight 1
int styleable Toolbar_collapseContentDescription 19
int styleable Toolbar_collapseIcon 18
int styleable Toolbar_contentInsetEnd 6
int styleable Toolbar_contentInsetLeft 7
int styleable Toolbar_contentInsetRight 8
int styleable Toolbar_contentInsetStart 5
int styleable Toolbar_logo 4
int styleable Toolbar_logoDescription 22
int styleable Toolbar_maxButtonHeight 17
int styleable Toolbar_navigationContentDescription 21
int styleable Toolbar_navigationIcon 20
int styleable Toolbar_popupTheme 9
int styleable Toolbar_subtitle 3
int styleable Toolbar_subtitleTextAppearance 11
int styleable Toolbar_subtitleTextColor 24
int styleable Toolbar_title 2
int styleable Toolbar_titleMarginBottom 16
int styleable Toolbar_titleMarginEnd 14
int styleable Toolbar_titleMarginStart 13
int styleable Toolbar_titleMarginTop 15
int styleable Toolbar_titleMargins 12
int styleable Toolbar_titleTextAppearance 10
int styleable Toolbar_titleTextColor 23
int[] styleable View { 0x01010000, 0x010100da, 0x7f010125, 0x7f010126, 0x7f010127 }
int styleable View_android_focusable 1
int styleable View_android_theme 0
int styleable View_paddingEnd 3
int styleable View_paddingStart 2
int styleable View_theme 4
int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f010128, 0x7f010129 }
int styleable ViewBackgroundHelper_android_background 0
int styleable ViewBackgroundHelper_backgroundTint 1
int styleable ViewBackgroundHelper_backgroundTintMode 2
int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
int styleable ViewStubCompat_android_id 0
int styleable ViewStubCompat_android_inflatedId 2
int styleable ViewStubCompat_android_layout 1
int[] styleable VisitorView { 0x7f01012a, 0x7f01012b, 0x7f01012c, 0x7f01012d, 0x7f01012e, 0x7f01012f, 0x7f010130, 0x7f010131 }
int styleable VisitorView_vBackgroundColor 7
int styleable VisitorView_vBetweenMargin 2
int styleable VisitorView_vLeftTextColor 6
int styleable VisitorView_vLeftTextSize 3
int styleable VisitorView_vLeftTextString 0
int styleable VisitorView_vRightTextColor 5
int styleable VisitorView_vRightTextSize 4
int styleable VisitorView_vRightTextString 1