wpc
2018-11-26 aa82e9973b3d962c325d18ed9407b6b33c4fe554
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
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
/* 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.weikou.myselfsuperad;
 
public final class R {
    public static final class anim {
        public static int bottom_dialog_enter=0x7f040000;
        public static int bottom_dialog_exit=0x7f040001;
        public static int shake_umeng_socialize_cycle_5=0x7f040002;
        public static int shake_umeng_socialize_dlg_alpha=0x7f040003;
        public static int shake_umeng_socialize_dlg_scale=0x7f040004;
        public static int shake_umeng_socialize_edit_anim=0x7f040005;
        public static int shake_umeng_socialize_imageview_rotate=0x7f040006;
        public static int shake_umeng_socialize_scrshot_dlg=0x7f040007;
        public static int sliding_dialog_enter=0x7f040008;
        public static int sliding_dialog_exit=0x7f040009;
        public static int umeng_socialize_fade_in=0x7f04000a;
        public static int umeng_socialize_fade_out=0x7f04000b;
        public static int umeng_socialize_shareboard_animation_in=0x7f04000c;
        public static int umeng_socialize_shareboard_animation_out=0x7f04000d;
        public static int umeng_socialize_slide_in_from_bottom=0x7f04000e;
        public static int umeng_socialize_slide_out_from_bottom=0x7f04000f;
    }
    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 int arcRadius=0x7f010009;
        /** <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 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 int clipPadding=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 int closeOnClick=0x7f01000b;
        /** <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 int column=0x7f010033;
        /** <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>inline</code></td><td>1</td><td></td></tr>
<tr><td><code>top</code></td><td>2</td><td></td></tr>
</table>
         */
        public static int com_facebook_auxiliary_view_position=0x7f010038;
        /** <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 int com_facebook_confirm_logout=0x7f01003a;
        /** <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 int com_facebook_foreground_color=0x7f010034;
        /** <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>center</code></td><td>0</td><td></td></tr>
<tr><td><code>left</code></td><td>1</td><td></td></tr>
<tr><td><code>right</code></td><td>2</td><td></td></tr>
</table>
         */
        public static int com_facebook_horizontal_alignment=0x7f010039;
        /** <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 int com_facebook_is_cropped=0x7f01003f;
        /** <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 int com_facebook_login_text=0x7f01003b;
        /** <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 int com_facebook_logout_text=0x7f01003c;
        /** <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 int com_facebook_object_id=0x7f010035;
        /** <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>unknown</code></td><td>0</td><td></td></tr>
<tr><td><code>open_graph</code></td><td>1</td><td></td></tr>
<tr><td><code>page</code></td><td>2</td><td></td></tr>
</table>
         */
        public static int com_facebook_object_type=0x7f010036;
        /** <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>small</code></td><td>-2</td><td></td></tr>
<tr><td><code>normal</code></td><td>-3</td><td></td></tr>
<tr><td><code>large</code></td><td>-4</td><td></td></tr>
</table>
         */
        public static int com_facebook_preset_size=0x7f01003e;
        /** <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>standard</code></td><td>0</td><td></td></tr>
<tr><td><code>button</code></td><td>1</td><td></td></tr>
<tr><td><code>box_count</code></td><td>2</td><td></td></tr>
</table>
         */
        public static int com_facebook_style=0x7f010037;
        /** <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>automatic</code></td><td>0</td><td></td></tr>
<tr><td><code>display_always</code></td><td>1</td><td></td></tr>
<tr><td><code>never_display</code></td><td>2</td><td></td></tr>
</table>
         */
        public static int com_facebook_tooltip_mode=0x7f01003d;
        /** <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 int dashGap=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>horizontal</code></td><td>0</td><td></td></tr>
<tr><td><code>vertical</code></td><td>1</td><td></td></tr>
</table>
         */
        public static int dashOrientation=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 int dashWidth=0x7f010012;
        /** <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 int duration=0x7f01000a;
        /** <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 int emotionHeight=0x7f010017;
        /** <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 int emotionSize=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 int emotionWidth=0x7f010018;
        /** <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 int fadeDelay=0x7f010029;
        /** <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 int fadeLength=0x7f01002a;
        /** <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 int fades=0x7f010028;
        /** <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 int fillColor=0x7f01000d;
        /** <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 int footerColor=0x7f01001e;
        /** <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 int footerIndicatorHeight=0x7f010021;
        /** <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 int footerIndicatorStyle=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 int footerIndicatorUnderlinePadding=0x7f010022;
        /** <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 int footerLineHeight=0x7f01001f;
        /** <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 int footerPadding=0x7f010023;
        /** <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 int fromDegrees=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 int gapWidth=0x7f01001a;
        /** <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 int lineColor=0x7f010014;
        /** <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 int linePosition=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 int lineWidth=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 int lxyTabPageIndicatorStyle=0x7f010031;
        /** <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 int mainImage=0x7f01000c;
        /** <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 int maxHeight=0x7f010006;
        /** <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 int pageColor=0x7f01000e;
        /** <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 int radius=0x7f01000f;
        /** <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 int ratio=0x7f01001b;
        /** <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 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 int selectedBold=0x7f010025;
        /** <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 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 int shelfBackground=0x7f01001c;
        /** <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 int snap=0x7f010010;
        /** <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 int strokeColor=0x7f010011;
        /** <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 int strokeWidth=0x7f010003;
        /** <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 int title=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 int titlePadding=0x7f010026;
        /** <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 int toDegrees=0x7f010008;
        /** <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 int topPadding=0x7f010027;
        /** <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 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 int vpiCirclePageIndicatorStyle=0x7f01002b;
        /** <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 int vpiIconPageIndicatorStyle=0x7f01002c;
        /** <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 int vpiLinePageIndicatorStyle=0x7f01002d;
        /** <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 int vpiTabPageIndicatorStyle=0x7f01002f;
        /** <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 int vpiTabPageIndicatorStyle1=0x7f010030;
        /** <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 int vpiTitlePageIndicatorStyle=0x7f01002e;
        /** <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 int vpiUnderlinePageIndicatorStyle=0x7f010032;
    }
    public static final class bool {
        public static int default_circle_indicator_centered=0x7f080000;
        public static int default_circle_indicator_snap=0x7f080001;
        public static int default_line_indicator_centered=0x7f080002;
        public static int default_title_indicator_selected_bold=0x7f080003;
        public static int default_underline_indicator_fades=0x7f080004;
    }
    public static final class color {
        public static int black1=0x7f090000;
        public static int blue=0x7f090001;
        public static int blue3=0x7f090002;
        public static int com_facebook_blue=0x7f090003;
        public static int com_facebook_button_background_color=0x7f090004;
        public static int com_facebook_button_background_color_disabled=0x7f090005;
        public static int com_facebook_button_background_color_pressed=0x7f090006;
        public static int com_facebook_button_like_background_color_selected=0x7f090007;
        public static int com_facebook_button_login_silver_background_color=0x7f090008;
        public static int com_facebook_button_login_silver_background_color_pressed=0x7f090009;
        public static int com_facebook_button_send_background_color=0x7f09000a;
        public static int com_facebook_button_send_background_color_pressed=0x7f09000b;
        public static int com_facebook_likeboxcountview_border_color=0x7f09000c;
        public static int com_facebook_likeboxcountview_text_color=0x7f09000d;
        public static int com_facebook_likeview_text_color=0x7f09000e;
        public static int com_facebook_share_button_text_color=0x7f09000f;
        public static int default_circle_indicator_fill_color=0x7f090010;
        public static int default_circle_indicator_page_color=0x7f090011;
        public static int default_circle_indicator_stroke_color=0x7f090012;
        public static int default_line_indicator_selected_color=0x7f090013;
        public static int default_line_indicator_unselected_color=0x7f090014;
        public static int default_title_indicator_footer_color=0x7f090015;
        public static int default_title_indicator_selected_color=0x7f090016;
        public static int default_title_indicator_text_color=0x7f090017;
        public static int default_underline_indicator_selected_color=0x7f090018;
        public static int dim_foreground_dark=0x7f090019;
        public static int gray=0x7f09001a;
        public static int gray1=0x7f09001b;
        public static int lxy_bg_diaphanous=0x7f09001c;
        public static int red=0x7f09001d;
        public static int text_color_small=0x7f09001e;
        public static int top_bar_color=0x7f09001f;
        public static int top_blue=0x7f090020;
        public static int umeng_background=0x7f090021;
        public static int umeng_black=0x7f090022;
        public static int umeng_blue=0x7f090023;
        public static int umeng_divide=0x7f090024;
        public static int umeng_socialize_color_group=0x7f090025;
        public static int umeng_socialize_comments_bg=0x7f090026;
        public static int umeng_socialize_divider=0x7f090027;
        public static int umeng_socialize_edit_bg=0x7f090028;
        public static int umeng_socialize_grid_divider_line=0x7f090029;
        public static int umeng_socialize_list_item_bgcolor=0x7f09002a;
        public static int umeng_socialize_list_item_textcolor=0x7f09002b;
        public static int umeng_socialize_shareactivity=0x7f09002c;
        public static int umeng_socialize_shareactivitydefault=0x7f09002d;
        public static int umeng_socialize_text_friends_list=0x7f09002e;
        public static int umeng_socialize_text_share_content=0x7f09002f;
        public static int umeng_socialize_text_time=0x7f090030;
        public static int umeng_socialize_text_title=0x7f090031;
        public static int umeng_socialize_text_ucenter=0x7f090032;
        public static int umeng_socialize_ucenter_bg=0x7f090033;
        public static int umeng_socialize_web_bg=0x7f090034;
        public static int umeng_text_color=0x7f090035;
        public static int umeng_white=0x7f090036;
        public static int vk_black=0x7f090037;
        public static int vk_black_pressed=0x7f090038;
        public static int vk_clear=0x7f090039;
        public static int vk_color=0x7f09003a;
        public static int vk_grey_color=0x7f09003b;
        public static int vk_light_color=0x7f09003c;
        public static int vk_share_blue_color=0x7f09003d;
        public static int vk_share_gray_line=0x7f09003e;
        public static int vk_share_link_color=0x7f09003f;
        public static int vk_share_link_title_color=0x7f090040;
        public static int vk_share_top_blue_color=0x7f090041;
        public static int vk_white=0x7f090042;
        public static int vpi__background_holo_dark=0x7f090043;
        public static int vpi__background_holo_light=0x7f090044;
        public static int vpi__bright_foreground_disabled_holo_dark=0x7f090045;
        public static int vpi__bright_foreground_disabled_holo_light=0x7f090046;
        public static int vpi__bright_foreground_holo_dark=0x7f090047;
        public static int vpi__bright_foreground_holo_light=0x7f090048;
        public static int vpi__bright_foreground_inverse_holo_dark=0x7f090049;
        public static int vpi__bright_foreground_inverse_holo_light=0x7f09004a;
        public static int vpi__dark_theme=0x7f09004d;
        public static int vpi__light_theme=0x7f09004e;
        public static int vpi_bg_gray=0x7f09004b;
        public static int vpi_bg_white=0x7f09004c;
    }
    public static final class dimen {
        public static int actionbar_height=0x7f0a0000;
        public static int actionbar_item_height=0x7f0a0001;
        public static int actionbar_item_width=0x7f0a0002;
        public static int alphabet_size=0x7f0a0003;
        public static int body_padding_large=0x7f0a0004;
        public static int body_padding_medium=0x7f0a0005;
        public static int com_facebook_likeboxcountview_border_radius=0x7f0a0006;
        public static int com_facebook_likeboxcountview_border_width=0x7f0a0007;
        public static int com_facebook_likeboxcountview_caret_height=0x7f0a0008;
        public static int com_facebook_likeboxcountview_caret_width=0x7f0a0009;
        public static int com_facebook_likeboxcountview_text_padding=0x7f0a000a;
        public static int com_facebook_likeboxcountview_text_size=0x7f0a000b;
        public static int com_facebook_likeview_edge_padding=0x7f0a000c;
        public static int com_facebook_likeview_internal_padding=0x7f0a000d;
        public static int com_facebook_likeview_text_size=0x7f0a000e;
        public static int com_facebook_profilepictureview_preset_size_large=0x7f0a000f;
        public static int com_facebook_profilepictureview_preset_size_normal=0x7f0a0010;
        public static int com_facebook_profilepictureview_preset_size_small=0x7f0a0011;
        public static int com_facebook_share_button_compound_drawable_padding=0x7f0a0012;
        public static int com_facebook_share_button_padding_bottom=0x7f0a0013;
        public static int com_facebook_share_button_padding_left=0x7f0a0014;
        public static int com_facebook_share_button_padding_right=0x7f0a0015;
        public static int com_facebook_share_button_padding_top=0x7f0a0016;
        public static int com_facebook_share_button_text_size=0x7f0a0017;
        public static int com_facebook_tooltip_horizontal_padding=0x7f0a0018;
        public static int default_circle_indicator_radius=0x7f0a0019;
        public static int default_circle_indicator_stroke_width=0x7f0a001a;
        public static int default_line_indicator_gap_width=0x7f0a001b;
        public static int default_line_indicator_line_width=0x7f0a001c;
        public static int default_line_indicator_stroke_width=0x7f0a001d;
        public static int default_title_indicator_clip_padding=0x7f0a001e;
        public static int default_title_indicator_footer_indicator_height=0x7f0a001f;
        public static int default_title_indicator_footer_indicator_underline_padding=0x7f0a0020;
        public static int default_title_indicator_footer_line_height=0x7f0a0021;
        public static int default_title_indicator_footer_padding=0x7f0a0022;
        public static int default_title_indicator_text_size=0x7f0a0023;
        public static int default_title_indicator_title_padding=0x7f0a0024;
        public static int default_title_indicator_top_padding=0x7f0a0025;
        public static int speaker_image_padding=0x7f0a0026;
        public static int speaker_image_size=0x7f0a0027;
        public static int text_size_large=0x7f0a0028;
        public static int text_size_medium=0x7f0a0029;
        public static int text_size_small=0x7f0a002a;
        public static int text_size_xlarge=0x7f0a002b;
        public static int titlebar=0x7f0a002c;
        public static int umeng_socialize_pad_window_height=0x7f0a002d;
        public static int umeng_socialize_pad_window_width=0x7f0a002e;
        public static int vendor_image_size=0x7f0a002f;
        public static int vk_share_dialog_padding=0x7f0a0030;
        public static int vk_share_dialog_padding_top=0x7f0a0031;
        public static int vk_share_dialog_view_padding=0x7f0a0032;
        public static int vk_share_link_top_margin=0x7f0a0033;
        public static int vk_share_send_text_size=0x7f0a0034;
        public static int vk_share_settings_button_min_height=0x7f0a0035;
        public static int vk_share_title_link_host_size=0x7f0a0036;
        public static int vk_share_title_link_title_size=0x7f0a0037;
        public static int vk_share_title_text_size=0x7f0a0038;
        public static int vk_share_top_button_padding_left=0x7f0a0039;
        public static int vk_share_top_button_padding_right=0x7f0a003a;
        public static int vk_share_top_image_margin=0x7f0a003b;
        public static int vk_share_top_line_margin=0x7f0a003c;
        public static int vk_share_top_panel_height=0x7f0a003d;
        public static int vk_share_top_title_margin=0x7f0a003e;
    }
    public static final class drawable {
        public static int bannerclose=0x7f020000;
        public static int btnbg=0x7f020001;
        public static int color_progressbar=0x7f020002;
        public static int com_facebook_button_background=0x7f020003;
        public static int com_facebook_button_icon=0x7f020004;
        public static int com_facebook_button_like_background=0x7f020005;
        public static int com_facebook_button_like_icon_selected=0x7f020006;
        public static int com_facebook_button_login_silver_background=0x7f020007;
        public static int com_facebook_button_send_background=0x7f020008;
        public static int com_facebook_button_send_icon=0x7f020009;
        public static int com_facebook_close=0x7f02000a;
        public static int com_facebook_profile_picture_blank_portrait=0x7f02000b;
        public static int com_facebook_profile_picture_blank_square=0x7f02000c;
        public static int com_facebook_tooltip_black_background=0x7f02000d;
        public static int com_facebook_tooltip_black_bottomnub=0x7f02000e;
        public static int com_facebook_tooltip_black_topnub=0x7f02000f;
        public static int com_facebook_tooltip_black_xout=0x7f020010;
        public static int com_facebook_tooltip_blue_background=0x7f020011;
        public static int com_facebook_tooltip_blue_bottomnub=0x7f020012;
        public static int com_facebook_tooltip_blue_topnub=0x7f020013;
        public static int com_facebook_tooltip_blue_xout=0x7f020014;
        public static int dialog_background=0x7f020015;
        public static int dialog_button1=0x7f020016;
        public static int dialog_button2=0x7f020017;
        public static int edit_view_bg=0x7f020018;
        public static int editbg=0x7f020019;
        public static int fenxiang=0x7f02001a;
        public static int gengxin=0x7f02001b;
        public static int ic_ab_app=0x7f02001c;
        public static int ic_ab_done=0x7f02001d;
        public static int ic_back=0x7f02001e;
        public static int ic_launcher=0x7f02001f;
        public static int ic_media_pause=0x7f020020;
        public static int ic_media_play=0x7f020021;
        public static int info_icon_1=0x7f020022;
        public static int lxy__tab_indicator=0x7f020023;
        public static int messenger_bubble_large_blue=0x7f020024;
        public static int messenger_bubble_large_white=0x7f020025;
        public static int messenger_bubble_small_blue=0x7f020026;
        public static int messenger_bubble_small_white=0x7f020027;
        public static int messenger_button_blue_bg_round=0x7f020028;
        public static int messenger_button_blue_bg_selector=0x7f020029;
        public static int messenger_button_send_round_shadow=0x7f02002a;
        public static int messenger_button_white_bg_round=0x7f02002b;
        public static int messenger_button_white_bg_selector=0x7f02002c;
        public static int mvpi__tab_indicator=0x7f02002d;
        public static int selector_button=0x7f02002e;
        public static int shake_umeng_socialize_close=0x7f02002f;
        public static int shake_umeng_socialize_close_button_style=0x7f020030;
        public static int shake_umeng_socialize_close_pressed=0x7f020031;
        public static int shake_umeng_socialize_edittext_corner=0x7f020032;
        public static int shake_umeng_socialize_imgview_border=0x7f020033;
        public static int shake_umeng_socialize_preview_edit_corners_style=0x7f020034;
        public static int shake_umeng_socialize_shake_layout_corner=0x7f020035;
        public static int shake_umeng_socialize_share_btn_style=0x7f020036;
        public static int shape_update_left=0x7f020037;
        public static int shape_update_right=0x7f020038;
        public static int spotlight=0x7f020039;
        public static int spotlight_blue=0x7f02003a;
        public static int tab_selected_holo=0x7f02003b;
        public static int umeng_arrow=0x7f02003c;
        public static int umeng_back_icon=0x7f02003d;
        public static int umeng_socialize_action_back=0x7f02003e;
        public static int umeng_socialize_action_back_normal=0x7f02003f;
        public static int umeng_socialize_action_back_selected=0x7f020040;
        public static int umeng_socialize_back_icon=0x7f020041;
        public static int umeng_socialize_bind_bg=0x7f020042;
        public static int umeng_socialize_btn_bg=0x7f020043;
        public static int umeng_socialize_button_blue=0x7f020044;
        public static int umeng_socialize_button_grey=0x7f020045;
        public static int umeng_socialize_button_grey_blue=0x7f020046;
        public static int umeng_socialize_button_login=0x7f020047;
        public static int umeng_socialize_button_login_normal=0x7f020048;
        public static int umeng_socialize_button_login_pressed=0x7f020049;
        public static int umeng_socialize_button_red=0x7f02004a;
        public static int umeng_socialize_button_red_blue=0x7f02004b;
        public static int umeng_socialize_button_white=0x7f02004c;
        public static int umeng_socialize_button_white_blue=0x7f02004d;
        public static int umeng_socialize_checked=0x7f02004e;
        public static int umeng_socialize_comment_bg=0x7f02004f;
        public static int umeng_socialize_comment_icon=0x7f020050;
        public static int umeng_socialize_comment_item_bg_shape=0x7f020051;
        public static int umeng_socialize_comment_normal=0x7f020052;
        public static int umeng_socialize_comment_selected=0x7f020053;
        public static int umeng_socialize_commnet_header_bg=0x7f020054;
        public static int umeng_socialize_copy=0x7f020055;
        public static int umeng_socialize_copyurl=0x7f020056;
        public static int umeng_socialize_default_avatar=0x7f020057;
        public static int umeng_socialize_delete=0x7f020058;
        public static int umeng_socialize_ding=0x7f020059;
        public static int umeng_socialize_divider_line=0x7f02005a;
        public static int umeng_socialize_douban=0x7f02005b;
        public static int umeng_socialize_douban_off=0x7f02005c;
        public static int umeng_socialize_douban_on=0x7f02005d;
        public static int umeng_socialize_dropbox=0x7f02005e;
        public static int umeng_socialize_edit_bg=0x7f02005f;
        public static int umeng_socialize_evernote=0x7f020060;
        public static int umeng_socialize_evernote_gray=0x7f020061;
        public static int umeng_socialize_facebook=0x7f020062;
        public static int umeng_socialize_facebook_close=0x7f020063;
        public static int umeng_socialize_facebook_off=0x7f020064;
        public static int umeng_socialize_fav=0x7f020065;
        public static int umeng_socialize_fbmessage=0x7f020066;
        public static int umeng_socialize_fetch_image=0x7f020067;
        public static int umeng_socialize_fetch_location_disabled=0x7f020068;
        public static int umeng_socialize_flickr=0x7f020069;
        public static int umeng_socialize_flickr_gray=0x7f02006a;
        public static int umeng_socialize_follow_check=0x7f02006b;
        public static int umeng_socialize_follow_off=0x7f02006c;
        public static int umeng_socialize_follow_on=0x7f02006d;
        public static int umeng_socialize_foursquare=0x7f02006e;
        public static int umeng_socialize_foursquare_gray=0x7f02006f;
        public static int umeng_socialize_gmail=0x7f020070;
        public static int umeng_socialize_gmail_off=0x7f020071;
        public static int umeng_socialize_gmail_on=0x7f020072;
        public static int umeng_socialize_google=0x7f020073;
        public static int umeng_socialize_instagram=0x7f020074;
        public static int umeng_socialize_instagram_off=0x7f020075;
        public static int umeng_socialize_instagram_on=0x7f020076;
        public static int umeng_socialize_kakao=0x7f020077;
        public static int umeng_socialize_kakao_gray=0x7f020078;
        public static int umeng_socialize_laiwang=0x7f020079;
        public static int umeng_socialize_laiwang_dynamic=0x7f02007a;
        public static int umeng_socialize_laiwang_dynamic_gray=0x7f02007b;
        public static int umeng_socialize_light_bar_bg_pad=0x7f02007c;
        public static int umeng_socialize_location_grey=0x7f02007d;
        public static int umeng_socialize_location_ic=0x7f02007e;
        public static int umeng_socialize_location_mark=0x7f02007f;
        public static int umeng_socialize_location_off=0x7f020080;
        public static int umeng_socialize_location_on=0x7f020081;
        public static int umeng_socialize_menu_default=0x7f020082;
        public static int umeng_socialize_more=0x7f020083;
        public static int umeng_socialize_nav_bar_bg=0x7f020084;
        public static int umeng_socialize_nav_bar_bg_pad=0x7f020085;
        public static int umeng_socialize_oauth_check=0x7f020086;
        public static int umeng_socialize_oauth_check_off=0x7f020087;
        public static int umeng_socialize_oauth_check_on=0x7f020088;
        public static int umeng_socialize_pinterest=0x7f020089;
        public static int umeng_socialize_pinterest_gray=0x7f02008a;
        public static int umeng_socialize_pocket=0x7f02008b;
        public static int umeng_socialize_pocket_gray=0x7f02008c;
        public static int umeng_socialize_pulltorefresh_arrow=0x7f02008d;
        public static int umeng_socialize_pv=0x7f02008e;
        public static int umeng_socialize_qq=0x7f02008f;
        public static int umeng_socialize_qq_off=0x7f020090;
        public static int umeng_socialize_qq_on=0x7f020091;
        public static int umeng_socialize_refersh=0x7f020092;
        public static int umeng_socialize_search_icon=0x7f020093;
        public static int umeng_socialize_shape_solid_black=0x7f020094;
        public static int umeng_socialize_shape_solid_grey=0x7f020095;
        public static int umeng_socialize_share_music=0x7f020096;
        public static int umeng_socialize_share_pic=0x7f020097;
        public static int umeng_socialize_share_to_button=0x7f020098;
        public static int umeng_socialize_share_transparent_corner=0x7f020099;
        public static int umeng_socialize_share_video=0x7f02009a;
        public static int umeng_socialize_shareboard_item_background=0x7f02009b;
        public static int umeng_socialize_sidebar_normal=0x7f02009c;
        public static int umeng_socialize_sidebar_selected=0x7f02009d;
        public static int umeng_socialize_sidebar_selector=0x7f02009e;
        public static int umeng_socialize_sina=0x7f02009f;
        public static int umeng_socialize_sina_off=0x7f0200a0;
        public static int umeng_socialize_sina_on=0x7f0200a1;
        public static int umeng_socialize_sms_off=0x7f0200a2;
        public static int umeng_socialize_sms_on=0x7f0200a3;
        public static int umeng_socialize_switchimage_choose=0x7f0200a4;
        public static int umeng_socialize_switchimage_unchoose=0x7f0200a5;
        public static int umeng_socialize_title_back_bt=0x7f0200a6;
        public static int umeng_socialize_title_back_bt_normal=0x7f0200a7;
        public static int umeng_socialize_title_back_bt_selected=0x7f0200a8;
        public static int umeng_socialize_title_right_bt=0x7f0200a9;
        public static int umeng_socialize_title_right_bt_normal=0x7f0200aa;
        public static int umeng_socialize_title_right_bt_selected=0x7f0200ab;
        public static int umeng_socialize_title_tab_button_left=0x7f0200ac;
        public static int umeng_socialize_title_tab_button_right=0x7f0200ad;
        public static int umeng_socialize_title_tab_left_normal=0x7f0200ae;
        public static int umeng_socialize_title_tab_left_pressed=0x7f0200af;
        public static int umeng_socialize_title_tab_right_normal=0x7f0200b0;
        public static int umeng_socialize_title_tab_right_pressed=0x7f0200b1;
        public static int umeng_socialize_wechat=0x7f0200b2;
        public static int umeng_socialize_wechat_gray=0x7f0200b3;
        public static int umeng_socialize_window_shadow_pad=0x7f0200b4;
        public static int umeng_socialize_x_button=0x7f0200b5;
        public static int umeng_socialize_ynote=0x7f0200b6;
        public static int umeng_socialize_ynote_gray=0x7f0200b7;
        public static int umsocial_defaultwatermark=0x7f0200b8;
        public static int update_bottom=0x7f0200b9;
        public static int video_review=0x7f0200ba;
        public static int video_review_click=0x7f0200bb;
        public static int vk_clear_shape=0x7f0200bc;
        public static int vk_gray_transparent_shape=0x7f0200bd;
        public static int vk_icon=0x7f0200be;
        public static int vk_share_send_button_background=0x7f0200bf;
        public static int vpi__tab_indicator=0x7f0200c0;
        public static int vpi__tab_indicator1=0x7f0200c1;
        public static int vpi__tab_indicator2=0x7f0200c2;
        public static int vpi__tab_selected_focused_holo=0x7f0200c3;
        public static int vpi__tab_selected_holo=0x7f0200c4;
        public static int vpi__tab_selected_holo1=0x7f0200c5;
        public static int vpi__tab_selected_pressed_holo=0x7f0200c6;
        public static int vpi__tab_unselected_focused_holo=0x7f0200c7;
        public static int vpi__tab_unselected_holo=0x7f0200c8;
        public static int vpi__tab_unselected_pressed_holo=0x7f0200c9;
        public static int water=0x7f0200ca;
    }
    public static final class id {
        public static int adapter_image=0x7f0d0019;
        public static int attachmentLinkLayout=0x7f0d0077;
        public static int auth_button=0x7f0d001b;
        public static int automatic=0x7f0d0011;
        public static int bannner_ad_webview=0x7f0d0018;
        public static int bottom=0x7f0d0005;
        public static int box_count=0x7f0d000a;
        public static int button=0x7f0d000b;
        public static int captchaAnswer=0x7f0d006c;
        public static int captcha_container=0x7f0d0069;
        public static int center=0x7f0d000e;
        public static int checkalipay=0x7f0d004f;
        public static int checkbtn=0x7f0d004b;
        public static int checkfb=0x7f0d0051;
        public static int checkqq=0x7f0d0050;
        public static int checksign=0x7f0d004c;
        public static int checksina=0x7f0d004d;
        public static int checkvk=0x7f0d0052;
        public static int checkwx=0x7f0d004e;
        public static int com_facebook_fragment_container=0x7f0d0026;
        public static int com_facebook_login_activity_progress_bar=0x7f0d0027;
        public static int content_view_per=0x7f0d0044;
        public static int content_view_text1=0x7f0d0043;
        public static int copyUrl=0x7f0d006e;
        public static int display_always=0x7f0d0012;
        public static int divider=0x7f0d001c;
        public static int editcheck=0x7f0d004a;
        public static int ffwd=0x7f0d003b;
        public static int fl_ad=0x7f0d0017;
        public static int fullscreen_custom_content=0x7f0d0030;
        public static int getbtn=0x7f0d0036;
        public static int gv_emotion=0x7f0d002f;
        public static int horizontal=0x7f0d0000;
        public static int imageView=0x7f0d006b;
        public static int imagesContainer=0x7f0d0076;
        public static int imagesScrollView=0x7f0d0075;
        public static int inline=0x7f0d000d;
        public static int iv_ad_full_img=0x7f0d0023;
        public static int iv_banner_close=0x7f0d0024;
        public static int iv_download=0x7f0d0021;
        public static int iv_img=0x7f0d001e;
        public static int large=0x7f0d0014;
        public static int left=0x7f0d000f;
        public static int li1=0x7f0d0053;
        public static int linkHost=0x7f0d0079;
        public static int linkTitle=0x7f0d0078;
        public static int list=0x7f0d0045;
        public static int ll_img_and_text=0x7f0d001d;
        public static int main_content=0x7f0d0031;
        public static int mediacontroller_progress=0x7f0d003e;
        public static int name=0x7f0d001a;
        public static int never_display=0x7f0d0013;
        public static int next=0x7f0d003c;
        public static int none=0x7f0d0002;
        public static int normal=0x7f0d0015;
        public static int open_graph=0x7f0d0007;
        public static int page=0x7f0d0008;
        public static int pause=0x7f0d003a;
        public static int postContentLayout=0x7f0d0073;
        public static int postSettingsLayout=0x7f0d007a;
        public static int prev=0x7f0d0038;
        public static int progress=0x7f0d006d;
        public static int progressBar=0x7f0d006a;
        public static int progress_bar=0x7f0d0059;
        public static int progress_bar_parent=0x7f0d005f;
        public static int result=0x7f0d0037;
        public static int rew=0x7f0d0039;
        public static int right=0x7f0d0010;
        public static int rl_only_img=0x7f0d0022;
        public static int root=0x7f0d0060;
        public static int sendButton=0x7f0d0072;
        public static int sendButtonLayout=0x7f0d0070;
        public static int sendProgress=0x7f0d0071;
        public static int shareText=0x7f0d0074;
        public static int small=0x7f0d0016;
        public static int socialize_image_view=0x7f0d0046;
        public static int socialize_text_view=0x7f0d0047;
        public static int standard=0x7f0d000c;
        public static int time=0x7f0d003f;
        public static int time_current=0x7f0d003d;
        public static int title_bar=0x7f0d0033;
        public static int top=0x7f0d0006;
        public static int topBarLayout=0x7f0d006f;
        public static int triangle=0x7f0d0003;
        public static int tv_atonce_update=0x7f0d002e;
        public static int tv_banner_descrip=0x7f0d0020;
        public static int tv_banner_title=0x7f0d001f;
        public static int tv_dialog_content=0x7f0d002b;
        public static int tv_dialog_noti_wifi=0x7f0d002c;
        public static int tv_dialog_title=0x7f0d0028;
        public static int tv_no_update=0x7f0d002d;
        public static int tv_size=0x7f0d002a;
        public static int tv_top_bar_left=0x7f0d0040;
        public static int tv_top_bar_middle=0x7f0d0041;
        public static int tv_top_bar_right=0x7f0d0042;
        public static int tv_version=0x7f0d0029;
        public static int umeng_back=0x7f0d0049;
        public static int umeng_clear=0x7f0d0034;
        public static int umeng_copy=0x7f0d0035;
        public static int umeng_del=0x7f0d0068;
        public static int umeng_image_edge=0x7f0d0065;
        public static int umeng_menu_bottom=0x7f0d0054;
        public static int umeng_menu_bottom2=0x7f0d0056;
        public static int umeng_menu_center=0x7f0d0055;
        public static int umeng_menu_center2=0x7f0d0057;
        public static int umeng_share_btn=0x7f0d005b;
        public static int umeng_share_icon=0x7f0d0066;
        public static int umeng_socialize_follow=0x7f0d005c;
        public static int umeng_socialize_follow_check=0x7f0d005d;
        public static int umeng_socialize_share_bottom_area=0x7f0d0064;
        public static int umeng_socialize_share_edittext=0x7f0d0062;
        public static int umeng_socialize_share_titlebar=0x7f0d0061;
        public static int umeng_socialize_share_word_num=0x7f0d0063;
        public static int umeng_socialize_titlebar=0x7f0d005a;
        public static int umeng_title=0x7f0d0048;
        public static int umeng_web_title=0x7f0d0067;
        public static int underline=0x7f0d0004;
        public static int unknown=0x7f0d0009;
        public static int vertical=0x7f0d0001;
        public static int vp_banner=0x7f0d0025;
        public static int webView=0x7f0d005e;
        public static int webview=0x7f0d0058;
        public static int webview_player=0x7f0d0032;
    }
    public static final class integer {
        public static int default_circle_indicator_orientation=0x7f0b0000;
        public static int default_title_indicator_footer_indicator_style=0x7f0b0001;
        public static int default_title_indicator_line_position=0x7f0b0002;
        public static int default_underline_indicator_fade_delay=0x7f0b0003;
        public static int default_underline_indicator_fade_length=0x7f0b0004;
    }
    public static final class layout {
        public static int activity_main=0x7f030000;
        public static int ad_browser_activity=0x7f030001;
        public static int app_authadapter=0x7f030002;
        public static int app_shareadapter=0x7f030003;
        public static int app_styleadapter=0x7f030004;
        public static int banner_layout=0x7f030005;
        public static int banner_show=0x7f030006;
        public static int com_facebook_activity_layout=0x7f030007;
        public static int com_facebook_login_fragment=0x7f030008;
        public static int custom_dialog=0x7f030009;
        public static int emotion_grid=0x7f03000a;
        public static int emotion_item=0x7f03000b;
        public static int fragment_webview_video=0x7f03000c;
        public static int infodetail=0x7f03000d;
        public static int listview_footer=0x7f03000e;
        public static int media_controller=0x7f03000f;
        public static int navigation_top_bar=0x7f030010;
        public static int notify_item=0x7f030011;
        public static int share_detail=0x7f030012;
        public static int socialize_share_menu_item=0x7f030013;
        public static int titlebar=0x7f030014;
        public static int umeng_auth=0x7f030015;
        public static int umeng_check=0x7f030016;
        public static int umeng_menu=0x7f030017;
        public static int umeng_share=0x7f030018;
        public static int umeng_socialize_activity_kakao_webview=0x7f030019;
        public static int umeng_socialize_oauth_dialog=0x7f03001a;
        public static int umeng_socialize_share=0x7f03001b;
        public static int vk_captcha_dialog=0x7f03001c;
        public static int vk_open_auth_dialog=0x7f03001d;
        public static int vk_share_dialog=0x7f03001e;
    }
    public static final class raw {
        public static int shake_sound=0x7f060000;
    }
    public static final class string {
        public static int WIFI_NOTI=0x7f0c0000;
        public static int app_name=0x7f0c0001;
        public static int banner_close=0x7f0c0002;
        public static int banner_download_img=0x7f0c0003;
        public static int banner_full_img=0x7f0c0004;
        public static int banner_img=0x7f0c0005;
        public static int com_facebook_dialogloginactivity_ok_button=0x7f0c0006;
        public static int com_facebook_image_download_unknown_error=0x7f0c0007;
        public static int com_facebook_internet_permission_error_message=0x7f0c0008;
        public static int com_facebook_internet_permission_error_title=0x7f0c0009;
        public static int com_facebook_like_button_liked=0x7f0c000a;
        public static int com_facebook_like_button_not_liked=0x7f0c000b;
        public static int com_facebook_loading=0x7f0c000c;
        public static int com_facebook_loginview_cancel_action=0x7f0c000d;
        public static int com_facebook_loginview_log_in_button=0x7f0c000e;
        public static int com_facebook_loginview_log_in_button_long=0x7f0c000f;
        public static int com_facebook_loginview_log_out_action=0x7f0c0010;
        public static int com_facebook_loginview_log_out_button=0x7f0c0011;
        public static int com_facebook_loginview_logged_in_as=0x7f0c0012;
        public static int com_facebook_loginview_logged_in_using_facebook=0x7f0c0013;
        public static int com_facebook_requesterror_password_changed=0x7f0c0014;
        public static int com_facebook_requesterror_permissions=0x7f0c0015;
        public static int com_facebook_requesterror_reconnect=0x7f0c0016;
        public static int com_facebook_send_button_text=0x7f0c0017;
        public static int com_facebook_share_button_text=0x7f0c0018;
        public static int com_facebook_tooltip_default=0x7f0c0019;
        public static int facebook_app_id=0x7f0c001a;
        public static int flickr_content=0x7f0c001b;
        public static int flickr_no_client=0x7f0c001c;
        public static int flickr_no_content=0x7f0c001d;
        public static int flickr_showword=0x7f0c001e;
        public static int foursquare_content=0x7f0c001f;
        public static int foursquare_no_client=0x7f0c0020;
        public static int foursquare_showword=0x7f0c0021;
        public static int kakao_content=0x7f0c0022;
        public static int kakao_no_client=0x7f0c0023;
        public static int kakao_no_content=0x7f0c0024;
        public static int kakao_showword=0x7f0c0025;
        public static int line_content=0x7f0c0026;
        public static int line_no_client=0x7f0c0027;
        public static int line_no_content=0x7f0c0028;
        public static int line_showword=0x7f0c0029;
        public static int linkedin_content=0x7f0c002a;
        public static int linkedin_no_client=0x7f0c002b;
        public static int linkedin_showword=0x7f0c002c;
        public static int messenger_send_button_text=0x7f0c002d;
        public static int pocket_content=0x7f0c002e;
        public static int pocket_no_client=0x7f0c002f;
        public static int pocket_showword=0x7f0c0030;
        public static int pull_to_refresh_pull_label=0x7f0c0031;
        public static int pull_to_refresh_refreshing_label=0x7f0c0032;
        public static int pull_to_refresh_release_label=0x7f0c0033;
        public static int pull_to_refresh_tap_label=0x7f0c0034;
        public static int tumblr_content=0x7f0c0035;
        public static int tumblr_no_client=0x7f0c0036;
        public static int tumblr_no_content=0x7f0c0037;
        public static int tumblr_showword=0x7f0c0038;
        public static int umeng_auth_title=0x7f0c0039;
        public static int umeng_check_alipay=0x7f0c003a;
        public static int umeng_check_fb=0x7f0c003b;
        public static int umeng_check_qq=0x7f0c003c;
        public static int umeng_check_sign=0x7f0c003d;
        public static int umeng_check_sina=0x7f0c003e;
        public static int umeng_check_title=0x7f0c003f;
        public static int umeng_check_vk=0x7f0c0040;
        public static int umeng_check_wx=0x7f0c0041;
        public static int umeng_choose_style=0x7f0c0042;
        public static int umeng_delauth_title=0x7f0c0043;
        public static int umeng_example_home_btn_plus=0x7f0c0044;
        public static int umeng_getinfo_title=0x7f0c0045;
        public static int umeng_home_title=0x7f0c0046;
        public static int umeng_home_update=0x7f0c0047;
        public static int umeng_menu_title=0x7f0c0048;
        public static int umeng_share_title=0x7f0c0049;
        public static int umeng_sharebutton_copy=0x7f0c004a;
        public static int umeng_sharebutton_copyurl=0x7f0c004b;
        public static int umeng_socialize_back=0x7f0c004c;
        public static int umeng_socialize_cancel_btn_str=0x7f0c004d;
        public static int umeng_socialize_comment=0x7f0c004e;
        public static int umeng_socialize_comment_detail=0x7f0c004f;
        public static int umeng_socialize_content_hint=0x7f0c0050;
        public static int umeng_socialize_female=0x7f0c0051;
        public static int umeng_socialize_friends=0x7f0c0052;
        public static int umeng_socialize_img_des=0x7f0c0053;
        public static int umeng_socialize_laiwang_default_content=0x7f0c0054;
        public static int umeng_socialize_login=0x7f0c0055;
        public static int umeng_socialize_login_qq=0x7f0c0056;
        public static int umeng_socialize_mail=0x7f0c0057;
        public static int umeng_socialize_male=0x7f0c0058;
        public static int umeng_socialize_msg_hor=0x7f0c0059;
        public static int umeng_socialize_msg_min=0x7f0c005a;
        public static int umeng_socialize_msg_sec=0x7f0c005b;
        public static int umeng_socialize_near_At=0x7f0c005c;
        public static int umeng_socialize_network_break_alert=0x7f0c005d;
        public static int umeng_socialize_send=0x7f0c005e;
        public static int umeng_socialize_send_btn_str=0x7f0c005f;
        public static int umeng_socialize_share=0x7f0c0060;
        public static int umeng_socialize_share_content=0x7f0c0061;
        public static int umeng_socialize_sharetodouban=0x7f0c0062;
        public static int umeng_socialize_sharetolinkin=0x7f0c0063;
        public static int umeng_socialize_sharetorenren=0x7f0c0064;
        public static int umeng_socialize_sharetosina=0x7f0c0065;
        public static int umeng_socialize_sharetotencent=0x7f0c0066;
        public static int umeng_socialize_sharetotwitter=0x7f0c0067;
        public static int umeng_socialize_sina=0x7f0c0068;
        public static int umeng_socialize_sms=0x7f0c0069;
        public static int umeng_socialize_text_add_custom_platform=0x7f0c006a;
        public static int umeng_socialize_text_alipay_key=0x7f0c006b;
        public static int umeng_socialize_text_authorize=0x7f0c006c;
        public static int umeng_socialize_text_choose_account=0x7f0c006d;
        public static int umeng_socialize_text_comment_hint=0x7f0c006e;
        public static int umeng_socialize_text_dingding_key=0x7f0c006f;
        public static int umeng_socialize_text_douban_key=0x7f0c0070;
        public static int umeng_socialize_text_dropbox_key=0x7f0c0071;
        public static int umeng_socialize_text_evernote_key=0x7f0c0072;
        public static int umeng_socialize_text_facebook_key=0x7f0c0073;
        public static int umeng_socialize_text_facebookmessager_key=0x7f0c0074;
        public static int umeng_socialize_text_flickr_key=0x7f0c0075;
        public static int umeng_socialize_text_foursquare_key=0x7f0c0076;
        public static int umeng_socialize_text_friend_list=0x7f0c0077;
        public static int umeng_socialize_text_googleplus_key=0x7f0c0078;
        public static int umeng_socialize_text_instagram_key=0x7f0c0079;
        public static int umeng_socialize_text_kakao_key=0x7f0c007a;
        public static int umeng_socialize_text_laiwang_dynamic_key=0x7f0c007b;
        public static int umeng_socialize_text_laiwang_key=0x7f0c007c;
        public static int umeng_socialize_text_laiwangdynamic_key=0x7f0c007d;
        public static int umeng_socialize_text_line_key=0x7f0c007e;
        public static int umeng_socialize_text_linkedin_key=0x7f0c007f;
        public static int umeng_socialize_text_loading_message=0x7f0c0080;
        public static int umeng_socialize_text_login_fail=0x7f0c0081;
        public static int umeng_socialize_text_more_key=0x7f0c0082;
        public static int umeng_socialize_text_pinterest_key=0x7f0c0083;
        public static int umeng_socialize_text_pocket_key=0x7f0c0084;
        public static int umeng_socialize_text_qq_key=0x7f0c0085;
        public static int umeng_socialize_text_qq_zone_key=0x7f0c0086;
        public static int umeng_socialize_text_renren_key=0x7f0c0087;
        public static int umeng_socialize_text_sina_key=0x7f0c0088;
        public static int umeng_socialize_text_tencent_key=0x7f0c0089;
        public static int umeng_socialize_text_tencent_no_connection=0x7f0c008a;
        public static int umeng_socialize_text_tencent_no_install=0x7f0c008b;
        public static int umeng_socialize_text_tencent_oauth_login_fail=0x7f0c008c;
        public static int umeng_socialize_text_tencent_version_no_match=0x7f0c008d;
        public static int umeng_socialize_text_tumblr_key=0x7f0c008e;
        public static int umeng_socialize_text_twitter_key=0x7f0c008f;
        public static int umeng_socialize_text_ucenter=0x7f0c0090;
        public static int umeng_socialize_text_unauthorize=0x7f0c0091;
        public static int umeng_socialize_text_visitor=0x7f0c0092;
        public static int umeng_socialize_text_vkontakte_key=0x7f0c0093;
        public static int umeng_socialize_text_waitting=0x7f0c0094;
        public static int umeng_socialize_text_waitting_message=0x7f0c0095;
        public static int umeng_socialize_text_waitting_qq=0x7f0c0096;
        public static int umeng_socialize_text_waitting_qzone=0x7f0c0097;
        public static int umeng_socialize_text_waitting_redirect=0x7f0c0098;
        public static int umeng_socialize_text_waitting_share=0x7f0c0099;
        public static int umeng_socialize_text_waitting_weixin=0x7f0c009a;
        public static int umeng_socialize_text_waitting_weixin_circle=0x7f0c009b;
        public static int umeng_socialize_text_waitting_yixin=0x7f0c009c;
        public static int umeng_socialize_text_waitting_yixin_circle=0x7f0c009d;
        public static int umeng_socialize_text_weixin_circle_key=0x7f0c009e;
        public static int umeng_socialize_text_weixin_fav_key=0x7f0c009f;
        public static int umeng_socialize_text_weixin_key=0x7f0c00a0;
        public static int umeng_socialize_text_wenxin_fav=0x7f0c00a1;
        public static int umeng_socialize_text_whatsapp_key=0x7f0c00a2;
        public static int umeng_socialize_text_ydnote_key=0x7f0c00a3;
        public static int umeng_socialize_text_yixin_key=0x7f0c00a4;
        public static int umeng_socialize_text_yixincircle_key=0x7f0c00a5;
        public static int umeng_socialize_tip_blacklist=0x7f0c00a6;
        public static int umeng_socialize_tip_loginfailed=0x7f0c00a7;
        public static int umeng_socialize_ucenter_login_title_guide=0x7f0c00a8;
        public static int umeng_socialize_ucenter_login_title_platform=0x7f0c00a9;
        public static int umeng_update_content=0x7f0c00aa;
        public static int update_linkedin_app_cancel=0x7f0c00ab;
        public static int update_linkedin_app_download=0x7f0c00ac;
        public static int update_linkedin_app_message=0x7f0c00ad;
        public static int update_linkedin_app_title=0x7f0c00ae;
        public static int vk_enter_captcha_text=0x7f0c00af;
        public static int vk_name=0x7f0c00b0;
        public static int vk_new_message_text=0x7f0c00b1;
        public static int vk_new_post_settings=0x7f0c00b2;
        public static int vk_retry=0x7f0c00b3;
        public static int vk_send=0x7f0c00b4;
        public static int vk_share=0x7f0c00b5;
        public static int whatsapp_content=0x7f0c00b6;
        public static int whatsapp_no_client=0x7f0c00b7;
        public static int whatsapp_no_content=0x7f0c00b8;
        public static int whatsapp_showword=0x7f0c00b9;
        public static int ynote_content=0x7f0c00ba;
        public static int ynote_no_client=0x7f0c00bb;
        public static int ynote_no_content=0x7f0c00bc;
        public static int ynote_showword=0x7f0c00bd;
    }
    public static final class style {
        public static int ACPLDialog=0x7f070002;
        /**  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 int AppBaseTheme=0x7f070000;
        /**  All customizations that are NOT specific to a particular API-level can go here. 
         */
        public static int AppTheme=0x7f070003;
        public static int Dialog=0x7f070004;
        public static int Dialog_Fullscreen=0x7f070005;
        public static int MessengerButton=0x7f070006;
        public static int MessengerButton_Blue=0x7f070007;
        public static int MessengerButton_Blue_Large=0x7f070008;
        public static int MessengerButton_Blue_Small=0x7f070009;
        public static int MessengerButton_White=0x7f07000a;
        public static int MessengerButton_White_Large=0x7f07000b;
        public static int MessengerButton_White_Small=0x7f07000c;
        public static int MessengerButtonText=0x7f07000d;
        public static int MessengerButtonText_Blue=0x7f07000e;
        public static int MessengerButtonText_Blue_Large=0x7f07000f;
        public static int MessengerButtonText_Blue_Small=0x7f070010;
        public static int MessengerButtonText_White=0x7f070011;
        public static int MessengerButtonText_White_Large=0x7f070012;
        public static int MessengerButtonText_White_Small=0x7f070013;
        public static int Notitle_Fullscreen=0x7f070014;
        public static int SlidingDialogAnimation=0x7f070015;
        public static int SlidingDialogTheme=0x7f070001;
        public static int TextAppearance_LxyTabPageIndicator=0x7f070016;
        public static int TextAppearance_TabPageIndicator=0x7f070017;
        public static int TextBule1=0x7f070018;
        public static int TextBuleLarge=0x7f070019;
        public static int TextBuleNormal=0x7f07001a;
        public static int Theme_PageIndicatorDefaults=0x7f07001b;
        public static int Theme_Sliding_Dialog=0x7f07001c;
        public static int Theme_UMDefault=0x7f07001d;
        public static int Theme_UMDialog=0x7f07001e;
        public static int VK_Transparent=0x7f07001f;
        public static int VKAlertDialog=0x7f070020;
        public static int Widget=0x7f070021;
        public static int Widget_IconPageIndicator=0x7f070022;
        public static int Widget_LxyTabPageIndicator=0x7f070023;
        public static int Widget_TabPageIndicator=0x7f070024;
        public static int Widget_TabPageIndicator1=0x7f070025;
        public static int Widget_TabPageIndicator2=0x7f070026;
        public static int com_facebook_button=0x7f070027;
        public static int com_facebook_button_like=0x7f070028;
        public static int com_facebook_button_send=0x7f070029;
        public static int com_facebook_button_share=0x7f07002a;
        public static int com_facebook_loginview_default_style=0x7f07002b;
        public static int com_facebook_loginview_silver_style=0x7f07002c;
        public static int dialogstyle=0x7f07002d;
        public static int lan_DialogWindowAnim=0x7f07002e;
        public static int notitleDialog=0x7f07002f;
        public static int scrshot_dlg_style=0x7f070030;
        public static int snapshotDialogWindowAnim=0x7f070031;
        public static int tooltip_bubble_text=0x7f070032;
        public static int umeng_socialize_action_bar_item_im=0x7f070033;
        public static int umeng_socialize_action_bar_item_tv=0x7f070034;
        public static int umeng_socialize_action_bar_itemlayout=0x7f070035;
        public static int umeng_socialize_dialog_anim_fade=0x7f070036;
        public static int umeng_socialize_dialog_animations=0x7f070037;
        public static int umeng_socialize_divider=0x7f070038;
        public static int umeng_socialize_edit_padding=0x7f070039;
        public static int umeng_socialize_list_item=0x7f07003a;
        public static int umeng_socialize_popup_dialog=0x7f07003b;
        public static int umeng_socialize_popup_dialog_anim=0x7f07003c;
        public static int umeng_socialize_shareboard_animation=0x7f07003d;
    }
    public static final class xml {
        public static int filepaths=0x7f050000;
        public static int gdt_file_path=0x7f050001;
    }
    public static final class styleable {
        /** Attributes that can be used with a ActionBar.
           <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 #ActionBar_title com.weikou.myselfsuperad:title}</code></td><td></td></tr>
           </table>
           @see #ActionBar_title
         */
        public static final int[] ActionBar = {
            0x7f010005
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#title}
          attribute's value can be found in the {@link #ActionBar} 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.weikou.myselfsuperad:title
        */
        public static int ActionBar_title = 0;
        /** 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.weikou.myselfsuperad:maxHeight}</code></td><td></td></tr>
           </table>
           @see #AdaptiveListView_maxHeight
         */
        public static final int[] AdaptiveListView = {
            0x7f010006
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:maxHeight
        */
        public static 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.weikou.myselfsuperad:arcRadius}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_closeOnClick com.weikou.myselfsuperad:closeOnClick}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_duration com.weikou.myselfsuperad:duration}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_fromDegrees com.weikou.myselfsuperad:fromDegrees}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_mainImage com.weikou.myselfsuperad:mainImage}</code></td><td></td></tr>
           <tr><td><code>{@link #ArcMenu_toDegrees com.weikou.myselfsuperad: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 = {
            0x7f010007, 0x7f010008, 0x7f010009, 0x7f01000a,
            0x7f01000b, 0x7f01000c
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:arcRadius
        */
        public static int ArcMenu_arcRadius = 2;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:closeOnClick
        */
        public static int ArcMenu_closeOnClick = 4;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:duration
        */
        public static int ArcMenu_duration = 3;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:fromDegrees
        */
        public static int ArcMenu_fromDegrees = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:mainImage
        */
        public static int ArcMenu_mainImage = 5;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:toDegrees
        */
        public static 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.weikou.myselfsuperad:centered}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_fillColor com.weikou.myselfsuperad:fillColor}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_pageColor com.weikou.myselfsuperad:pageColor}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_radius com.weikou.myselfsuperad:radius}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_snap com.weikou.myselfsuperad:snap}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_strokeColor com.weikou.myselfsuperad:strokeColor}</code></td><td></td></tr>
           <tr><td><code>{@link #CirclePageIndicator_strokeWidth com.weikou.myselfsuperad: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,
            0x7f01000d, 0x7f01000e, 0x7f01000f, 0x7f010010,
            0x7f010011
        };
        /**
          <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 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 int CirclePageIndicator_android_orientation = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:centered
        */
        public static int CirclePageIndicator_centered = 2;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:fillColor
        */
        public static int CirclePageIndicator_fillColor = 4;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:pageColor
        */
        public static int CirclePageIndicator_pageColor = 5;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:radius
        */
        public static int CirclePageIndicator_radius = 6;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:snap
        */
        public static int CirclePageIndicator_snap = 7;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:strokeColor
        */
        public static int CirclePageIndicator_strokeColor = 8;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:strokeWidth
        */
        public static 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.weikou.myselfsuperad:dashGap}</code></td><td></td></tr>
           <tr><td><code>{@link #DashLine_dashOrientation com.weikou.myselfsuperad:dashOrientation}</code></td><td></td></tr>
           <tr><td><code>{@link #DashLine_dashWidth com.weikou.myselfsuperad:dashWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #DashLine_lineColor com.weikou.myselfsuperad:lineColor}</code></td><td></td></tr>
           </table>
           @see #DashLine_dashGap
           @see #DashLine_dashOrientation
           @see #DashLine_dashWidth
           @see #DashLine_lineColor
         */
        public static final int[] DashLine = {
            0x7f010012, 0x7f010013, 0x7f010014, 0x7f010015
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:dashGap
        */
        public static int DashLine_dashGap = 1;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:dashOrientation
        */
        public static int DashLine_dashOrientation = 3;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:dashWidth
        */
        public static int DashLine_dashWidth = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:lineColor
        */
        public static 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.weikou.myselfsuperad:emotionHeight}</code></td><td></td></tr>
           <tr><td><code>{@link #Emotion_emotionSize com.weikou.myselfsuperad:emotionSize}</code></td><td></td></tr>
           <tr><td><code>{@link #Emotion_emotionWidth com.weikou.myselfsuperad:emotionWidth}</code></td><td></td></tr>
           </table>
           @see #Emotion_emotionHeight
           @see #Emotion_emotionSize
           @see #Emotion_emotionWidth
         */
        public static final int[] Emotion = {
            0x7f010016, 0x7f010017, 0x7f010018
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:emotionHeight
        */
        public static int Emotion_emotionHeight = 1;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:emotionSize
        */
        public static int Emotion_emotionSize = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:emotionWidth
        */
        public static 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.weikou.myselfsuperad:centered}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_gapWidth com.weikou.myselfsuperad:gapWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_lineWidth com.weikou.myselfsuperad:lineWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_selectedColor com.weikou.myselfsuperad:selectedColor}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_strokeWidth com.weikou.myselfsuperad:strokeWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #LinePageIndicator_unselectedColor com.weikou.myselfsuperad: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, 0x7f010019, 0x7f01001a
        };
        /**
          <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 int LinePageIndicator_android_background = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:centered
        */
        public static int LinePageIndicator_centered = 1;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:gapWidth
        */
        public static int LinePageIndicator_gapWidth = 6;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:lineWidth
        */
        public static int LinePageIndicator_lineWidth = 5;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:selectedColor
        */
        public static int LinePageIndicator_selectedColor = 2;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:strokeWidth
        */
        public static int LinePageIndicator_strokeWidth = 3;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:unselectedColor
        */
        public static int LinePageIndicator_unselectedColor = 4;
        /** 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.weikou.myselfsuperad:ratio}</code></td><td></td></tr>
           </table>
           @see #RatioLayout_ratio
         */
        public static final int[] RatioLayout = {
            0x7f01001b
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:ratio
        */
        public static int RatioLayout_ratio = 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.weikou.myselfsuperad:shelfBackground}</code></td><td></td></tr>
           </table>
           @see #ShelvesView_shelfBackground
         */
        public static final int[] ShelvesView = {
            0x7f01001c
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:shelfBackground
        */
        public static 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.weikou.myselfsuperad: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.weikou.myselfsuperad.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.weikou.myselfsuperad:rightPadding
        */
        public static int SlidingMenu_rightPadding = 0;
        /** 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.weikou.myselfsuperad:clipPadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerColor com.weikou.myselfsuperad:footerColor}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerIndicatorHeight com.weikou.myselfsuperad:footerIndicatorHeight}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerIndicatorStyle com.weikou.myselfsuperad:footerIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerIndicatorUnderlinePadding com.weikou.myselfsuperad:footerIndicatorUnderlinePadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerLineHeight com.weikou.myselfsuperad:footerLineHeight}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_footerPadding com.weikou.myselfsuperad:footerPadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_linePosition com.weikou.myselfsuperad:linePosition}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_selectedBold com.weikou.myselfsuperad:selectedBold}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_selectedColor com.weikou.myselfsuperad:selectedColor}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_titlePadding com.weikou.myselfsuperad:titlePadding}</code></td><td></td></tr>
           <tr><td><code>{@link #TitlePageIndicator_topPadding com.weikou.myselfsuperad: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,
            0x7f01001d, 0x7f01001e, 0x7f01001f, 0x7f010020,
            0x7f010021, 0x7f010022, 0x7f010023, 0x7f010024,
            0x7f010025, 0x7f010026, 0x7f010027
        };
        /**
          <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 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 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 int TitlePageIndicator_android_textSize = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:clipPadding
        */
        public static int TitlePageIndicator_clipPadding = 4;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:footerColor
        */
        public static int TitlePageIndicator_footerColor = 5;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:footerIndicatorHeight
        */
        public static int TitlePageIndicator_footerIndicatorHeight = 8;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:footerIndicatorStyle
        */
        public static int TitlePageIndicator_footerIndicatorStyle = 7;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:footerIndicatorUnderlinePadding
        */
        public static int TitlePageIndicator_footerIndicatorUnderlinePadding = 9;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:footerLineHeight
        */
        public static int TitlePageIndicator_footerLineHeight = 6;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:footerPadding
        */
        public static int TitlePageIndicator_footerPadding = 10;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:linePosition
        */
        public static int TitlePageIndicator_linePosition = 11;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:selectedBold
        */
        public static int TitlePageIndicator_selectedBold = 12;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:selectedColor
        */
        public static int TitlePageIndicator_selectedColor = 3;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:titlePadding
        */
        public static int TitlePageIndicator_titlePadding = 13;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:topPadding
        */
        public static 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.weikou.myselfsuperad:fadeDelay}</code></td><td></td></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_fadeLength com.weikou.myselfsuperad:fadeLength}</code></td><td></td></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_fades com.weikou.myselfsuperad:fades}</code></td><td></td></tr>
           <tr><td><code>{@link #UnderlinePageIndicator_selectedColor com.weikou.myselfsuperad: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, 0x7f010028, 0x7f010029,
            0x7f01002a
        };
        /**
          <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 int UnderlinePageIndicator_android_background = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:fadeDelay
        */
        public static int UnderlinePageIndicator_fadeDelay = 3;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:fadeLength
        */
        public static int UnderlinePageIndicator_fadeLength = 4;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:fades
        */
        public static int UnderlinePageIndicator_fades = 2;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:selectedColor
        */
        public static 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_lxyTabPageIndicatorStyle com.weikou.myselfsuperad:lxyTabPageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiCirclePageIndicatorStyle com.weikou.myselfsuperad:vpiCirclePageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiIconPageIndicatorStyle com.weikou.myselfsuperad:vpiIconPageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiLinePageIndicatorStyle com.weikou.myselfsuperad:vpiLinePageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiTabPageIndicatorStyle com.weikou.myselfsuperad:vpiTabPageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiTabPageIndicatorStyle1 com.weikou.myselfsuperad:vpiTabPageIndicatorStyle1}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiTitlePageIndicatorStyle com.weikou.myselfsuperad:vpiTitlePageIndicatorStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ViewPagerIndicator_vpiUnderlinePageIndicatorStyle com.weikou.myselfsuperad:vpiUnderlinePageIndicatorStyle}</code></td><td></td></tr>
           </table>
           @see #ViewPagerIndicator_lxyTabPageIndicatorStyle
           @see #ViewPagerIndicator_vpiCirclePageIndicatorStyle
           @see #ViewPagerIndicator_vpiIconPageIndicatorStyle
           @see #ViewPagerIndicator_vpiLinePageIndicatorStyle
           @see #ViewPagerIndicator_vpiTabPageIndicatorStyle
           @see #ViewPagerIndicator_vpiTabPageIndicatorStyle1
           @see #ViewPagerIndicator_vpiTitlePageIndicatorStyle
           @see #ViewPagerIndicator_vpiUnderlinePageIndicatorStyle
         */
        public static final int[] ViewPagerIndicator = {
            0x7f01002b, 0x7f01002c, 0x7f01002d, 0x7f01002e,
            0x7f01002f, 0x7f010030, 0x7f010031, 0x7f010032
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#lxyTabPageIndicatorStyle}
          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.weikou.myselfsuperad:lxyTabPageIndicatorStyle
        */
        public static int ViewPagerIndicator_lxyTabPageIndicatorStyle = 6;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:vpiCirclePageIndicatorStyle
        */
        public static int ViewPagerIndicator_vpiCirclePageIndicatorStyle = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:vpiIconPageIndicatorStyle
        */
        public static int ViewPagerIndicator_vpiIconPageIndicatorStyle = 1;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:vpiLinePageIndicatorStyle
        */
        public static int ViewPagerIndicator_vpiLinePageIndicatorStyle = 2;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:vpiTabPageIndicatorStyle
        */
        public static int ViewPagerIndicator_vpiTabPageIndicatorStyle = 4;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#vpiTabPageIndicatorStyle1}
          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.weikou.myselfsuperad:vpiTabPageIndicatorStyle1
        */
        public static int ViewPagerIndicator_vpiTabPageIndicatorStyle1 = 5;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:vpiTitlePageIndicatorStyle
        */
        public static int ViewPagerIndicator_vpiTitlePageIndicatorStyle = 3;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.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.weikou.myselfsuperad:vpiUnderlinePageIndicatorStyle
        */
        public static int ViewPagerIndicator_vpiUnderlinePageIndicatorStyle = 7;
        /** Attributes that can be used with a board_column.
           <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 #board_column_column com.weikou.myselfsuperad:column}</code></td><td></td></tr>
           </table>
           @see #board_column_column
         */
        public static final int[] board_column = {
            0x7f010033
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#column}
          attribute's value can be found in the {@link #board_column} 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.weikou.myselfsuperad:column
        */
        public static int board_column_column = 0;
        /** Attributes that can be used with a com_facebook_like_view.
           <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 #com_facebook_like_view_com_facebook_auxiliary_view_position com.weikou.myselfsuperad:com_facebook_auxiliary_view_position}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_like_view_com_facebook_foreground_color com.weikou.myselfsuperad:com_facebook_foreground_color}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_like_view_com_facebook_horizontal_alignment com.weikou.myselfsuperad:com_facebook_horizontal_alignment}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_like_view_com_facebook_object_id com.weikou.myselfsuperad:com_facebook_object_id}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_like_view_com_facebook_object_type com.weikou.myselfsuperad:com_facebook_object_type}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_like_view_com_facebook_style com.weikou.myselfsuperad:com_facebook_style}</code></td><td></td></tr>
           </table>
           @see #com_facebook_like_view_com_facebook_auxiliary_view_position
           @see #com_facebook_like_view_com_facebook_foreground_color
           @see #com_facebook_like_view_com_facebook_horizontal_alignment
           @see #com_facebook_like_view_com_facebook_object_id
           @see #com_facebook_like_view_com_facebook_object_type
           @see #com_facebook_like_view_com_facebook_style
         */
        public static final int[] com_facebook_like_view = {
            0x7f010034, 0x7f010035, 0x7f010036, 0x7f010037,
            0x7f010038, 0x7f010039
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_auxiliary_view_position}
          attribute's value can be found in the {@link #com_facebook_like_view} 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>inline</code></td><td>1</td><td></td></tr>
<tr><td><code>top</code></td><td>2</td><td></td></tr>
</table>
          @attr name com.weikou.myselfsuperad:com_facebook_auxiliary_view_position
        */
        public static int com_facebook_like_view_com_facebook_auxiliary_view_position = 4;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_foreground_color}
          attribute's value can be found in the {@link #com_facebook_like_view} 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.weikou.myselfsuperad:com_facebook_foreground_color
        */
        public static int com_facebook_like_view_com_facebook_foreground_color = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_horizontal_alignment}
          attribute's value can be found in the {@link #com_facebook_like_view} 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>center</code></td><td>0</td><td></td></tr>
