wpc
2018-11-27 680fbc9e73da3e11988557cf88fd935efd3e0b1e
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
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */
 
package com.viewpagerindicator.test;
 
public final class R {
    public static final class anim {
        public static final int bottom_dialog_enter=0x7f050000;
        public static final int bottom_dialog_exit=0x7f050001;
        public static final int sliding_dialog_enter=0x7f050002;
        public static final int sliding_dialog_exit=0x7f050003;
    }
    public static final class attr {
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
         */
        public static final int arcRadius=0x7f010008;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int border_inside_color=0x7f010023;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int border_outside_color=0x7f010024;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int border_thickness=0x7f010022;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int centered=0x7f010000;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int clipPadding=0x7f010026;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int closeOnClick=0x7f01000a;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int content=0x7f01001b;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
         */
        public static final int dashGap=0x7f010012;
        /** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>horizontal</code></td><td>0</td><td></td></tr>
<tr><td><code>vertical</code></td><td>1</td><td></td></tr>
</table>
         */
        public static final int dashOrientation=0x7f010014;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
         */
        public static final int dashWidth=0x7f010011;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be an integer value, such as "<code>100</code>".
         */
        public static final int duration=0x7f010009;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
         */
        public static final int emotionHeight=0x7f010016;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
         */
        public static final int emotionSize=0x7f010015;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
         */
        public static final int emotionWidth=0x7f010017;
        /** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int fadeDelay=0x7f010032;
        /** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int fadeLength=0x7f010033;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int fades=0x7f010031;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int fillColor=0x7f01000c;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int footerColor=0x7f010027;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int footerIndicatorHeight=0x7f01002a;
        /** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>triangle</code></td><td>1</td><td></td></tr>
<tr><td><code>underline</code></td><td>2</td><td></td></tr>
</table>
         */
        public static final int footerIndicatorStyle=0x7f010029;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int footerIndicatorUnderlinePadding=0x7f01002b;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int footerLineHeight=0x7f010028;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int footerPadding=0x7f01002c;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a floating point value, such as "<code>1.2</code>".
         */
        public static final int fromDegrees=0x7f010006;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int gapWidth=0x7f010019;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int header=0x7f01001a;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int layoutManager=0x7f01001e;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int lineColor=0x7f010013;
        /** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>bottom</code></td><td>0</td><td></td></tr>
<tr><td><code>top</code></td><td>1</td><td></td></tr>
</table>
         */
        public static final int linePosition=0x7f01002d;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int lineWidth=0x7f010018;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int mainImage=0x7f01000b;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
         */
        public static final int maxHeight=0x7f010005;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int minHeight=0x7f01001c;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int pageColor=0x7f01000d;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int radius=0x7f01000e;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a floating point value, such as "<code>1.2</code>".
         */
        public static final int ratio=0x7f01001d;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int reverseLayout=0x7f010020;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int rightPadding=0x7f010001;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int selectedBold=0x7f01002e;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int selectedColor=0x7f010002;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int shelfBackground=0x7f010025;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int snap=0x7f01000f;
        /** <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int spanCount=0x7f01001f;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int stackFromEnd=0x7f010021;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int strokeColor=0x7f010010;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int strokeWidth=0x7f010003;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int titlePadding=0x7f01002f;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a floating point value, such as "<code>1.2</code>".
         */
        public static final int toDegrees=0x7f010007;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int topPadding=0x7f010030;
        /** <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int unselectedColor=0x7f010004;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int vpiCirclePageIndicatorStyle=0x7f010034;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int vpiIconPageIndicatorStyle=0x7f010035;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int vpiLinePageIndicatorStyle=0x7f010036;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int vpiTabPageIndicatorStyle=0x7f010038;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int vpiTitlePageIndicatorStyle=0x7f010037;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int vpiUnderlinePageIndicatorStyle=0x7f010039;
    }
    public static final class bool {
        public static final int default_circle_indicator_centered=0x7f070000;
        public static final int default_circle_indicator_snap=0x7f070001;
        public static final int default_line_indicator_centered=0x7f070002;
        public static final int default_title_indicator_selected_bold=0x7f070003;
        public static final int default_underline_indicator_fades=0x7f070004;
    }
    public static final class color {
        public static final int default_circle_indicator_fill_color=0x7f080000;
        public static final int default_circle_indicator_page_color=0x7f080001;
        public static final int default_circle_indicator_stroke_color=0x7f080002;
        public static final int default_line_indicator_selected_color=0x7f080003;
        public static final int default_line_indicator_unselected_color=0x7f080004;
        public static final int default_title_indicator_footer_color=0x7f080005;
        public static final int default_title_indicator_selected_color=0x7f080006;
        public static final int default_title_indicator_text_color=0x7f080007;
        public static final int default_underline_indicator_selected_color=0x7f080008;
        public static final int dim_foreground_dark=0x7f080009;
        public static final int main_body_color=0x7f08000a;
        public static final int transport_gray=0x7f08000b;
        public static final int vpi__background_holo_dark=0x7f08000c;
        public static final int vpi__background_holo_light=0x7f08000d;
        public static final int vpi__bright_foreground_disabled_holo_dark=0x7f08000e;
        public static final int vpi__bright_foreground_disabled_holo_light=0x7f08000f;
        public static final int vpi__bright_foreground_holo_dark=0x7f080010;
        public static final int vpi__bright_foreground_holo_light=0x7f080011;
        public static final int vpi__bright_foreground_inverse_holo_dark=0x7f080012;
        public static final int vpi__bright_foreground_inverse_holo_light=0x7f080013;
        public static final int vpi__dark_theme=0x7f080014;
        public static final int vpi__light_theme=0x7f080015;
    }
    public static final class dimen {
        public static final int default_circle_indicator_radius=0x7f090000;
        public static final int default_circle_indicator_stroke_width=0x7f090001;
        public static final int default_line_indicator_gap_width=0x7f090002;
        public static final int default_line_indicator_line_width=0x7f090003;
        public static final int default_line_indicator_stroke_width=0x7f090004;
        public static final int default_title_indicator_clip_padding=0x7f090005;
        public static final int default_title_indicator_footer_indicator_height=0x7f090006;
        public static final int default_title_indicator_footer_indicator_underline_padding=0x7f090007;
        public static final int default_title_indicator_footer_line_height=0x7f090008;
        public static final int default_title_indicator_footer_padding=0x7f090009;
        public static final int default_title_indicator_text_size=0x7f09000a;
        public static final int default_title_indicator_title_padding=0x7f09000b;
        public static final int default_title_indicator_top_padding=0x7f09000c;
        public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f09000d;
        public static final int item_touch_helper_swipe_escape_max_velocity=0x7f09000e;
        public static final int item_touch_helper_swipe_escape_velocity=0x7f09000f;
    }
    public static final class drawable {
        public static final int color_progressbar=0x7f020000;
        public static final int custom_tab_indicator_divider=0x7f020001;
        public static final int custom_tab_indicator_selected=0x7f020002;
        public static final int custom_tab_indicator_selected_focused=0x7f020003;
        public static final int custom_tab_indicator_selected_pressed=0x7f020004;
        public static final int custom_tab_indicator_unselected=0x7f020005;
        public static final int custom_tab_indicator_unselected_focused=0x7f020006;
        public static final int custom_tab_indicator_unselected_pressed=0x7f020007;
        public static final int ic_cancel=0x7f020008;
        public static final int ic_media_pause=0x7f020009;
        public static final int ic_media_play=0x7f02000a;
        public static final int spotlight=0x7f02000b;
        public static final int spotlight_blue=0x7f02000c;
        public static final int vpi__tab_indicator=0x7f02000d;
        public static final int vpi__tab_selected_focused_holo=0x7f02000e;
        public static final int vpi__tab_selected_holo=0x7f02000f;
        public static final int vpi__tab_selected_pressed_holo=0x7f020010;
        public static final int vpi__tab_unselected_focused_holo=0x7f020011;
        public static final int vpi__tab_unselected_holo=0x7f020012;
        public static final int vpi__tab_unselected_holo1=0x7f020013;
        public static final int vpi__tab_unselected_pressed_holo=0x7f020014;
    }
    public static final class id {
        public static final int bottom=0x7f0a0006;
        public static final int ffwd=0x7f0a000f;
        public static final int fullscreen_custom_content=0x7f0a0009;
        public static final int gv_emotion=0x7f0a0008;
        public static final int horizontal=0x7f0a0001;
        public static final int item_touch_helper_previous_elevation=0x7f0a0000;
        public static final int main_content=0x7f0a000a;
        public static final int mediacontroller_progress=0x7f0a0012;
        public static final int next=0x7f0a0010;
        public static final int none=0x7f0a0003;
        public static final int pause=0x7f0a000e;
        public static final int prev=0x7f0a000c;
        public static final int rew=0x7f0a000d;
        public static final int time=0x7f0a0013;
        public static final int time_current=0x7f0a0011;
        public static final int top=0x7f0a0007;
        public static final int triangle=0x7f0a0004;
        public static final int underline=0x7f0a0005;
        public static final int vertical=0x7f0a0002;
        public static final int webview_player=0x7f0a000b;
    }
    public static final class integer {
        public static final int default_circle_indicator_orientation=0x7f0b0000;
        public static final int default_title_indicator_footer_indicator_style=0x7f0b0001;
        public static final int default_title_indicator_line_position=0x7f0b0002;
        public static final int default_underline_indicator_fade_delay=0x7f0b0003;
        public static final int default_underline_indicator_fade_length=0x7f0b0004;
    }
    public static final class layout {
        public static final int emotion_grid=0x7f040000;
        public static final int emotion_item=0x7f040001;
        public static final int fragment_webview_video=0x7f040002;
        public static final int listview_footer=0x7f040003;
        public static final int media_controller=0x7f040004;
    }
    public static final class mipmap {
        public static final int ic_cancel=0x7f030000;
    }
    public static final class string {
        public static final int app_name=0x7f0c0000;
    }
    public static final class style {
        /**  API 11 theme customizations can go here. 
 API 14 theme customizations can go here. 
 
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        
         */
        public static final int AppBaseTheme=0x7f060000;
        /**  All customizations that are NOT specific to a particular API-level can go here. 
         */
        public static final int AppTheme=0x7f060002;
        public static final int SlidingDialogAnimation=0x7f060003;
        public static final int SlidingDialogTheme=0x7f060001;
        public static final int TextAppearance_TabPageIndicator=0x7f060004;
        public static final int Theme_PageIndicatorDefaults=0x7f060005;
        public static final int Theme_Sliding_Dialog=0x7f060006;
        public static final int Widget=0x7f060007;
        public static final int Widget_IconPageIndicator=0x7f060008;
        public static final int Widget_TabPageIndicator=0x7f060009;
        public static final int dialogstyle=0x7f06000a;
    }
    public static final class styleable {
        /** Attributes that can be used with a AdaptiveListView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #AdaptiveListView_maxHeight com.viewpagerindicator.test:maxHeight}</code></td><td></td></tr>
           </table>
           @see #AdaptiveListView_maxHeight
         */
        public static final int[] AdaptiveListView = {
            0x7f010005
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#maxHeight}
          attribute's value can be found in the {@link #AdaptiveListView} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
          @attr name com.viewpagerindicator.test:maxHeight
        */
        public static final int AdaptiveListView_maxHeight = 0;
        /** Attributes that can be used with a ArcMenu.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ArcMenu_arcRadius com.viewpagerindicator.test:arcRadius}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_closeOnClick com.viewpagerindicator.test:closeOnClick}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_duration com.viewpagerindicator.test:duration}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_fromDegrees com.viewpagerindicator.test:fromDegrees}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_mainImage com.viewpagerindicator.test:mainImage}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_toDegrees com.viewpagerindicator.test:toDegrees}</code></td><td></td></tr>
           </table>
           @see #ArcMenu_arcRadius
           @see #ArcMenu_closeOnClick
           @see #ArcMenu_duration
           @see #ArcMenu_fromDegrees
           @see #ArcMenu_mainImage
           @see #ArcMenu_toDegrees
         */
        public static final int[] ArcMenu = {
            0x7f010006, 0x7f010007, 0x7f010008, 0x7f010009,
            0x7f01000a, 0x7f01000b
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#arcRadius}
          attribute's value can be found in the {@link #ArcMenu} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
          @attr name com.viewpagerindicator.test:arcRadius
        */
        public static final int ArcMenu_arcRadius = 2;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#closeOnClick}
          attribute's value can be found in the {@link #ArcMenu} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:closeOnClick
        */
        public static final int ArcMenu_closeOnClick = 4;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#duration}
          attribute's value can be found in the {@link #ArcMenu} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be an integer value, such as "<code>100</code>".
          @attr name com.viewpagerindicator.test:duration
        */
        public static final int ArcMenu_duration = 3;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#fromDegrees}
          attribute's value can be found in the {@link #ArcMenu} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a floating point value, such as "<code>1.2</code>".
          @attr name com.viewpagerindicator.test:fromDegrees
        */
        public static final int ArcMenu_fromDegrees = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#mainImage}
          attribute's value can be found in the {@link #ArcMenu} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:mainImage
        */
        public static final int ArcMenu_mainImage = 5;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#toDegrees}
          attribute's value can be found in the {@link #ArcMenu} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a floating point value, such as "<code>1.2</code>".
          @attr name com.viewpagerindicator.test:toDegrees
        */
        public static final int ArcMenu_toDegrees = 1;
        /** Attributes that can be used with a CirclePageIndicator.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #CirclePageIndicator_android_background android:background}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_android_orientation android:orientation}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_centered com.viewpagerindicator.test:centered}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_fillColor com.viewpagerindicator.test:fillColor}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_pageColor com.viewpagerindicator.test:pageColor}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_radius com.viewpagerindicator.test:radius}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_snap com.viewpagerindicator.test:snap}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_strokeColor com.viewpagerindicator.test:strokeColor}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_strokeWidth com.viewpagerindicator.test:strokeWidth}</code></td><td></td></tr>
           </table>
           @see #CirclePageIndicator_android_background
           @see #CirclePageIndicator_android_orientation
           @see #CirclePageIndicator_centered
           @see #CirclePageIndicator_fillColor
           @see #CirclePageIndicator_pageColor
           @see #CirclePageIndicator_radius
           @see #CirclePageIndicator_snap
           @see #CirclePageIndicator_strokeColor
           @see #CirclePageIndicator_strokeWidth
         */
        public static final int[] CirclePageIndicator = {
            0x010100c4, 0x010100d4, 0x7f010000, 0x7f010003,
            0x7f01000c, 0x7f01000d, 0x7f01000e, 0x7f01000f,
            0x7f010010
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#background}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
          @attr name android:background
        */
        public static final int CirclePageIndicator_android_background = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#orientation}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
          @attr name android:orientation
        */
        public static final int CirclePageIndicator_android_orientation = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#centered}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:centered
        */
        public static final int CirclePageIndicator_centered = 2;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#fillColor}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:fillColor
        */
        public static final int CirclePageIndicator_fillColor = 4;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#pageColor}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:pageColor
        */
        public static final int CirclePageIndicator_pageColor = 5;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#radius}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:radius
        */
        public static final int CirclePageIndicator_radius = 6;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#snap}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:snap
        */
        public static final int CirclePageIndicator_snap = 7;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#strokeColor}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:strokeColor
        */
        public static final int CirclePageIndicator_strokeColor = 8;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#strokeWidth}
          attribute's value can be found in the {@link #CirclePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:strokeWidth
        */
        public static final int CirclePageIndicator_strokeWidth = 3;
        /** Attributes that can be used with a DashLine.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #DashLine_dashGap com.viewpagerindicator.test:dashGap}</code></td><td></td></tr>
           <tr><td><code>{@link #DashLine_dashOrientation com.viewpagerindicator.test:dashOrientation}</code></td><td></td></tr>
           <tr><td><code>{@link #DashLine_dashWidth com.viewpagerindicator.test:dashWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #DashLine_lineColor com.viewpagerindicator.test:lineColor}</code></td><td></td></tr>
           </table>
           @see #DashLine_dashGap
           @see #DashLine_dashOrientation
           @see #DashLine_dashWidth
           @see #DashLine_lineColor
         */
        public static final int[] DashLine = {
            0x7f010011, 0x7f010012, 0x7f010013, 0x7f010014
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#dashGap}
          attribute's value can be found in the {@link #DashLine} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
          @attr name com.viewpagerindicator.test:dashGap
        */
        public static final int DashLine_dashGap = 1;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#dashOrientation}
          attribute's value can be found in the {@link #DashLine} array.
 
 
          <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>horizontal</code></td><td>0</td><td></td></tr>
<tr><td><code>vertical</code></td><td>1</td><td></td></tr>
</table>
          @attr name com.viewpagerindicator.test:dashOrientation
        */
        public static final int DashLine_dashOrientation = 3;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#dashWidth}
          attribute's value can be found in the {@link #DashLine} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
          @attr name com.viewpagerindicator.test:dashWidth
        */
        public static final int DashLine_dashWidth = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#lineColor}
          attribute's value can be found in the {@link #DashLine} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
          @attr name com.viewpagerindicator.test:lineColor
        */
        public static final int DashLine_lineColor = 2;
        /** Attributes that can be used with a Emotion.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #Emotion_emotionHeight com.viewpagerindicator.test:emotionHeight}</code></td><td></td></tr>
           <tr><td><code>{@link #Emotion_emotionSize com.viewpagerindicator.test:emotionSize}</code></td><td></td></tr>
           <tr><td><code>{@link #Emotion_emotionWidth com.viewpagerindicator.test:emotionWidth}</code></td><td></td></tr>
           </table>
           @see #Emotion_emotionHeight
           @see #Emotion_emotionSize
           @see #Emotion_emotionWidth
         */
        public static final int[] Emotion = {
            0x7f010015, 0x7f010016, 0x7f010017
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#emotionHeight}
          attribute's value can be found in the {@link #Emotion} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
          @attr name com.viewpagerindicator.test:emotionHeight
        */
        public static final int Emotion_emotionHeight = 1;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#emotionSize}
          attribute's value can be found in the {@link #Emotion} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
          @attr name com.viewpagerindicator.test:emotionSize
        */
        public static final int Emotion_emotionSize = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#emotionWidth}
          attribute's value can be found in the {@link #Emotion} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
          @attr name com.viewpagerindicator.test:emotionWidth
        */
        public static final int Emotion_emotionWidth = 2;
        /** Attributes that can be used with a LinePageIndicator.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #LinePageIndicator_android_background android:background}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_centered com.viewpagerindicator.test:centered}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_gapWidth com.viewpagerindicator.test:gapWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_lineWidth com.viewpagerindicator.test:lineWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_selectedColor com.viewpagerindicator.test:selectedColor}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_strokeWidth com.viewpagerindicator.test:strokeWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_unselectedColor com.viewpagerindicator.test:unselectedColor}</code></td><td></td></tr>
           </table>
           @see #LinePageIndicator_android_background
           @see #LinePageIndicator_centered
           @see #LinePageIndicator_gapWidth
           @see #LinePageIndicator_lineWidth
           @see #LinePageIndicator_selectedColor
           @see #LinePageIndicator_strokeWidth
           @see #LinePageIndicator_unselectedColor
         */
        public static final int[] LinePageIndicator = {
            0x010100d4, 0x7f010000, 0x7f010002, 0x7f010003,
            0x7f010004, 0x7f010018, 0x7f010019
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#background}
          attribute's value can be found in the {@link #LinePageIndicator} array.
          @attr name android:background
        */
        public static final int LinePageIndicator_android_background = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#centered}
          attribute's value can be found in the {@link #LinePageIndicator} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:centered
        */
        public static final int LinePageIndicator_centered = 1;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#gapWidth}
          attribute's value can be found in the {@link #LinePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:gapWidth
        */
        public static final int LinePageIndicator_gapWidth = 6;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#lineWidth}
          attribute's value can be found in the {@link #LinePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:lineWidth
        */
        public static final int LinePageIndicator_lineWidth = 5;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#selectedColor}
          attribute's value can be found in the {@link #LinePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:selectedColor
        */
        public static final int LinePageIndicator_selectedColor = 2;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#strokeWidth}
          attribute's value can be found in the {@link #LinePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:strokeWidth
        */
        public static final int LinePageIndicator_strokeWidth = 3;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#unselectedColor}
          attribute's value can be found in the {@link #LinePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:unselectedColor
        */
        public static final int LinePageIndicator_unselectedColor = 4;
        /** Attributes that can be used with a MaterialHeaderLayout.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #MaterialHeaderLayout_content com.viewpagerindicator.test:content}</code></td><td></td></tr>
           <tr><td><code>{@link #MaterialHeaderLayout_header com.viewpagerindicator.test:header}</code></td><td></td></tr>
           <tr><td><code>{@link #MaterialHeaderLayout_minHeight com.viewpagerindicator.test:minHeight}</code></td><td></td></tr>
           </table>
           @see #MaterialHeaderLayout_content
           @see #MaterialHeaderLayout_header
           @see #MaterialHeaderLayout_minHeight
         */
        public static final int[] MaterialHeaderLayout = {
            0x7f01001a, 0x7f01001b, 0x7f01001c
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#content}
          attribute's value can be found in the {@link #MaterialHeaderLayout} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:content
        */
        public static final int MaterialHeaderLayout_content = 1;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#header}
          attribute's value can be found in the {@link #MaterialHeaderLayout} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:header
        */
        public static final int MaterialHeaderLayout_header = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#minHeight}
          attribute's value can be found in the {@link #MaterialHeaderLayout} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:minHeight
        */
        public static final int MaterialHeaderLayout_minHeight = 2;
        /** Attributes that can be used with a RatioLayout.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #RatioLayout_ratio com.viewpagerindicator.test:ratio}</code></td><td></td></tr>
           </table>
           @see #RatioLayout_ratio
         */
        public static final int[] RatioLayout = {
            0x7f01001d
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#ratio}
          attribute's value can be found in the {@link #RatioLayout} array.
 
 
          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a floating point value, such as "<code>1.2</code>".
          @attr name com.viewpagerindicator.test:ratio
        */
        public static final int RatioLayout_ratio = 0;
        /** Attributes that can be used with a RecyclerView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
           <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
           <tr><td><code>{@link #RecyclerView_layoutManager com.viewpagerindicator.test:layoutManager}</code></td><td></td></tr>
           <tr><td><code>{@link #RecyclerView_reverseLayout com.viewpagerindicator.test:reverseLayout}</code></td><td></td></tr>
           <tr><td><code>{@link #RecyclerView_spanCount com.viewpagerindicator.test:spanCount}</code></td><td></td></tr>
           <tr><td><code>{@link #RecyclerView_stackFromEnd com.viewpagerindicator.test:stackFromEnd}</code></td><td></td></tr>
           </table>
           @see #RecyclerView_android_descendantFocusability
           @see #RecyclerView_android_orientation
           @see #RecyclerView_layoutManager
           @see #RecyclerView_reverseLayout
           @see #RecyclerView_spanCount
           @see #RecyclerView_stackFromEnd
         */
        public static final int[] RecyclerView = {
            0x010100c4, 0x010100f1, 0x7f01001e, 0x7f01001f,
            0x7f010020, 0x7f010021
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
          attribute's value can be found in the {@link #RecyclerView} array.
          @attr name android:descendantFocusability
        */
        public static final int RecyclerView_android_descendantFocusability = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#orientation}
          attribute's value can be found in the {@link #RecyclerView} array.
          @attr name android:orientation
        */
        public static final int RecyclerView_android_orientation = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#layoutManager}
          attribute's value can be found in the {@link #RecyclerView} array.
 
 
          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:layoutManager
        */
        public static final int RecyclerView_layoutManager = 2;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#reverseLayout}
          attribute's value can be found in the {@link #RecyclerView} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:reverseLayout
        */
        public static final int RecyclerView_reverseLayout = 4;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#spanCount}
          attribute's value can be found in the {@link #RecyclerView} array.
 
 
          <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:spanCount
        */
        public static final int RecyclerView_spanCount = 3;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#stackFromEnd}
          attribute's value can be found in the {@link #RecyclerView} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:stackFromEnd
        */
        public static final int RecyclerView_stackFromEnd = 5;
        /** Attributes that can be used with a RoundImageView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #RoundImageView_border_inside_color com.viewpagerindicator.test:border_inside_color}</code></td><td></td></tr>
           <tr><td><code>{@link #RoundImageView_border_outside_color com.viewpagerindicator.test:border_outside_color}</code></td><td></td></tr>
           <tr><td><code>{@link #RoundImageView_border_thickness com.viewpagerindicator.test:border_thickness}</code></td><td></td></tr>
           </table>
           @see #RoundImageView_border_inside_color
           @see #RoundImageView_border_outside_color
           @see #RoundImageView_border_thickness
         */
        public static final int[] RoundImageView = {
            0x7f010022, 0x7f010023, 0x7f010024
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#border_inside_color}
          attribute's value can be found in the {@link #RoundImageView} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:border_inside_color
        */
        public static final int RoundImageView_border_inside_color = 1;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#border_outside_color}
          attribute's value can be found in the {@link #RoundImageView} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:border_outside_color
        */
        public static final int RoundImageView_border_outside_color = 2;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#border_thickness}
          attribute's value can be found in the {@link #RoundImageView} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:border_thickness
        */
        public static final int RoundImageView_border_thickness = 0;
        /** Attributes that can be used with a ShelvesView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ShelvesView_shelfBackground com.viewpagerindicator.test:shelfBackground}</code></td><td></td></tr>
           </table>
           @see #ShelvesView_shelfBackground
         */
        public static final int[] ShelvesView = {
            0x7f010025
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#shelfBackground}
          attribute's value can be found in the {@link #ShelvesView} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:shelfBackground
        */
        public static final int ShelvesView_shelfBackground = 0;
        /** Attributes that can be used with a SlidingMenu.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #SlidingMenu_rightPadding com.viewpagerindicator.test:rightPadding}</code></td><td></td></tr>
           </table>
           @see #SlidingMenu_rightPadding
         */
        public static final int[] SlidingMenu = {
            0x7f010001
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#rightPadding}
          attribute's value can be found in the {@link #SlidingMenu} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:rightPadding
        */
        public static final int SlidingMenu_rightPadding = 0;
        /** Attributes that can be used with a TimeTextView.
         */
        public static final int[] TimeTextView = {
            
        };
        /** Attributes that can be used with a TitlePageIndicator.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #TitlePageIndicator_android_background android:background}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_android_textColor android:textColor}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_android_textSize android:textSize}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_clipPadding com.viewpagerindicator.test:clipPadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerColor com.viewpagerindicator.test:footerColor}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerIndicatorHeight com.viewpagerindicator.test:footerIndicatorHeight}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerIndicatorStyle com.viewpagerindicator.test:footerIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerIndicatorUnderlinePadding com.viewpagerindicator.test:footerIndicatorUnderlinePadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerLineHeight com.viewpagerindicator.test:footerLineHeight}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerPadding com.viewpagerindicator.test:footerPadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_linePosition com.viewpagerindicator.test:linePosition}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_selectedBold com.viewpagerindicator.test:selectedBold}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_selectedColor com.viewpagerindicator.test:selectedColor}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_titlePadding com.viewpagerindicator.test:titlePadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_topPadding com.viewpagerindicator.test:topPadding}</code></td><td></td></tr>
           </table>
           @see #TitlePageIndicator_android_background
           @see #TitlePageIndicator_android_textColor
           @see #TitlePageIndicator_android_textSize
           @see #TitlePageIndicator_clipPadding
           @see #TitlePageIndicator_footerColor
           @see #TitlePageIndicator_footerIndicatorHeight
           @see #TitlePageIndicator_footerIndicatorStyle
           @see #TitlePageIndicator_footerIndicatorUnderlinePadding
           @see #TitlePageIndicator_footerLineHeight
           @see #TitlePageIndicator_footerPadding
           @see #TitlePageIndicator_linePosition
           @see #TitlePageIndicator_selectedBold
           @see #TitlePageIndicator_selectedColor
           @see #TitlePageIndicator_titlePadding
           @see #TitlePageIndicator_topPadding
         */
        public static final int[] TitlePageIndicator = {
            0x01010095, 0x01010098, 0x010100d4, 0x7f010002,
            0x7f010026, 0x7f010027, 0x7f010028, 0x7f010029,
            0x7f01002a, 0x7f01002b, 0x7f01002c, 0x7f01002d,
            0x7f01002e, 0x7f01002f, 0x7f010030
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#background}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
          @attr name android:background
        */
        public static final int TitlePageIndicator_android_background = 2;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#textColor}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
          @attr name android:textColor
        */
        public static final int TitlePageIndicator_android_textColor = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#textSize}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
          @attr name android:textSize
        */
        public static final int TitlePageIndicator_android_textSize = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#clipPadding}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:clipPadding
        */
        public static final int TitlePageIndicator_clipPadding = 4;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#footerColor}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:footerColor
        */
        public static final int TitlePageIndicator_footerColor = 5;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#footerIndicatorHeight}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:footerIndicatorHeight
        */
        public static final int TitlePageIndicator_footerIndicatorHeight = 8;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#footerIndicatorStyle}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>triangle</code></td><td>1</td><td></td></tr>
<tr><td><code>underline</code></td><td>2</td><td></td></tr>
</table>
          @attr name com.viewpagerindicator.test:footerIndicatorStyle
        */
        public static final int TitlePageIndicator_footerIndicatorStyle = 7;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#footerIndicatorUnderlinePadding}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:footerIndicatorUnderlinePadding
        */
        public static final int TitlePageIndicator_footerIndicatorUnderlinePadding = 9;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#footerLineHeight}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:footerLineHeight
        */
        public static final int TitlePageIndicator_footerLineHeight = 6;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#footerPadding}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:footerPadding
        */
        public static final int TitlePageIndicator_footerPadding = 10;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#linePosition}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>bottom</code></td><td>0</td><td></td></tr>
<tr><td><code>top</code></td><td>1</td><td></td></tr>
</table>
          @attr name com.viewpagerindicator.test:linePosition
        */
        public static final int TitlePageIndicator_linePosition = 11;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#selectedBold}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:selectedBold
        */
        public static final int TitlePageIndicator_selectedBold = 12;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#selectedColor}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:selectedColor
        */
        public static final int TitlePageIndicator_selectedColor = 3;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#titlePadding}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:titlePadding
        */
        public static final int TitlePageIndicator_titlePadding = 13;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#topPadding}
          attribute's value can be found in the {@link #TitlePageIndicator} array.
 
 
          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:topPadding
        */
        public static final int TitlePageIndicator_topPadding = 14;
        /** Attributes that can be used with a UnderlinePageIndicator.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_android_background android:background}</code></td><td></td></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_fadeDelay com.viewpagerindicator.test:fadeDelay}</code></td><td></td></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_fadeLength com.viewpagerindicator.test:fadeLength}</code></td><td></td></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_fades com.viewpagerindicator.test:fades}</code></td><td></td></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_selectedColor com.viewpagerindicator.test:selectedColor}</code></td><td></td></tr>
           </table>
           @see #UnderlinePageIndicator_android_background
           @see #UnderlinePageIndicator_fadeDelay
           @see #UnderlinePageIndicator_fadeLength
           @see #UnderlinePageIndicator_fades
           @see #UnderlinePageIndicator_selectedColor
         */
        public static final int[] UnderlinePageIndicator = {
            0x010100d4, 0x7f010002, 0x7f010031, 0x7f010032,
            0x7f010033
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#background}
          attribute's value can be found in the {@link #UnderlinePageIndicator} array.
          @attr name android:background
        */
        public static final int UnderlinePageIndicator_android_background = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#fadeDelay}
          attribute's value can be found in the {@link #UnderlinePageIndicator} array.
 
 
          <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:fadeDelay
        */
        public static final int UnderlinePageIndicator_fadeDelay = 3;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#fadeLength}
          attribute's value can be found in the {@link #UnderlinePageIndicator} array.
 
 
          <p>Must be an integer value, such as "<code>100</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:fadeLength
        */
        public static final int UnderlinePageIndicator_fadeLength = 4;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#fades}
          attribute's value can be found in the {@link #UnderlinePageIndicator} array.
 
 
          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:fades
        */
        public static final int UnderlinePageIndicator_fades = 2;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#selectedColor}
          attribute's value can be found in the {@link #UnderlinePageIndicator} array.
 
 
          <p>Must be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.viewpagerindicator.test:selectedColor
        */
        public static final int UnderlinePageIndicator_selectedColor = 1;
        /** Attributes that can be used with a ViewPagerIndicator.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiCirclePageIndicatorStyle com.viewpagerindicator.test:vpiCirclePageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiIconPageIndicatorStyle com.viewpagerindicator.test:vpiIconPageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiLinePageIndicatorStyle com.viewpagerindicator.test:vpiLinePageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiTabPageIndicatorStyle com.viewpagerindicator.test:vpiTabPageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiTitlePageIndicatorStyle com.viewpagerindicator.test:vpiTitlePageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiUnderlinePageIndicatorStyle com.viewpagerindicator.test:vpiUnderlinePageIndicatorStyle}</code></td><td></td></tr>
           </table>
           @see #ViewPagerIndicator_vpiCirclePageIndicatorStyle
           @see #ViewPagerIndicator_vpiIconPageIndicatorStyle
           @see #ViewPagerIndicator_vpiLinePageIndicatorStyle
           @see #ViewPagerIndicator_vpiTabPageIndicatorStyle
           @see #ViewPagerIndicator_vpiTitlePageIndicatorStyle
           @see #ViewPagerIndicator_vpiUnderlinePageIndicatorStyle
         */
        public static final int[] ViewPagerIndicator = {
            0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
            0x7f010038, 0x7f010039
        };
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#vpiCirclePageIndicatorStyle}
          attribute's value can be found in the {@link #ViewPagerIndicator} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:vpiCirclePageIndicatorStyle
        */
        public static final int ViewPagerIndicator_vpiCirclePageIndicatorStyle = 0;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#vpiIconPageIndicatorStyle}
          attribute's value can be found in the {@link #ViewPagerIndicator} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:vpiIconPageIndicatorStyle
        */
        public static final int ViewPagerIndicator_vpiIconPageIndicatorStyle = 1;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#vpiLinePageIndicatorStyle}
          attribute's value can be found in the {@link #ViewPagerIndicator} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:vpiLinePageIndicatorStyle
        */
        public static final int ViewPagerIndicator_vpiLinePageIndicatorStyle = 2;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#vpiTabPageIndicatorStyle}
          attribute's value can be found in the {@link #ViewPagerIndicator} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:vpiTabPageIndicatorStyle
        */
        public static final int ViewPagerIndicator_vpiTabPageIndicatorStyle = 4;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#vpiTitlePageIndicatorStyle}
          attribute's value can be found in the {@link #ViewPagerIndicator} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:vpiTitlePageIndicatorStyle
        */
        public static final int ViewPagerIndicator_vpiTitlePageIndicatorStyle = 3;
        /**
          <p>This symbol is the offset where the {@link com.viewpagerindicator.test.R.attr#vpiUnderlinePageIndicatorStyle}
          attribute's value can be found in the {@link #ViewPagerIndicator} array.
 
 
          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.viewpagerindicator.test:vpiUnderlinePageIndicatorStyle
        */
        public static final int ViewPagerIndicator_vpiUnderlinePageIndicatorStyle = 5;
    };
}