<tr><td><code>left</code></td><td>1</td><td></td></tr>
<tr><td><code>right</code></td><td>2</td><td></td></tr>
</table>
          @attr name com.weikou.myselfsuperad:com_facebook_horizontal_alignment
        */
        public static int com_facebook_like_view_com_facebook_horizontal_alignment = 5;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_object_id}
          attribute's value can be found in the {@link #com_facebook_like_view} 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.weikou.myselfsuperad:com_facebook_object_id
        */
        public static int com_facebook_like_view_com_facebook_object_id = 1;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_object_type}
          attribute's value can be found in the {@link #com_facebook_like_view} 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>unknown</code></td><td>0</td><td></td></tr>
<tr><td><code>open_graph</code></td><td>1</td><td></td></tr>
<tr><td><code>page</code></td><td>2</td><td></td></tr>
</table>
          @attr name com.weikou.myselfsuperad:com_facebook_object_type
        */
        public static int com_facebook_like_view_com_facebook_object_type = 2;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_style}
          attribute's value can be found in the {@link #com_facebook_like_view} 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>standard</code></td><td>0</td><td></td></tr>
<tr><td><code>button</code></td><td>1</td><td></td></tr>
<tr><td><code>box_count</code></td><td>2</td><td></td></tr>
</table>
          @attr name com.weikou.myselfsuperad:com_facebook_style
        */
        public static int com_facebook_like_view_com_facebook_style = 3;
        /** Attributes that can be used with a com_facebook_login_view.
           <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 #com_facebook_login_view_com_facebook_confirm_logout com.weikou.myselfsuperad:com_facebook_confirm_logout}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_login_view_com_facebook_login_text com.weikou.myselfsuperad:com_facebook_login_text}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_login_view_com_facebook_logout_text com.weikou.myselfsuperad:com_facebook_logout_text}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_login_view_com_facebook_tooltip_mode com.weikou.myselfsuperad:com_facebook_tooltip_mode}</code></td><td></td></tr>
           </table>
           @see #com_facebook_login_view_com_facebook_confirm_logout
           @see #com_facebook_login_view_com_facebook_login_text
           @see #com_facebook_login_view_com_facebook_logout_text
           @see #com_facebook_login_view_com_facebook_tooltip_mode
         */
        public static final int[] com_facebook_login_view = {
            0x7f01003a, 0x7f01003b, 0x7f01003c, 0x7f01003d
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_confirm_logout}
          attribute's value can be found in the {@link #com_facebook_login_view} 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.weikou.myselfsuperad:com_facebook_confirm_logout
        */
        public static int com_facebook_login_view_com_facebook_confirm_logout = 0;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_login_text}
          attribute's value can be found in the {@link #com_facebook_login_view} 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.weikou.myselfsuperad:com_facebook_login_text
        */
        public static int com_facebook_login_view_com_facebook_login_text = 1;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_logout_text}
          attribute's value can be found in the {@link #com_facebook_login_view} 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.weikou.myselfsuperad:com_facebook_logout_text
        */
        public static int com_facebook_login_view_com_facebook_logout_text = 2;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_tooltip_mode}
          attribute's value can be found in the {@link #com_facebook_login_view} 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>automatic</code></td><td>0</td><td></td></tr>
<tr><td><code>display_always</code></td><td>1</td><td></td></tr>
<tr><td><code>never_display</code></td><td>2</td><td></td></tr>
</table>
          @attr name com.weikou.myselfsuperad:com_facebook_tooltip_mode
        */
        public static int com_facebook_login_view_com_facebook_tooltip_mode = 3;
        /** Attributes that can be used with a com_facebook_profile_picture_view.
           <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 #com_facebook_profile_picture_view_com_facebook_is_cropped com.weikou.myselfsuperad:com_facebook_is_cropped}</code></td><td></td></tr>
           <tr><td><code>{@link #com_facebook_profile_picture_view_com_facebook_preset_size com.weikou.myselfsuperad:com_facebook_preset_size}</code></td><td></td></tr>
           </table>
           @see #com_facebook_profile_picture_view_com_facebook_is_cropped
           @see #com_facebook_profile_picture_view_com_facebook_preset_size
         */
        public static final int[] com_facebook_profile_picture_view = {
            0x7f01003e, 0x7f01003f
        };
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_is_cropped}
          attribute's value can be found in the {@link #com_facebook_profile_picture_view} 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.weikou.myselfsuperad:com_facebook_is_cropped
        */
        public static int com_facebook_profile_picture_view_com_facebook_is_cropped = 1;
        /**
          <p>This symbol is the offset where the {@link com.weikou.myselfsuperad.R.attr#com_facebook_preset_size}
          attribute's value can be found in the {@link #com_facebook_profile_picture_view} 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>small</code></td><td>-2</td><td></td></tr>
<tr><td><code>normal</code></td><td>-3</td><td></td></tr>
<tr><td><code>large</code></td><td>-4</td><td></td></tr>
</table>
          @attr name com.weikou.myselfsuperad:com_facebook_preset_size
        */
        public static int com_facebook_profile_picture_view_com_facebook_preset_size = 0;
    };
}