R.txt
154 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
int anim abc_fade_in 0x7f010000
int anim abc_fade_out 0x7f010001
int anim abc_grow_fade_in_from_bottom 0x7f010002
int anim abc_popup_enter 0x7f010003
int anim abc_popup_exit 0x7f010004
int anim abc_shrink_fade_out_from_bottom 0x7f010005
int anim abc_slide_in_bottom 0x7f010006
int anim abc_slide_in_top 0x7f010007
int anim abc_slide_out_bottom 0x7f010008
int anim abc_slide_out_top 0x7f010009
int anim abc_tooltip_enter 0x7f01000a
int anim abc_tooltip_exit 0x7f01000b
int anim commons_fade_in 0x7f01000c
int anim commons_fade_out 0x7f01000d
int anim commons_hold 0x7f01000e
int anim commons_slide_bottom_to_up 0x7f01000f
int anim commons_slide_from_left 0x7f010010
int anim commons_slide_from_right 0x7f010011
int anim commons_slide_to_left 0x7f010012
int anim commons_slide_to_right 0x7f010013
int anim commons_slide_up_to_bottom 0x7f010014
int anim commons_zoom_enter 0x7f010015
int anim commons_zoom_exit 0x7f010016
int anim dcloud_page_close_enter 0x7f010017
int anim dcloud_page_close_exit 0x7f010018
int anim dcloud_page_open_enter 0x7f010019
int anim dcloud_page_open_exit 0x7f01001a
int anim dcloud_slide_in_from_right 0x7f01001b
int anim dcloud_slide_in_from_top 0x7f01001c
int anim dcloud_slide_out_to_right 0x7f01001d
int anim dcloud_slide_out_to_top 0x7f01001e
int anim dcloud_slide_right_in 0x7f01001f
int anim dcloud_slide_right_out 0x7f010020
int anim dcloud_slide_static 0x7f010021
int anim hh_comment_question_left 0x7f010022
int anim hh_comment_question_left_no_alpha 0x7f010023
int anim hh_comment_question_right 0x7f010024
int anim hh_comment_question_right_no_alpha 0x7f010025
int anim hh_pop_enter 0x7f010026
int anim hh_pop_exit 0x7f010027
int anim hh_rotation 0x7f010028
int anim hh_scale_down 0x7f010029
int anim hh_scale_up 0x7f01002a
int anim pickerview_dialog_scale_in 0x7f01002b
int anim pickerview_dialog_scale_out 0x7f01002c
int anim pickerview_slide_in_bottom 0x7f01002d
int anim pickerview_slide_out_bottom 0x7f01002e
int array hp_sdk_select_photo 0x7f020000
int array rating_tip_array 0x7f020001
int attr HHUILoadingStyle 0x7f030000
int attr actionBarDivider 0x7f030001
int attr actionBarItemBackground 0x7f030002
int attr actionBarPopupTheme 0x7f030003
int attr actionBarSize 0x7f030004
int attr actionBarSplitStyle 0x7f030005
int attr actionBarStyle 0x7f030006
int attr actionBarTabBarStyle 0x7f030007
int attr actionBarTabStyle 0x7f030008
int attr actionBarTabTextStyle 0x7f030009
int attr actionBarTheme 0x7f03000a
int attr actionBarWidgetTheme 0x7f03000b
int attr actionButtonStyle 0x7f03000c
int attr actionDropDownStyle 0x7f03000d
int attr actionLayout 0x7f03000e
int attr actionMenuTextAppearance 0x7f03000f
int attr actionMenuTextColor 0x7f030010
int attr actionModeBackground 0x7f030011
int attr actionModeCloseButtonStyle 0x7f030012
int attr actionModeCloseDrawable 0x7f030013
int attr actionModeCopyDrawable 0x7f030014
int attr actionModeCutDrawable 0x7f030015
int attr actionModeFindDrawable 0x7f030016
int attr actionModePasteDrawable 0x7f030017
int attr actionModePopupWindowStyle 0x7f030018
int attr actionModeSelectAllDrawable 0x7f030019
int attr actionModeShareDrawable 0x7f03001a
int attr actionModeSplitBackground 0x7f03001b
int attr actionModeStyle 0x7f03001c
int attr actionModeWebSearchDrawable 0x7f03001d
int attr actionOverflowButtonStyle 0x7f03001e
int attr actionOverflowMenuStyle 0x7f03001f
int attr actionProviderClass 0x7f030020
int attr actionSheetBackground 0x7f030021
int attr actionSheetPadding 0x7f030022
int attr actionSheetStyle 0x7f030023
int attr actionSheetTextSize 0x7f030024
int attr actionViewClass 0x7f030025
int attr activityChooserViewStyle 0x7f030026
int attr actualImageResource 0x7f030027
int attr actualImageScaleType 0x7f030028
int attr actualImageUri 0x7f030029
int attr album_dropdown_count_color 0x7f03002a
int attr album_dropdown_title_color 0x7f03002b
int attr album_element_color 0x7f03002c
int attr album_emptyView 0x7f03002d
int attr album_emptyView_textColor 0x7f03002e
int attr album_thumbnail_placeholder 0x7f03002f
int attr alertDialogButtonGroupStyle 0x7f030030
int attr alertDialogCenterButtons 0x7f030031
int attr alertDialogStyle 0x7f030032
int attr alertDialogTheme 0x7f030033
int attr allowStacking 0x7f030034
int attr alpha 0x7f030035
int attr alphabeticModifiers 0x7f030036
int attr arrowHeadLength 0x7f030037
int attr arrowShaftLength 0x7f030038
int attr authPlay 0x7f030039
int attr autoCompleteTextViewStyle 0x7f03003a
int attr autoSizeMaxTextSize 0x7f03003b
int attr autoSizeMinTextSize 0x7f03003c
int attr autoSizePresetSizes 0x7f03003d
int attr autoSizeStepGranularity 0x7f03003e
int attr autoSizeTextType 0x7f03003f
int attr background 0x7f030040
int attr backgroundImage 0x7f030041
int attr backgroundSplit 0x7f030042
int attr backgroundStacked 0x7f030043
int attr backgroundTint 0x7f030044
int attr backgroundTintMode 0x7f030045
int attr banner_default_image 0x7f030046
int attr banner_layout 0x7f030047
int attr barLength 0x7f030048
int attr borderlessButtonStyle 0x7f030049
int attr bottomToolbar_apply_textColor 0x7f03004a
int attr bottomToolbar_bg 0x7f03004b
int attr bottomToolbar_preview_textColor 0x7f03004c
int attr buttonBarButtonStyle 0x7f03004d
int attr buttonBarNegativeButtonStyle 0x7f03004e
int attr buttonBarNeutralButtonStyle 0x7f03004f
int attr buttonBarPositiveButtonStyle 0x7f030050
int attr buttonBarStyle 0x7f030051
int attr buttonGravity 0x7f030052
int attr buttonIconDimen 0x7f030053
int attr buttonPanelSideLayout 0x7f030054
int attr buttonStyle 0x7f030055
int attr buttonStyleSmall 0x7f030056
int attr buttonTint 0x7f030057
int attr buttonTintMode 0x7f030058
int attr cancelButtonBackground 0x7f030059
int attr cancelButtonMarginTop 0x7f03005a
int attr cancelButtonTextColor 0x7f03005b
int attr capture_textColor 0x7f03005c
int attr checkboxStyle 0x7f03005d
int attr checkedTextViewStyle 0x7f03005e
int attr closeIcon 0x7f03005f
int attr closeItemLayout 0x7f030060
int attr collapseContentDescription 0x7f030061
int attr collapseIcon 0x7f030062
int attr color 0x7f030063
int attr colorAccent 0x7f030064
int attr colorBackgroundFloating 0x7f030065
int attr colorButtonNormal 0x7f030066
int attr colorControlActivated 0x7f030067
int attr colorControlHighlight 0x7f030068
int attr colorControlNormal 0x7f030069
int attr colorError 0x7f03006a
int attr colorPrimary 0x7f03006b
int attr colorPrimaryDark 0x7f03006c
int attr colorSwitchThumbNormal 0x7f03006d
int attr commitIcon 0x7f03006e
int attr contentDescription 0x7f03006f
int attr contentInsetEnd 0x7f030070
int attr contentInsetEndWithActions 0x7f030071
int attr contentInsetLeft 0x7f030072
int attr contentInsetRight 0x7f030073
int attr contentInsetStart 0x7f030074
int attr contentInsetStartWithNavigation 0x7f030075
int attr controlBackground 0x7f030076
int attr coordinatorLayoutStyle 0x7f030077
int attr customNavigationLayout 0x7f030078
int attr defaultQueryHint 0x7f030079
int attr delay_time 0x7f03007a
int attr destructiveButtonTextColor 0x7f03007b
int attr dialogCornerRadius 0x7f03007c
int attr dialogPreferredPadding 0x7f03007d
int attr dialogTheme 0x7f03007e
int attr displayOptions 0x7f03007f
int attr divider 0x7f030080
int attr dividerHorizontal 0x7f030081
int attr dividerPadding 0x7f030082
int attr dividerVertical 0x7f030083
int attr drawableSize 0x7f030084
int attr drawerArrowStyle 0x7f030085
int attr dropDownListViewStyle 0x7f030086
int attr dropdownListPreferredItemHeight 0x7f030087
int attr editTextBackground 0x7f030088
int attr editTextColor 0x7f030089
int attr editTextStyle 0x7f03008a
int attr elevation 0x7f03008b
int attr expandActivityOverflowButtonDrawable 0x7f03008c
int attr fadeDuration 0x7f03008d
int attr failureImage 0x7f03008e
int attr failureImageScaleType 0x7f03008f
int attr fastScrollEnabled 0x7f030090
int attr fastScrollHorizontalThumbDrawable 0x7f030091
int attr fastScrollHorizontalTrackDrawable 0x7f030092
int attr fastScrollVerticalThumbDrawable 0x7f030093
int attr fastScrollVerticalTrackDrawable 0x7f030094
int attr firstBaselineToTopHeight 0x7f030095
int attr font 0x7f030096
int attr fontFamily 0x7f030097
int attr fontProviderAuthority 0x7f030098
int attr fontProviderCerts 0x7f030099
int attr fontProviderFetchStrategy 0x7f03009a
int attr fontProviderFetchTimeout 0x7f03009b
int attr fontProviderPackage 0x7f03009c
int attr fontProviderQuery 0x7f03009d
int attr fontStyle 0x7f03009e
int attr fontVariationSettings 0x7f03009f
int attr fontWeight 0x7f0300a0
int attr freezesAnimation 0x7f0300a1
int attr gapBetweenBars 0x7f0300a2
int attr gifSource 0x7f0300a3
int attr gifSrc 0x7f0300a4
int attr goIcon 0x7f0300a5
int attr height 0x7f0300a6
int attr hh_clearRatingEnabled 0x7f0300a7
int attr hh_clickable 0x7f0300a8
int attr hh_drawableEmpty 0x7f0300a9
int attr hh_drawableFilled 0x7f0300aa
int attr hh_gest_animationDuration 0x7f0300ab
int attr hh_gest_aspect 0x7f0300ac
int attr hh_gest_backgroundColor 0x7f0300ad
int attr hh_gest_borderColor 0x7f0300ae
int attr hh_gest_borderWidth 0x7f0300af
int attr hh_gest_boundsType 0x7f0300b0
int attr hh_gest_disableBounds 0x7f0300b1
int attr hh_gest_disableGestures 0x7f0300b2
int attr hh_gest_doubleTapEnabled 0x7f0300b3
int attr hh_gest_doubleTapZoom 0x7f0300b4
int attr hh_gest_exitEnabled 0x7f0300b5
int attr hh_gest_fillViewport 0x7f0300b6
int attr hh_gest_fitMethod 0x7f0300b7
int attr hh_gest_flingEnabled 0x7f0300b8
int attr hh_gest_gravity 0x7f0300b9
int attr hh_gest_maxZoom 0x7f0300ba
int attr hh_gest_minZoom 0x7f0300bb
int attr hh_gest_movementAreaHeight 0x7f0300bc
int attr hh_gest_movementAreaWidth 0x7f0300bd
int attr hh_gest_overscrollX 0x7f0300be
int attr hh_gest_overscrollY 0x7f0300bf
int attr hh_gest_overzoomFactor 0x7f0300c0
int attr hh_gest_panEnabled 0x7f0300c1
int attr hh_gest_restrictRotation 0x7f0300c2
int attr hh_gest_rotationEnabled 0x7f0300c3
int attr hh_gest_rounded 0x7f0300c4
int attr hh_gest_rulesHorizontal 0x7f0300c5
int attr hh_gest_rulesVertical 0x7f0300c6
int attr hh_gest_rulesWidth 0x7f0300c7
int attr hh_gest_zoomEnabled 0x7f0300c8
int attr hh_isIndicator 0x7f0300c9
int attr hh_minimumStars 0x7f0300ca
int attr hh_numStars 0x7f0300cb
int attr hh_rating 0x7f0300cc
int attr hh_scrollable 0x7f0300cd
int attr hh_starHeight 0x7f0300ce
int attr hh_starPadding 0x7f0300cf
int attr hh_starWidth 0x7f0300d0
int attr hh_stepSize 0x7f0300d1
int attr hhui_content_padding_horizontal 0x7f0300d2
int attr hhui_content_spacing_horizontal 0x7f0300d3
int attr hhui_dialog_action_container_style 0x7f0300d4
int attr hhui_dialog_action_style 0x7f0300d5
int attr hhui_dialog_background_dim_amount 0x7f0300d6
int attr hhui_dialog_bg 0x7f0300d7
int attr hhui_dialog_edit_content_style 0x7f0300d8
int attr hhui_dialog_margin_vertical 0x7f0300d9
int attr hhui_dialog_max_width 0x7f0300da
int attr hhui_dialog_menu_container_style 0x7f0300db
int attr hhui_dialog_menu_item_style 0x7f0300dc
int attr hhui_dialog_message_content_style 0x7f0300dd
int attr hhui_dialog_min_width 0x7f0300de
int attr hhui_dialog_padding_horizontal 0x7f0300df
int attr hhui_dialog_title_style 0x7f0300e0
int attr hhui_dialog_wrapper_style 0x7f0300e1
int attr hhui_loading_view_size 0x7f0300e2
int attr hhui_tip_dialog_bg 0x7f0300e3
int attr hhui_tip_dialog_margin_horizontal 0x7f0300e4
int attr hhui_tip_dialog_min_height 0x7f0300e5
int attr hhui_tip_dialog_min_width 0x7f0300e6
int attr hhui_tip_dialog_padding_horizontal 0x7f0300e7
int attr hhui_tip_dialog_padding_vertical 0x7f0300e8
int attr hideOnContentScroll 0x7f0300e9
int attr homeAsUpIndicator 0x7f0300ea
int attr homeLayout 0x7f0300eb
int attr icon 0x7f0300ec
int attr iconTint 0x7f0300ed
int attr iconTintMode 0x7f0300ee
int attr iconifiedByDefault 0x7f0300ef
int attr imageButtonStyle 0x7f0300f0
int attr image_scale_type 0x7f0300f1
int attr indeterminateProgressStyle 0x7f0300f2
int attr indicator_drawable_selected 0x7f0300f3
int attr indicator_drawable_unselected 0x7f0300f4
int attr indicator_height 0x7f0300f5
int attr indicator_margin 0x7f0300f6
int attr indicator_selected_height 0x7f0300f7
int attr indicator_selected_width 0x7f0300f8
int attr indicator_width 0x7f0300f9
int attr initialActivityCount 0x7f0300fa
int attr input_color 0x7f0300fb
int attr isLightTheme 0x7f0300fc
int attr isOpaque 0x7f0300fd
int attr is_auto_play 0x7f0300fe
int attr item_checkCircle_backgroundColor 0x7f0300ff
int attr item_checkCircle_borderColor 0x7f030100
int attr item_placeholder 0x7f030101
int attr itemPadding 0x7f030102
int attr keylines 0x7f030103
int attr lastBaselineToBottomHeight 0x7f030104
int attr layout 0x7f030105
int attr layoutManager 0x7f030106
int attr layout_anchor 0x7f030107
int attr layout_anchorGravity 0x7f030108
int attr layout_behavior 0x7f030109
int attr layout_dodgeInsetEdges 0x7f03010a
int attr layout_insetEdge 0x7f03010b
int attr layout_keyline 0x7f03010c
int attr lineHeight 0x7f03010d
int attr listChoiceBackgroundIndicator 0x7f03010e
int attr listDividerAlertDialog 0x7f03010f
int attr listItemLayout 0x7f030110
int attr listLayout 0x7f030111
int attr listMenuViewStyle 0x7f030112
int attr listPopupWindowStyle 0x7f030113
int attr listPreferredItemHeight 0x7f030114
int attr listPreferredItemHeightLarge 0x7f030115
int attr listPreferredItemHeightSmall 0x7f030116
int attr listPreferredItemPaddingLeft 0x7f030117
int attr listPreferredItemPaddingRight 0x7f030118
int attr logo 0x7f030119
int attr logoDescription 0x7f03011a
int attr loopCount 0x7f03011b
int attr maxButtonHeight 0x7f03011c
int attr measureWithLargestChild 0x7f03011d
int attr multiChoiceItemLayout 0x7f03011e
int attr navigationContentDescription 0x7f03011f
int attr navigationIcon 0x7f030120
int attr navigationMode 0x7f030121
int attr numberLength 0x7f030122
int attr numericModifiers 0x7f030123
int attr otherButtonBottomBackground 0x7f030124
int attr otherButtonMiddleBackground 0x7f030125
int attr otherButtonSingleBackground 0x7f030126
int attr otherButtonSpacing 0x7f030127
int attr otherButtonTextColor 0x7f030128
int attr otherButtonTitleBackground 0x7f030129
int attr otherButtonTopBackground 0x7f03012a
int attr overlapAnchor 0x7f03012b
int attr overlayImage 0x7f03012c
int attr paddingBottomNoButtons 0x7f03012d
int attr paddingEnd 0x7f03012e
int attr paddingStart 0x7f03012f
int attr paddingTopNoTitle 0x7f030130
int attr page_bg 0x7f030131
int attr panelBackground 0x7f030132
int attr panelMenuListTheme 0x7f030133
int attr panelMenuListWidth 0x7f030134
int attr placeholderImage 0x7f030135
int attr placeholderImageScaleType 0x7f030136
int attr playCount 0x7f030137
int attr popupMenuStyle 0x7f030138
int attr popupTheme 0x7f030139
int attr popupWindowStyle 0x7f03013a
int attr preserveIconSpacing 0x7f03013b
int attr pressedStateOverlayImage 0x7f03013c
int attr preview_bottomToolbar_apply_textColor 0x7f03013d
int attr preview_bottomToolbar_back_textColor 0x7f03013e
int attr progressBarAutoRotateInterval 0x7f03013f
int attr progressBarImage 0x7f030140
int attr progressBarImageScaleType 0x7f030141
int attr progressBarPadding 0x7f030142
int attr progressBarStyle 0x7f030143
int attr queryBackground 0x7f030144
int attr queryHint 0x7f030145
int attr radioButtonStyle 0x7f030146
int attr ratingBarStyle 0x7f030147
int attr ratingBarStyleIndicator 0x7f030148
int attr ratingBarStyleSmall 0x7f030149
int attr recyclerViewStyle 0x7f03014a
int attr retryImage 0x7f03014b
int attr retryImageScaleType 0x7f03014c
int attr reverseLayout 0x7f03014d
int attr roundAsCircle 0x7f03014e
int attr roundBottomEnd 0x7f03014f
int attr roundBottomLeft 0x7f030150
int attr roundBottomRight 0x7f030151
int attr roundBottomStart 0x7f030152
int attr roundTopEnd 0x7f030153
int attr roundTopLeft 0x7f030154
int attr roundTopRight 0x7f030155
int attr roundTopStart 0x7f030156
int attr roundWithOverlayColor 0x7f030157
int attr roundedCornerRadius 0x7f030158
int attr roundingBorderColor 0x7f030159
int attr roundingBorderPadding 0x7f03015a
int attr roundingBorderWidth 0x7f03015b
int attr sb_background 0x7f03015c
int attr sb_border_width 0x7f03015d
int attr sb_button_color 0x7f03015e
int attr sb_checked 0x7f03015f
int attr sb_checked_color 0x7f030160
int attr sb_checkline_color 0x7f030161
int attr sb_checkline_width 0x7f030162
int attr sb_effect_duration 0x7f030163
int attr sb_enable_effect 0x7f030164
int attr sb_shadow_color 0x7f030165
int attr sb_shadow_effect 0x7f030166
int attr sb_shadow_offset 0x7f030167
int attr sb_shadow_radius 0x7f030168
int attr sb_show_indicator 0x7f030169
int attr sb_uncheck_color 0x7f03016a
int attr sb_uncheckcircle_color 0x7f03016b
int attr sb_uncheckcircle_radius 0x7f03016c
int attr sb_uncheckcircle_width 0x7f03016d
int attr scroll_time 0x7f03016e
int attr searchHintIcon 0x7f03016f
int attr searchIcon 0x7f030170
int attr searchViewStyle 0x7f030171
int attr seekBarStyle 0x7f030172
int attr selectableItemBackground 0x7f030173
int attr selectableItemBackgroundBorderless 0x7f030174
int attr showAsAction 0x7f030175
int attr showDividers 0x7f030176
int attr showText 0x7f030177
int attr showTitle 0x7f030178
int attr singleChoiceItemLayout 0x7f030179
int attr spanCount 0x7f03017a
int attr spinBars 0x7f03017b
int attr spinnerDropDownItemStyle 0x7f03017c
int attr spinnerStyle 0x7f03017d
int attr splitTrack 0x7f03017e
int attr srcCompat 0x7f03017f
int attr stackFromEnd 0x7f030180
int attr state_above_anchor 0x7f030181
int attr statusBarBackground 0x7f030182
int attr subMenuArrow 0x7f030183
int attr submitBackground 0x7f030184
int attr subtitle 0x7f030185
int attr subtitleTextAppearance 0x7f030186
int attr subtitleTextColor 0x7f030187
int attr subtitleTextStyle 0x7f030188
int attr suggestionRowLayout 0x7f030189
int attr switchMinWidth 0x7f03018a
int attr switchPadding 0x7f03018b
int attr switchStyle 0x7f03018c
int attr switchTextAppearance 0x7f03018d
int attr textAllCaps 0x7f03018e
int attr textAppearanceLargePopupMenu 0x7f03018f
int attr textAppearanceListItem 0x7f030190
int attr textAppearanceListItemSecondary 0x7f030191
int attr textAppearanceListItemSmall 0x7f030192
int attr textAppearancePopupMenuHeader 0x7f030193
int attr textAppearanceSearchResultSubtitle 0x7f030194
int attr textAppearanceSearchResultTitle 0x7f030195
int attr textAppearanceSmallPopupMenu 0x7f030196
int attr textColorAlertDialogListItem 0x7f030197
int attr textColorSearchUrl 0x7f030198
int attr theme 0x7f030199
int attr thickness 0x7f03019a
int attr thumbTextPadding 0x7f03019b
int attr thumbTint 0x7f03019c
int attr thumbTintMode 0x7f03019d
int attr tickMark 0x7f03019e
int attr tickMarkTint 0x7f03019f
int attr tickMarkTintMode 0x7f0301a0
int attr tint 0x7f0301a1
int attr tintMode 0x7f0301a2
int attr title 0x7f0301a3
int attr titleButtonTextColor 0x7f0301a4
int attr titleMargin 0x7f0301a5
int attr titleMarginBottom 0x7f0301a6
int attr titleMarginEnd 0x7f0301a7
int attr titleMarginStart 0x7f0301a8
int attr titleMarginTop 0x7f0301a9
int attr titleMargins 0x7f0301aa
int attr titleTextAppearance 0x7f0301ab
int attr titleTextColor 0x7f0301ac
int attr titleTextStyle 0x7f0301ad
int attr title_background 0x7f0301ae
int attr title_height 0x7f0301af
int attr title_textcolor 0x7f0301b0
int attr title_textsize 0x7f0301b1
int attr toolbar 0x7f0301b2
int attr toolbarNavigationButtonStyle 0x7f0301b3
int attr toolbarStyle 0x7f0301b4
int attr tooltipForegroundColor 0x7f0301b5
int attr tooltipFrameBackground 0x7f0301b6
int attr tooltipText 0x7f0301b7
int attr track 0x7f0301b8
int attr trackTint 0x7f0301b9
int attr trackTintMode 0x7f0301ba
int attr ttcIndex 0x7f0301bb
int attr viewAspectRatio 0x7f0301bc
int attr viewInflaterClass 0x7f0301bd
int attr voiceIcon 0x7f0301be
int attr wheelview_dividerColor 0x7f0301bf
int attr wheelview_dividerWidth 0x7f0301c0
int attr wheelview_gravity 0x7f0301c1
int attr wheelview_lineSpacingMultiplier 0x7f0301c2
int attr wheelview_textColorCenter 0x7f0301c3
int attr wheelview_textColorOut 0x7f0301c4
int attr wheelview_textSize 0x7f0301c5
int attr windowActionBar 0x7f0301c6
int attr windowActionBarOverlay 0x7f0301c7
int attr windowActionModeOverlay 0x7f0301c8
int attr windowFixedHeightMajor 0x7f0301c9
int attr windowFixedHeightMinor 0x7f0301ca
int attr windowFixedWidthMajor 0x7f0301cb
int attr windowFixedWidthMinor 0x7f0301cc
int attr windowMinWidthMajor 0x7f0301cd
int attr windowMinWidthMinor 0x7f0301ce
int attr windowNoTitle 0x7f0301cf
int bool abc_action_bar_embed_tabs 0x7f040000
int bool abc_allow_stacked_button_bar 0x7f040001
int bool abc_config_actionMenuItemAllCaps 0x7f040002
int bool weex_is_right_to_left 0x7f040003
int color abc_background_cache_hint_selector_material_dark 0x7f050000
int color abc_background_cache_hint_selector_material_light 0x7f050001
int color abc_btn_colored_borderless_text_material 0x7f050002
int color abc_btn_colored_text_material 0x7f050003
int color abc_color_highlight_material 0x7f050004
int color abc_hint_foreground_material_dark 0x7f050005
int color abc_hint_foreground_material_light 0x7f050006
int color abc_input_method_navigation_guard 0x7f050007
int color abc_primary_text_disable_only_material_dark 0x7f050008
int color abc_primary_text_disable_only_material_light 0x7f050009
int color abc_primary_text_material_dark 0x7f05000a
int color abc_primary_text_material_light 0x7f05000b
int color abc_search_url_text 0x7f05000c
int color abc_search_url_text_normal 0x7f05000d
int color abc_search_url_text_pressed 0x7f05000e
int color abc_search_url_text_selected 0x7f05000f
int color abc_secondary_text_material_dark 0x7f050010
int color abc_secondary_text_material_light 0x7f050011
int color abc_tint_btn_checkable 0x7f050012
int color abc_tint_default 0x7f050013
int color abc_tint_edittext 0x7f050014
int color abc_tint_seek_thumb 0x7f050015
int color abc_tint_spinner 0x7f050016
int color abc_tint_switch_track 0x7f050017
int color accent_material_dark 0x7f050018
int color accent_material_light 0x7f050019
int color background_floating_material_dark 0x7f05001a
int color background_floating_material_light 0x7f05001b
int color background_material_dark 0x7f05001c
int color background_material_light 0x7f05001d
int color bright_foreground_disabled_material_dark 0x7f05001e
int color bright_foreground_disabled_material_light 0x7f05001f
int color bright_foreground_inverse_material_dark 0x7f050020
int color bright_foreground_inverse_material_light 0x7f050021
int color bright_foreground_material_dark 0x7f050022
int color bright_foreground_material_light 0x7f050023
int color button_material_dark 0x7f050024
int color button_material_light 0x7f050025
int color colorAccent 0x7f050026
int color colorPrimary 0x7f050027
int color colorPrimaryDark 0x7f050028
int color dadada 0x7f050029
int color dcloud_slt_about_text_color 0x7f05002a
int color dim_foreground_disabled_material_dark 0x7f05002b
int color dim_foreground_disabled_material_light 0x7f05002c
int color dim_foreground_material_dark 0x7f05002d
int color dim_foreground_material_light 0x7f05002e
int color dracula_album_dropdown_count_text 0x7f05002f
int color dracula_album_dropdown_thumbnail_placeholder 0x7f050030
int color dracula_album_dropdown_title_text 0x7f050031
int color dracula_album_empty_view 0x7f050032
int color dracula_album_popup_bg 0x7f050033
int color dracula_bottom_toolbar_apply 0x7f050034
int color dracula_bottom_toolbar_apply_text 0x7f050035
int color dracula_bottom_toolbar_apply_text_disable 0x7f050036
int color dracula_bottom_toolbar_bg 0x7f050037
int color dracula_bottom_toolbar_preview 0x7f050038
int color dracula_bottom_toolbar_preview_text 0x7f050039
int color dracula_bottom_toolbar_preview_text_disable 0x7f05003a
int color dracula_capture 0x7f05003b
int color dracula_item_checkCircle_backgroundColor 0x7f05003c
int color dracula_item_checkCircle_borderColor 0x7f05003d
int color dracula_item_placeholder 0x7f05003e
int color dracula_page_bg 0x7f05003f
int color dracula_preview_bottom_toolbar_apply 0x7f050040
int color dracula_preview_bottom_toolbar_apply_text 0x7f050041
int color dracula_preview_bottom_toolbar_apply_text_disable 0x7f050042
int color dracula_preview_bottom_toolbar_back_text 0x7f050043
int color dracula_primary 0x7f050044
int color dracula_primary_dark 0x7f050045
int color e4e4e4 0x7f050046
int color error_color_material_dark 0x7f050047
int color error_color_material_light 0x7f050048
int color ffffff 0x7f050049
int color foreground_material_dark 0x7f05004a
int color foreground_material_light 0x7f05004b
int color hh_certificate_bg 0x7f05004c
int color hh_circle_bg 0x7f05004d
int color hh_doctor_simple_bg_color 0x7f05004e
int color hh_drawable_color_list_pressed 0x7f05004f
int color hh_drawable_color_list_separator 0x7f050050
int color hh_hint_color 0x7f050051
int color hh_input_bg 0x7f050052
int color hh_red_tips 0x7f050053
int color hh_sdk_activate_hint_color 0x7f050054
int color hh_sdk_comment_button_border 0x7f050055
int color hh_sdk_comment_des_color 0x7f050056
int color hh_sdk_comment_item_color 0x7f050057
int color hh_sdk_comment_main_title 0x7f050058
int color hh_sdk_comment_not_select_color 0x7f050059
int color hh_sdk_comment_select_color 0x7f05005a
int color hh_sdk_comment_separate_line_bg 0x7f05005b
int color hh_sdk_comment_tip 0x7f05005c
int color hh_sdk_edit_hint 0x7f05005d
int color hh_sdk_line_color 0x7f05005e
int color hh_ui_bg 0x7f05005f
int color hh_update_edit_bg 0x7f050060
int color hh_window_bg 0x7f050061
int color hhui_config_color_75_pure_black 0x7f050062
int color hhui_config_color_white 0x7f050063
int color hhui_config_slogan_color 0x7f050064
int color hhui_drawable_color_list_pressed 0x7f050065
int color hhui_drawable_color_list_separator 0x7f050066
int color highlighted_text_material_dark 0x7f050067
int color highlighted_text_material_light 0x7f050068
int color hp_alpha_black 0x7f050069
int color hp_black_33 0x7f05006a
int color hp_black_64 0x7f05006b
int color hp_black_66 0x7f05006c
int color hp_black_96 0x7f05006d
int color hp_black_99 0x7f05006e
int color hp_hint 0x7f05006f
int color hp_notify_red 0x7f050070
int color hp_sdk_alpha_black 0x7f050071
int color hp_sdk_blue 0x7f050072
int color hp_vip_black_bg 0x7f050073
int color hp_vip_black_press 0x7f050074
int color image_pick_title_btn_normal 0x7f050075
int color image_pick_title_btn_pressed 0x7f050076
int color ime_background 0x7f050077
int color material_blue_grey_800 0x7f050078
int color material_blue_grey_900 0x7f050079
int color material_blue_grey_950 0x7f05007a
int color material_deep_teal_200 0x7f05007b
int color material_deep_teal_500 0x7f05007c
int color material_grey_100 0x7f05007d
int color material_grey_300 0x7f05007e
int color material_grey_50 0x7f05007f
int color material_grey_600 0x7f050080
int color material_grey_800 0x7f050081
int color material_grey_850 0x7f050082
int color material_grey_900 0x7f050083
int color notification_action_color_filter 0x7f050084
int color notification_icon_bg_color 0x7f050085
int color notification_material_background_media_default_color 0x7f050086
int color pickerview_bgColor_default 0x7f050087
int color pickerview_bgColor_overlay 0x7f050088
int color pickerview_bg_topbar 0x7f050089
int color pickerview_timebtn_nor 0x7f05008a
int color pickerview_timebtn_pre 0x7f05008b
int color pickerview_topbar_title 0x7f05008c
int color pickerview_wheelview_textcolor_center 0x7f05008d
int color pickerview_wheelview_textcolor_divider 0x7f05008e
int color pickerview_wheelview_textcolor_out 0x7f05008f
int color preview_bottom_size 0x7f050090
int color preview_bottom_toolbar_bg 0x7f050091
int color primary_dark_material_dark 0x7f050092
int color primary_dark_material_light 0x7f050093
int color primary_material_dark 0x7f050094
int color primary_material_light 0x7f050095
int color primary_text_default_material_dark 0x7f050096
int color primary_text_default_material_light 0x7f050097
int color primary_text_disabled_material_dark 0x7f050098
int color primary_text_disabled_material_light 0x7f050099
int color ripple_material_dark 0x7f05009a
int color ripple_material_light 0x7f05009b
int color secondary_text_default_material_dark 0x7f05009c
int color secondary_text_default_material_light 0x7f05009d
int color secondary_text_disabled_material_dark 0x7f05009e
int color secondary_text_disabled_material_light 0x7f05009f
int color switch_thumb_disabled_material_dark 0x7f0500a0
int color switch_thumb_disabled_material_light 0x7f0500a1
int color switch_thumb_material_dark 0x7f0500a2
int color switch_thumb_material_light 0x7f0500a3
int color switch_thumb_normal_material_dark 0x7f0500a4
int color switch_thumb_normal_material_light 0x7f0500a5
int color tooltip_background_dark 0x7f0500a6
int color tooltip_background_light 0x7f0500a7
int color video_call_peer_close_camera_text_color 0x7f0500a8
int color video_call_peer_close_camera_text_shadow 0x7f0500a9
int color zhihu_album_dropdown_count_text 0x7f0500aa
int color zhihu_album_dropdown_thumbnail_placeholder 0x7f0500ab
int color zhihu_album_dropdown_title_text 0x7f0500ac
int color zhihu_album_empty_view 0x7f0500ad
int color zhihu_album_popup_bg 0x7f0500ae
int color zhihu_bottom_toolbar_apply 0x7f0500af
int color zhihu_bottom_toolbar_apply_text 0x7f0500b0
int color zhihu_bottom_toolbar_apply_text_disable 0x7f0500b1
int color zhihu_bottom_toolbar_bg 0x7f0500b2
int color zhihu_bottom_toolbar_preview 0x7f0500b3
int color zhihu_bottom_toolbar_preview_text 0x7f0500b4
int color zhihu_bottom_toolbar_preview_text_disable 0x7f0500b5
int color zhihu_capture 0x7f0500b6
int color zhihu_check_original_radio_disable 0x7f0500b7
int color zhihu_item_checkCircle_backgroundColor 0x7f0500b8
int color zhihu_item_checkCircle_borderColor 0x7f0500b9
int color zhihu_item_placeholder 0x7f0500ba
int color zhihu_page_bg 0x7f0500bb
int color zhihu_preview_bottom_toolbar_apply 0x7f0500bc
int color zhihu_preview_bottom_toolbar_apply_text 0x7f0500bd
int color zhihu_preview_bottom_toolbar_apply_text_disable 0x7f0500be
int color zhihu_preview_bottom_toolbar_back_text 0x7f0500bf
int color zhihu_primary 0x7f0500c0
int color zhihu_primary_dark 0x7f0500c1
int dimen abc_action_bar_content_inset_material 0x7f060000
int dimen abc_action_bar_content_inset_with_nav 0x7f060001
int dimen abc_action_bar_default_height_material 0x7f060002
int dimen abc_action_bar_default_padding_end_material 0x7f060003
int dimen abc_action_bar_default_padding_start_material 0x7f060004
int dimen abc_action_bar_elevation_material 0x7f060005
int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006
int dimen abc_action_bar_overflow_padding_end_material 0x7f060007
int dimen abc_action_bar_overflow_padding_start_material 0x7f060008
int dimen abc_action_bar_stacked_max_height 0x7f060009
int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a
int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b
int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c
int dimen abc_action_button_min_height_material 0x7f06000d
int dimen abc_action_button_min_width_material 0x7f06000e
int dimen abc_action_button_min_width_overflow_material 0x7f06000f
int dimen abc_alert_dialog_button_bar_height 0x7f060010
int dimen abc_alert_dialog_button_dimen 0x7f060011
int dimen abc_button_inset_horizontal_material 0x7f060012
int dimen abc_button_inset_vertical_material 0x7f060013
int dimen abc_button_padding_horizontal_material 0x7f060014
int dimen abc_button_padding_vertical_material 0x7f060015
int dimen abc_cascading_menus_min_smallest_width 0x7f060016
int dimen abc_config_prefDialogWidth 0x7f060017
int dimen abc_control_corner_material 0x7f060018
int dimen abc_control_inset_material 0x7f060019
int dimen abc_control_padding_material 0x7f06001a
int dimen abc_dialog_corner_radius_material 0x7f06001b
int dimen abc_dialog_fixed_height_major 0x7f06001c
int dimen abc_dialog_fixed_height_minor 0x7f06001d
int dimen abc_dialog_fixed_width_major 0x7f06001e
int dimen abc_dialog_fixed_width_minor 0x7f06001f
int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020
int dimen abc_dialog_list_padding_top_no_title 0x7f060021
int dimen abc_dialog_min_width_major 0x7f060022
int dimen abc_dialog_min_width_minor 0x7f060023
int dimen abc_dialog_padding_material 0x7f060024
int dimen abc_dialog_padding_top_material 0x7f060025
int dimen abc_dialog_title_divider_material 0x7f060026
int dimen abc_disabled_alpha_material_dark 0x7f060027
int dimen abc_disabled_alpha_material_light 0x7f060028
int dimen abc_dropdownitem_icon_width 0x7f060029
int dimen abc_dropdownitem_text_padding_left 0x7f06002a
int dimen abc_dropdownitem_text_padding_right 0x7f06002b
int dimen abc_edit_text_inset_bottom_material 0x7f06002c
int dimen abc_edit_text_inset_horizontal_material 0x7f06002d
int dimen abc_edit_text_inset_top_material 0x7f06002e
int dimen abc_floating_window_z 0x7f06002f
int dimen abc_list_item_padding_horizontal_material 0x7f060030
int dimen abc_panel_menu_list_width 0x7f060031
int dimen abc_progress_bar_height_material 0x7f060032
int dimen abc_search_view_preferred_height 0x7f060033
int dimen abc_search_view_preferred_width 0x7f060034
int dimen abc_seekbar_track_background_height_material 0x7f060035
int dimen abc_seekbar_track_progress_height_material 0x7f060036
int dimen abc_select_dialog_padding_start_material 0x7f060037
int dimen abc_switch_padding 0x7f060038
int dimen abc_text_size_body_1_material 0x7f060039
int dimen abc_text_size_body_2_material 0x7f06003a
int dimen abc_text_size_button_material 0x7f06003b
int dimen abc_text_size_caption_material 0x7f06003c
int dimen abc_text_size_display_1_material 0x7f06003d
int dimen abc_text_size_display_2_material 0x7f06003e
int dimen abc_text_size_display_3_material 0x7f06003f
int dimen abc_text_size_display_4_material 0x7f060040
int dimen abc_text_size_headline_material 0x7f060041
int dimen abc_text_size_large_material 0x7f060042
int dimen abc_text_size_medium_material 0x7f060043
int dimen abc_text_size_menu_header_material 0x7f060044
int dimen abc_text_size_menu_material 0x7f060045
int dimen abc_text_size_small_material 0x7f060046
int dimen abc_text_size_subhead_material 0x7f060047
int dimen abc_text_size_subtitle_material_toolbar 0x7f060048
int dimen abc_text_size_title_material 0x7f060049
int dimen abc_text_size_title_material_toolbar 0x7f06004a
int dimen album_item_height 0x7f06004b
int dimen compat_button_inset_horizontal_material 0x7f06004c
int dimen compat_button_inset_vertical_material 0x7f06004d
int dimen compat_button_padding_horizontal_material 0x7f06004e
int dimen compat_button_padding_vertical_material 0x7f06004f
int dimen compat_control_corner_material 0x7f060050
int dimen compat_notification_large_icon_max_height 0x7f060051
int dimen compat_notification_large_icon_max_width 0x7f060052
int dimen dcloud_wel_base_content_space 0x7f060053
int dimen dcloud_wel_base_content_space_2 0x7f060054
int dimen dcloud_wel_base_content_text_min_size 0x7f060055
int dimen disabled_alpha_material_dark 0x7f060056
int dimen disabled_alpha_material_light 0x7f060057
int dimen dp_10 0x7f060058
int dimen dp_6 0x7f060059
int dimen fastscroll_default_thickness 0x7f06005a
int dimen fastscroll_margin 0x7f06005b
int dimen fastscroll_minimum_range 0x7f06005c
int dimen hh_action_bar_height 0x7f06005d
int dimen hh_av_profile_height 0x7f06005e
int dimen hh_bottom_sheet_grid_item_icon_size 0x7f06005f
int dimen hh_bottom_sheet_grid_item_mini_width 0x7f060060
int dimen hh_bottom_sheet_grid_line_padding_horizontal 0x7f060061
int dimen hh_bottom_sheet_grid_line_vertical_space 0x7f060062
int dimen hh_bottom_sheet_grid_padding_vertical 0x7f060063
int dimen hh_bottom_sheet_list_item_height 0x7f060064
int dimen hh_bottom_sheet_title_height 0x7f060065
int dimen hh_callback_padding 0x7f060066
int dimen hh_chat_small_layout_top 0x7f060067
int dimen hh_chat_water_layout_top 0x7f060068
int dimen hh_comment_horizontal_spacing 0x7f060069
int dimen hh_comment_vertical_spacing 0x7f06006a
int dimen hh_feedback_content_height_l 0x7f06006b
int dimen hh_horizontal_margin 0x7f06006c
int dimen hh_line_height 0x7f06006d
int dimen hh_list_divider_height 0x7f06006e
int dimen hh_notify_carton_font 0x7f06006f
int dimen hh_notify_phone_button_font 0x7f060070
int dimen hh_notify_phone_button_padding 0x7f060071
int dimen hh_radius 0x7f060072
int dimen hh_sdk_dialog_margin_h 0x7f060073
int dimen hh_sdk_dialog_margin_v 0x7f060074
int dimen hh_setting_item_height 0x7f060075
int dimen hh_tablet_slogan_size 0x7f060076
int dimen hh_vertical_large 0x7f060077
int dimen hh_vertical_margin 0x7f060078
int dimen hh_vertical_medium 0x7f060079
int dimen hhui_content_padding_horizontal 0x7f06007a
int dimen hhui_content_spacing_horizontal 0x7f06007b
int dimen highlight_alpha_material_colored 0x7f06007c
int dimen highlight_alpha_material_dark 0x7f06007d
int dimen highlight_alpha_material_light 0x7f06007e
int dimen hint_alpha_material_dark 0x7f06007f
int dimen hint_alpha_material_light 0x7f060080
int dimen hint_pressed_alpha_material_dark 0x7f060081
int dimen hint_pressed_alpha_material_light 0x7f060082
int dimen hp_chat_icon_margin_left 0x7f060083
int dimen hp_chat_layout_padding 0x7f060084
int dimen hp_chat_margin_right 0x7f060085
int dimen hp_chat_name_margin 0x7f060086
int dimen hp_chat_name_top_margin 0x7f060087
int dimen hp_content_font_padding 0x7f060088
int dimen hp_content_padding 0x7f060089
int dimen hp_drug_count_bottom_margin 0x7f06008a
int dimen hp_drug_count_top_margin 0x7f06008b
int dimen hp_video_menu_text_font 0x7f06008c
int dimen hp_video_small_height 0x7f06008d
int dimen hp_video_small_width 0x7f06008e
int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06008f
int dimen item_touch_helper_swipe_escape_max_velocity 0x7f060090
int dimen item_touch_helper_swipe_escape_velocity 0x7f060091
int dimen media_grid_size 0x7f060092
int dimen media_grid_spacing 0x7f060093
int dimen normal_margin 0x7f060094
int dimen notification_action_icon_size 0x7f060095
int dimen notification_action_text_size 0x7f060096
int dimen notification_big_circle_margin 0x7f060097
int dimen notification_content_margin_start 0x7f060098
int dimen notification_large_icon_height 0x7f060099
int dimen notification_large_icon_width 0x7f06009a
int dimen notification_main_column_padding_top 0x7f06009b
int dimen notification_media_narrow_margin 0x7f06009c
int dimen notification_right_icon_size 0x7f06009d
int dimen notification_right_side_padding_top 0x7f06009e
int dimen notification_small_icon_background_padding 0x7f06009f
int dimen notification_small_icon_size_as_large 0x7f0600a0
int dimen notification_subtext_size 0x7f0600a1
int dimen notification_top_pad 0x7f0600a2
int dimen notification_top_pad_large_text 0x7f0600a3
int dimen pickerview_textsize 0x7f0600a4
int dimen pickerview_topbar_btn_textsize 0x7f0600a5
int dimen pickerview_topbar_height 0x7f0600a6
int dimen pickerview_topbar_padding 0x7f0600a7
int dimen pickerview_topbar_title_textsize 0x7f0600a8
int dimen subtitle_corner_radius 0x7f0600a9
int dimen subtitle_outline_width 0x7f0600aa
int dimen subtitle_shadow_offset 0x7f0600ab
int dimen subtitle_shadow_radius 0x7f0600ac
int dimen tooltip_corner_radius 0x7f0600ad
int dimen tooltip_horizontal_padding 0x7f0600ae
int dimen tooltip_margin 0x7f0600af
int dimen tooltip_precise_anchor_extra_offset 0x7f0600b0
int dimen tooltip_precise_anchor_threshold 0x7f0600b1
int dimen tooltip_vertical_padding 0x7f0600b2
int dimen tooltip_y_offset_non_touch 0x7f0600b3
int dimen tooltip_y_offset_touch 0x7f0600b4
int dimen uikit_horizontal_margin 0x7f0600b5
int drawable abc_ab_share_pack_mtrl_alpha 0x7f070000
int drawable abc_action_bar_item_background_material 0x7f070001
int drawable abc_btn_borderless_material 0x7f070002
int drawable abc_btn_check_material 0x7f070003
int drawable abc_btn_check_to_on_mtrl_000 0x7f070004
int drawable abc_btn_check_to_on_mtrl_015 0x7f070005
int drawable abc_btn_colored_material 0x7f070006
int drawable abc_btn_default_mtrl_shape 0x7f070007
int drawable abc_btn_radio_material 0x7f070008
int drawable abc_btn_radio_to_on_mtrl_000 0x7f070009
int drawable abc_btn_radio_to_on_mtrl_015 0x7f07000a
int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000b
int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000c
int drawable abc_cab_background_internal_bg 0x7f07000d
int drawable abc_cab_background_top_material 0x7f07000e
int drawable abc_cab_background_top_mtrl_alpha 0x7f07000f
int drawable abc_control_background_material 0x7f070010
int drawable abc_dialog_material_background 0x7f070011
int drawable abc_edit_text_material 0x7f070012
int drawable abc_ic_ab_back_material 0x7f070013
int drawable abc_ic_arrow_drop_right_black_24dp 0x7f070014
int drawable abc_ic_clear_material 0x7f070015
int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070016
int drawable abc_ic_go_search_api_material 0x7f070017
int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f070018
int drawable abc_ic_menu_cut_mtrl_alpha 0x7f070019
int drawable abc_ic_menu_overflow_material 0x7f07001a
int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001b
int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001c
int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001d
int drawable abc_ic_search_api_material 0x7f07001e
int drawable abc_ic_star_black_16dp 0x7f07001f
int drawable abc_ic_star_black_36dp 0x7f070020
int drawable abc_ic_star_black_48dp 0x7f070021
int drawable abc_ic_star_half_black_16dp 0x7f070022
int drawable abc_ic_star_half_black_36dp 0x7f070023
int drawable abc_ic_star_half_black_48dp 0x7f070024
int drawable abc_ic_voice_search_api_material 0x7f070025
int drawable abc_item_background_holo_dark 0x7f070026
int drawable abc_item_background_holo_light 0x7f070027
int drawable abc_list_divider_material 0x7f070028
int drawable abc_list_divider_mtrl_alpha 0x7f070029
int drawable abc_list_focused_holo 0x7f07002a
int drawable abc_list_longpressed_holo 0x7f07002b
int drawable abc_list_pressed_holo_dark 0x7f07002c
int drawable abc_list_pressed_holo_light 0x7f07002d
int drawable abc_list_selector_background_transition_holo_dark 0x7f07002e
int drawable abc_list_selector_background_transition_holo_light 0x7f07002f
int drawable abc_list_selector_disabled_holo_dark 0x7f070030
int drawable abc_list_selector_disabled_holo_light 0x7f070031
int drawable abc_list_selector_holo_dark 0x7f070032
int drawable abc_list_selector_holo_light 0x7f070033
int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070034
int drawable abc_popup_background_mtrl_mult 0x7f070035
int drawable abc_ratingbar_indicator_material 0x7f070036
int drawable abc_ratingbar_material 0x7f070037
int drawable abc_ratingbar_small_material 0x7f070038
int drawable abc_scrubber_control_off_mtrl_alpha 0x7f070039
int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f07003a
int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f07003b
int drawable abc_scrubber_primary_mtrl_alpha 0x7f07003c
int drawable abc_scrubber_track_mtrl_alpha 0x7f07003d
int drawable abc_seekbar_thumb_material 0x7f07003e
int drawable abc_seekbar_tick_mark_material 0x7f07003f
int drawable abc_seekbar_track_material 0x7f070040
int drawable abc_spinner_mtrl_am_alpha 0x7f070041
int drawable abc_spinner_textfield_background_material 0x7f070042
int drawable abc_switch_thumb_material 0x7f070043
int drawable abc_switch_track_mtrl_alpha 0x7f070044
int drawable abc_tab_indicator_material 0x7f070045
int drawable abc_tab_indicator_mtrl_alpha 0x7f070046
int drawable abc_text_cursor_material 0x7f070047
int drawable abc_text_select_handle_left_mtrl_dark 0x7f070048
int drawable abc_text_select_handle_left_mtrl_light 0x7f070049
int drawable abc_text_select_handle_middle_mtrl_dark 0x7f07004a
int drawable abc_text_select_handle_middle_mtrl_light 0x7f07004b
int drawable abc_text_select_handle_right_mtrl_dark 0x7f07004c
int drawable abc_text_select_handle_right_mtrl_light 0x7f07004d
int drawable abc_textfield_activated_mtrl_alpha 0x7f07004e
int drawable abc_textfield_default_mtrl_alpha 0x7f07004f
int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070050
int drawable abc_textfield_search_default_mtrl_alpha 0x7f070051
int drawable abc_textfield_search_material 0x7f070052
int drawable abc_vector_test 0x7f070053
int drawable ad_dcloud_main_ad_tag 0x7f070054
int drawable ad_dcloud_main_skip_bg 0x7f070055
int drawable ad_dcloud_main_skip_shape 0x7f070056
int drawable dcloud_about_buttons_bg 0x7f070057
int drawable dcloud_about_buttons_button_bg 0x7f070058
int drawable dcloud_actionsheet_bottom_normal 0x7f070059
int drawable dcloud_actionsheet_bottom_pressed 0x7f07005a
int drawable dcloud_actionsheet_middle_normal 0x7f07005b
int drawable dcloud_actionsheet_middle_pressed 0x7f07005c
int drawable dcloud_actionsheet_single_normal 0x7f07005d
int drawable dcloud_actionsheet_single_pressed 0x7f07005e
int drawable dcloud_actionsheet_top_normal 0x7f07005f
int drawable dcloud_actionsheet_top_pressed 0x7f070060
int drawable dcloud_as_bg_ios6 0x7f070061
int drawable dcloud_as_cancel_bt_bg 0x7f070062
int drawable dcloud_as_other_bt_bg 0x7f070063
int drawable dcloud_assistan_loc 0x7f070064
int drawable dcloud_circle_black_progress 0x7f070065
int drawable dcloud_circle_white_progress 0x7f070066
int drawable dcloud_debug_shape 0x7f070067
int drawable dcloud_dialog_shape 0x7f070068
int drawable dcloud_dialog_shape_bg 0x7f070069
int drawable dcloud_image_pick_mask 0x7f07006a
int drawable dcloud_image_pick_no_media 0x7f07006b
int drawable dcloud_image_pick_title_sel 0x7f07006c
int drawable dcloud_left_arrow 0x7f07006d
int drawable dcloud_longding_bg 0x7f07006e
int drawable dcloud_point_dd524d 0x7f07006f
int drawable dcloud_point_f32720 0x7f070070
int drawable dcloud_recent 0x7f070071
int drawable dcloud_record_border 0x7f070072
int drawable dcloud_record_view_line 0x7f070073
int drawable dcloud_right_arrow 0x7f070074
int drawable dcloud_shadow_left 0x7f070075
int drawable dcloud_shortcut_guide_huawei 0x7f070076
int drawable dcloud_shortcut_guide_meizu 0x7f070077
int drawable dcloud_shortcut_guide_xiaomi 0x7f070078
int drawable dcloud_slt_as_ios7_cancel_bt 0x7f070079
int drawable dcloud_slt_as_ios7_other_bt_bottom 0x7f07007a
int drawable dcloud_slt_as_ios7_other_bt_middle 0x7f07007b
int drawable dcloud_slt_as_ios7_other_bt_single 0x7f07007c
int drawable dcloud_slt_as_ios7_other_bt_title 0x7f07007d
int drawable dcloud_slt_as_ios7_other_bt_top 0x7f07007e
int drawable dcloud_snow_black 0x7f07007f
int drawable dcloud_snow_black_progress 0x7f070080
int drawable dcloud_snow_white 0x7f070081
int drawable dcloud_snow_white_progress 0x7f070082
int drawable dcloud_streamapp_about_feedback 0x7f070083
int drawable dcloud_streamapp_about_first_start_short_cut_checkbox 0x7f070084
int drawable dcloud_streamapp_about_first_start_short_cut_cheked 0x7f070085
int drawable dcloud_streamapp_about_first_start_short_cut_normal 0x7f070086
int drawable dcloud_streamapp_about_right_arrow 0x7f070087
int drawable dcloud_streamapp_about_share 0x7f070088
int drawable dcloud_streamapp_about_update 0x7f070089
int drawable dcloud_streamapp_icon 0x7f07008a
int drawable dcloud_streamapp_icon_appdefault 0x7f07008b
int drawable dcloud_tabbar_badge 0x7f07008c
int drawable dcloud_tabbar_dot 0x7f07008d
int drawable dcloud_webview_activity_title_bg 0x7f07008e
int drawable hh_action_menu_icon_user 0x7f07008f
int drawable hh_audio_wave_bg 0x7f070090
int drawable hh_av_accept_btn_bg 0x7f070091
int drawable hh_av_bottom_bg 0x7f070092
int drawable hh_av_btn_text_color 0x7f070093
int drawable hh_av_change_front_disable 0x7f070094
int drawable hh_av_change_front_normal 0x7f070095
int drawable hh_av_change_front_press 0x7f070096
int drawable hh_av_chat_accept_bg_normal 0x7f070097
int drawable hh_av_chat_accept_bg_press 0x7f070098
int drawable hh_av_chat_audio_wave_max 0x7f070099
int drawable hh_av_chat_change_camera_bg 0x7f07009a
int drawable hh_av_chat_change_doctor_icon 0x7f07009b
int drawable hh_av_chat_photo_tablet 0x7f07009c
int drawable hh_av_chat_photos_for_pad 0x7f07009d
int drawable hh_av_chat_receive_bg_tv_n 0x7f07009e
int drawable hh_av_chat_receive_bg_tv_s 0x7f07009f
int drawable hh_av_chat_refuse_bg_normal 0x7f0700a0
int drawable hh_av_chat_refuse_bg_normal_tv 0x7f0700a1
int drawable hh_av_chat_refuse_bg_press 0x7f0700a2
int drawable hh_av_chat_refuse_bg_select_tv 0x7f0700a3
int drawable hh_av_chat_refuse_bg_tablet 0x7f0700a4
int drawable hh_av_chat_refuse_bg_tv_n 0x7f0700a5
int drawable hh_av_chat_refuse_bg_tv_s 0x7f0700a6
int drawable hh_av_chat_voice 0x7f0700a7
int drawable hh_av_chat_voice_bg 0x7f0700a8
int drawable hh_av_chat_voice_press 0x7f0700a9
int drawable hh_av_refuse_btn_bg 0x7f0700aa
int drawable hh_av_tools_bg 0x7f0700ab
int drawable hh_avchat_audio_wave_middle 0x7f0700ac
int drawable hh_avchat_audio_wave_min 0x7f0700ad
int drawable hh_btn_blue_border_white_bg 0x7f0700ae
int drawable hh_call_dialog_bottom_bg 0x7f0700af
int drawable hh_card_buy_service_btn_bg 0x7f0700b0
int drawable hh_card_buy_service_btn_bg_normal 0x7f0700b1
int drawable hh_card_buy_service_btn_bg_press 0x7f0700b2
int drawable hh_chat_default_icon 0x7f0700b3
int drawable hh_chat_time_bg 0x7f0700b4
int drawable hh_checkout_bg_gray_pro 0x7f0700b5
int drawable hh_close_icon_white 0x7f0700b6
int drawable hh_comment_button_right_arrow 0x7f0700b7
int drawable hh_comment_close 0x7f0700b8
int drawable hh_comment_face_happy 0x7f0700b9
int drawable hh_comment_face_happy_pressed 0x7f0700ba
int drawable hh_comment_face_happy_selector 0x7f0700bb
int drawable hh_comment_face_sad 0x7f0700bc
int drawable hh_comment_face_sad_pressed 0x7f0700bd
int drawable hh_comment_face_sad_selector 0x7f0700be
int drawable hh_comment_happy_bg 0x7f0700bf
int drawable hh_comment_icon_sad 0x7f0700c0
int drawable hh_comment_item_bg 0x7f0700c1
int drawable hh_comment_question_font 0x7f0700c2
int drawable hh_comment_sad_bg 0x7f0700c3
int drawable hh_comment_star_select 0x7f0700c4
int drawable hh_comment_star_unselect 0x7f0700c5
int drawable hh_divider 0x7f0700c6
int drawable hh_divider_bottom_bitmap 0x7f0700c7
int drawable hh_divider_top_bitmap 0x7f0700c8
int drawable hh_doctor_info_simple_bg 0x7f0700c9
int drawable hh_drug_add_count_icon 0x7f0700ca
int drawable hh_edit_cursor_blue 0x7f0700cb
int drawable hh_icon_checkmark 0x7f0700cc
int drawable hh_list_item_bg 0x7f0700cd
int drawable hh_list_item_bg_with_border_bottom 0x7f0700ce
int drawable hh_list_item_bg_with_border_bottom_pressed 0x7f0700cf
int drawable hh_loading_spin_1 0x7f0700d0
int drawable hh_loading_spin_2 0x7f0700d1
int drawable hh_loading_spin_3 0x7f0700d2
int drawable hh_loading_spin_animation 0x7f0700d3
int drawable hh_multi_av_item_waiting_bg 0x7f0700d4
int drawable hh_multi_item_hangup_icon 0x7f0700d5
int drawable hh_multi_item_loading 0x7f0700d6
int drawable hh_multi_loading_icon_one 0x7f0700d7
int drawable hh_multi_loading_icon_three 0x7f0700d8
int drawable hh_multi_loading_icon_two 0x7f0700d9
int drawable hh_point_shape_64 0x7f0700da
int drawable hh_prescription_icon 0x7f0700db
int drawable hh_progress_bg 0x7f0700dc
int drawable hh_real_name_error_icon 0x7f0700dd
int drawable hh_real_name_normal_tips_icon 0x7f0700de
int drawable hh_rts_loading_icon 0x7f0700df
int drawable hh_sdk_btn_blue_bg 0x7f0700e0
int drawable hh_sdk_btn_blue_normal 0x7f0700e1
int drawable hh_sdk_btn_blue_press 0x7f0700e2
int drawable hh_sdk_comment_button_bg 0x7f0700e3
int drawable hh_sdk_comment_button_bg_normal 0x7f0700e4
int drawable hh_sdk_comment_button_bg_select 0x7f0700e5
int drawable hh_sdk_comment_button_font_color 0x7f0700e6
int drawable hh_sdk_dialog_normal_bg 0x7f0700e7
int drawable hh_sdk_edit_cursor 0x7f0700e8
int drawable hh_sdk_error_red_icon 0x7f0700e9
int drawable hh_sdk_success_tips 0x7f0700ea
int drawable hh_setting_icon_address 0x7f0700eb
int drawable hh_setting_icon_buy_vip 0x7f0700ec
int drawable hh_setting_icon_code 0x7f0700ed
int drawable hh_setting_icon_medic 0x7f0700ee
int drawable hh_setting_icon_order 0x7f0700ef
int drawable hh_setting_icon_vip 0x7f0700f0
int drawable hh_update_phone_bg 0x7f0700f1
int drawable hh_video_chat_icon_close_camera 0x7f0700f2
int drawable hh_video_chat_icon_open_camera 0x7f0700f3
int drawable hh_white_bg_top_radius 0x7f0700f4
int drawable hhui_dialog_bg 0x7f0700f5
int drawable hhui_icon_notify_done 0x7f0700f6
int drawable hhui_icon_notify_error 0x7f0700f7
int drawable hhui_icon_notify_info 0x7f0700f8
int drawable hhui_tip_dialog_bg 0x7f0700f9
int drawable hp_arrow_right 0x7f0700fa
int drawable hp_avchat_call_bg 0x7f0700fb
int drawable hp_avchat_tools_bg 0x7f0700fc
int drawable hp_avchat_tools_more 0x7f0700fd
int drawable hp_avchat_tools_more_open 0x7f0700fe
int drawable hp_avchat_tools_start_bg 0x7f0700ff
int drawable hp_black_bg 0x7f070100
int drawable hp_call_default_loading 0x7f070101
int drawable hp_call_default_loading_for_pad 0x7f070102
int drawable hp_call_icon_white 0x7f070103
int drawable hp_card_arrow 0x7f070104
int drawable hp_card_video_icon 0x7f070105
int drawable hp_chat_card_bg 0x7f070106
int drawable hp_checkout_bg_gray_selected_gray 0x7f070107
int drawable hp_checkout_bg_gray_small 0x7f070108
int drawable hp_dash_line 0x7f070109
int drawable hp_doctor_job_icon 0x7f07010a
int drawable hp_doctor_job_icon_for_pad 0x7f07010b
int drawable hp_doctor_job_icon_for_pad_p 0x7f07010c
int drawable hp_doctor_job_icon_for_pad_s 0x7f07010d
int drawable hp_doctor_job_icon_for_tv 0x7f07010e
int drawable hp_doctor_job_icon_for_tv_p 0x7f07010f
int drawable hp_doctor_job_icon_for_tv_s 0x7f070110
int drawable hp_doctor_receive_tv_btn 0x7f070111
int drawable hp_doctor_refuse_tv_btn 0x7f070112
int drawable hp_flash_close 0x7f070113
int drawable hp_flash_open 0x7f070114
int drawable hp_icon_close 0x7f070115
int drawable hp_icon_close_bg 0x7f070116
int drawable hp_icon_close_select 0x7f070117
int drawable hp_job_icon 0x7f070118
int drawable hp_job_tv_icon 0x7f070119
int drawable hp_line_up_image 0x7f07011a
int drawable hp_line_up_image_for_pad 0x7f07011b
int drawable hp_sdk_code_number_item_select_bg 0x7f07011c
int drawable hp_sdk_number_code_item_bg 0x7f07011d
int drawable hp_sdk_number_code_item_notify_bg 0x7f07011e
int drawable hp_tips_bg 0x7f07011f
int drawable hp_video_doctor_cer_icon 0x7f070120
int drawable hp_video_watermark 0x7f070121
int drawable hp_vip_card_flag_gold 0x7f070122
int drawable hp_vip_product_card_bg 0x7f070123
int drawable ic_arrow_drop_down_white_24dp 0x7f070124
int drawable ic_check_white_18dp 0x7f070125
int drawable ic_empty_dracula 0x7f070126
int drawable ic_empty_zhihu 0x7f070127
int drawable ic_gif 0x7f070128
int drawable ic_launcher_background 0x7f070129
int drawable ic_photo_camera_white_24dp 0x7f07012a
int drawable ic_play_circle_outline_white_48dp 0x7f07012b
int drawable ic_preview_radio_off 0x7f07012c
int drawable ic_preview_radio_on 0x7f07012d
int drawable icon 0x7f07012e
int drawable notification_action_background 0x7f07012f
int drawable notification_bg 0x7f070130
int drawable notification_bg_low 0x7f070131
int drawable notification_bg_low_normal 0x7f070132
int drawable notification_bg_low_pressed 0x7f070133
int drawable notification_bg_normal 0x7f070134
int drawable notification_bg_normal_pressed 0x7f070135
int drawable notification_icon_background 0x7f070136
int drawable notification_template_icon_bg 0x7f070137
int drawable notification_template_icon_low_bg 0x7f070138
int drawable notification_tile_bg 0x7f070139
int drawable notify_panel_notification_icon_bg 0x7f07013a
int drawable offline_pin 0x7f07013b
int drawable offline_pin_round 0x7f07013c
int drawable photo_rotate_icon 0x7f07013d
int drawable push 0x7f07013e
int drawable selector_pickerview_btn 0x7f07013f
int drawable shortcut_permission_guide_bg 0x7f070140
int drawable shortcut_permission_guide_close 0x7f070141
int drawable shortcut_permission_guide_play 0x7f070142
int drawable side_bar_bg 0x7f070143
int drawable side_bar_close 0x7f070144
int drawable side_bar_closebar 0x7f070145
int drawable side_bar_custom_menu_item_bg 0x7f070146
int drawable side_bar_custom_menu_item_line 0x7f070147
int drawable side_bar_custom_menu_item_selected 0x7f070148
int drawable side_bar_favorite 0x7f070149
int drawable side_bar_home 0x7f07014a
int drawable side_bar_openbar 0x7f07014b
int drawable side_bar_refresh 0x7f07014c
int drawable side_bar_share 0x7f07014d
int drawable sidebar_shortcut 0x7f07014e
int drawable splash 0x7f07014f
int drawable toast_bg 0x7f070150
int drawable tooltip_frame_dark 0x7f070151
int drawable tooltip_frame_light 0x7f070152
int drawable weex_error 0x7f070153
int id ALT 0x7f080000
int id CTRL 0x7f080001
int id FUNCTION 0x7f080002
int id META 0x7f080003
int id SHIFT 0x7f080004
int id SYM 0x7f080005
int id accept 0x7f080006
int id accessibility_action_clickable_span 0x7f080007
int id accessibility_custom_action_0 0x7f080008
int id accessibility_custom_action_1 0x7f080009
int id accessibility_custom_action_10 0x7f08000a
int id accessibility_custom_action_11 0x7f08000b
int id accessibility_custom_action_12 0x7f08000c
int id accessibility_custom_action_13 0x7f08000d
int id accessibility_custom_action_14 0x7f08000e
int id accessibility_custom_action_15 0x7f08000f
int id accessibility_custom_action_16 0x7f080010
int id accessibility_custom_action_17 0x7f080011
int id accessibility_custom_action_18 0x7f080012
int id accessibility_custom_action_19 0x7f080013
int id accessibility_custom_action_2 0x7f080014
int id accessibility_custom_action_20 0x7f080015
int id accessibility_custom_action_21 0x7f080016
int id accessibility_custom_action_22 0x7f080017
int id accessibility_custom_action_23 0x7f080018
int id accessibility_custom_action_24 0x7f080019
int id accessibility_custom_action_25 0x7f08001a
int id accessibility_custom_action_26 0x7f08001b
int id accessibility_custom_action_27 0x7f08001c
int id accessibility_custom_action_28 0x7f08001d
int id accessibility_custom_action_29 0x7f08001e
int id accessibility_custom_action_3 0x7f08001f
int id accessibility_custom_action_30 0x7f080020
int id accessibility_custom_action_31 0x7f080021
int id accessibility_custom_action_4 0x7f080022
int id accessibility_custom_action_5 0x7f080023
int id accessibility_custom_action_6 0x7f080024
int id accessibility_custom_action_7 0x7f080025
int id accessibility_custom_action_8 0x7f080026
int id accessibility_custom_action_9 0x7f080027
int id action0 0x7f080028
int id action_bar 0x7f080029
int id action_bar_activity_content 0x7f08002a
int id action_bar_container 0x7f08002b
int id action_bar_root 0x7f08002c
int id action_bar_spinner 0x7f08002d
int id action_bar_subtitle 0x7f08002e
int id action_bar_title 0x7f08002f
int id action_container 0x7f080030
int id action_context_bar 0x7f080031
int id action_divider 0x7f080032
int id action_image 0x7f080033
int id action_menu_divider 0x7f080034
int id action_menu_presenter 0x7f080035
int id action_mode_bar 0x7f080036
int id action_mode_bar_stub 0x7f080037
int id action_mode_close_button 0x7f080038
int id action_text 0x7f080039
int id actions 0x7f08003a
int id activity_chooser_view_content 0x7f08003b
int id ad_dcloud_icon 0x7f08003c
int id ad_dcloud_icon_single 0x7f08003d
int id ad_dcloud_main_adtext 0x7f08003e
int id ad_dcloud_main_img 0x7f08003f
int id ad_dcloud_main_skip 0x7f080040
int id ad_dcloud_name 0x7f080041
int id ad_dcloud_root 0x7f080042
int id ad_dcloud_splash_bottom_bar 0x7f080043
int id ad_dcloud_splash_container 0x7f080044
int id add 0x7f080045
int id add_btn 0x7f080046
int id age 0x7f080047
int id album_cover 0x7f080048
int id album_media_count 0x7f080049
int id album_name 0x7f08004a
int id alertTitle 0x7f08004b
int id all 0x7f08004c
int id always 0x7f08004d
int id answer_one 0x7f08004e
int id answer_two 0x7f08004f
int id apply 0x7f080050
int id async 0x7f080051
int id back 0x7f080052
int id bad_change_btn 0x7f080053
int id bad_tips 0x7f080054
int id beginning 0x7f080055
int id bgImg 0x7f080056
int id birthday_layout 0x7f080057
int id blocking 0x7f080058
int id bottom 0x7f080059
int id bottom_content_layout 0x7f08005a
int id bottom_control 0x7f08005b
int id bottom_dialog_list_item_mark 0x7f08005c
int id bottom_dialog_list_item_title 0x7f08005d
int id bottom_layout 0x7f08005e
int id bottom_menu_layout 0x7f08005f
int id bottom_sheet_button_container 0x7f080060
int id bottom_sheet_close_button 0x7f080061
int id bottom_sheet_first_linear_layout 0x7f080062
int id bottom_sheet_second_linear_layout 0x7f080063
int id bottom_toolbar 0x7f080064
int id btnCancel 0x7f080065
int id btnSubmit 0x7f080066
int id buttonPanel 0x7f080067
int id button_apply 0x7f080068
int id button_back 0x7f080069
int id button_preview 0x7f08006a
int id buy_layout 0x7f08006b
int id call 0x7f08006c
int id call_btn 0x7f08006d
int id call_layout 0x7f08006e
int id calling_bottom 0x7f08006f
int id calling_content 0x7f080070
int id cancel 0x7f080071
int id cancel_action 0x7f080072
int id cancel_multi 0x7f080073
int id canvas_image 0x7f080074
int id card_title 0x7f080075
int id center 0x7f080076
int id centerCrop 0x7f080077
int id centerInside 0x7f080078
int id center_crop 0x7f080079
int id center_horizontal 0x7f08007a
int id center_inside 0x7f08007b
int id center_vertical 0x7f08007c
int id change 0x7f08007d
int id chat 0x7f08007e
int id check_icon 0x7f08007f
int id check_protocol 0x7f080080
int id check_view 0x7f080081
int id checkbox 0x7f080082
int id chronometer 0x7f080083
int id clip_horizontal 0x7f080084
int id clip_vertical 0x7f080085
int id close 0x7f080086
int id code 0x7f080087
int id collapseActionView 0x7f080088
int id commit_btn 0x7f080089
int id complain 0x7f08008a
int id connect 0x7f08008b
int id connect_layout 0x7f08008c
int id container 0x7f08008d
int id content 0x7f08008e
int id contentPanel 0x7f08008f
int id contentWrap 0x7f080090
int id contentWrapper 0x7f080091
int id content_1 0x7f080092
int id content_2 0x7f080093
int id content_container 0x7f080094
int id count 0x7f080095
int id cover 0x7f080096
int id custom 0x7f080097
int id customLayout 0x7f080098
int id customPanel 0x7f080099
int id day 0x7f08009a
int id dcloud_dialog_btn1 0x7f08009b
int id dcloud_dialog_btn2 0x7f08009c
int id dcloud_dialog_icon 0x7f08009d
int id dcloud_dialog_msg 0x7f08009e
int id dcloud_dialog_rootview 0x7f08009f
int id dcloud_dialog_title 0x7f0800a0
int id dcloud_guide_close 0x7f0800a1
int id dcloud_guide_gifview 0x7f0800a2
int id dcloud_guide_play 0x7f0800a3
int id dcloud_guide_play_layout 0x7f0800a4
int id dcloud_guide_tip 0x7f0800a5
int id dcloud_iv_loading 0x7f0800a6
int id dcloud_pb_loading 0x7f0800a7
int id dcloud_pd_root 0x7f0800a8
int id dcloud_record_address_view_1 0x7f0800a9
int id dcloud_record_address_view_2 0x7f0800aa
int id dcloud_record_address_view_3 0x7f0800ab
int id dcloud_record_arrow_left 0x7f0800ac
int id dcloud_record_arrow_left_layout 0x7f0800ad
int id dcloud_record_arrow_right 0x7f0800ae
int id dcloud_record_arrow_right_layout 0x7f0800af
int id dcloud_record_arrows 0x7f0800b0
int id dcloud_record_line_1 0x7f0800b1
int id dcloud_record_line_2 0x7f0800b2
int id dcloud_record_scroll_view 0x7f0800b3
int id dcloud_record_view_1 0x7f0800b4
int id dcloud_record_view_2 0x7f0800b5
int id dcloud_tv_loading 0x7f0800b6
int id dcloud_view_seaparator 0x7f0800b7
int id debugTV 0x7f0800b8
int id decor_content_parent 0x7f0800b9
int id default_activity_button 0x7f0800ba
int id delete 0x7f0800bb
int id des 0x7f0800bc
int id dev_tips_incoming 0x7f0800bd
int id dialog_button 0x7f0800be
int id dialog_close 0x7f0800bf
int id disableHome 0x7f0800c0
int id drug 0x7f0800c1
int id edit_query 0x7f0800c2
int id empty_view 0x7f0800c3
int id empty_view_content 0x7f0800c4
int id empty_view_for_bottom 0x7f0800c5
int id end 0x7f0800c6
int id end_padder 0x7f0800c7
int id error_bg 0x7f0800c8
int id error_icon 0x7f0800c9
int id error_tips 0x7f0800ca
int id error_tips_layout 0x7f0800cb
int id evaluate_complete_layout 0x7f0800cc
int id expand_activities_button 0x7f0800cd
int id expanded_menu 0x7f0800ce
int id expert_accept 0x7f0800cf
int id expert_date_card 0x7f0800d0
int id expert_des 0x7f0800d1
int id expert_icon 0x7f0800d2
int id expert_name 0x7f0800d3
int id expert_refuse 0x7f0800d4
int id expert_wait 0x7f0800d5
int id favoriteIcon 0x7f0800d6
int id feedback 0x7f0800d7
int id fill 0x7f0800d8
int id fill_horizontal 0x7f0800d9
int id fill_vertical 0x7f0800da
int id fitBottomStart 0x7f0800db
int id fitCenter 0x7f0800dc
int id fitEnd 0x7f0800dd
int id fitStart 0x7f0800de
int id fitXY 0x7f0800df
int id fit_center 0x7f0800e0
int id fit_end 0x7f0800e1
int id fit_start 0x7f0800e2
int id fit_xy 0x7f0800e3
int id flash_layout 0x7f0800e4
int id focusCrop 0x7f0800e5
int id forever 0x7f0800e6
int id gif 0x7f0800e7
int id glide_custom_view_target_tag 0x7f0800e8
int id gridGallery 0x7f0800e9
int id grid_item_image 0x7f0800ea
int id grid_item_subscript 0x7f0800eb
int id grid_item_title 0x7f0800ec
int id group_divider 0x7f0800ed
int id guide_title 0x7f0800ee
int id h_chat_name 0x7f0800ef
int id h_chat_time 0x7f0800f0
int id h_icon 0x7f0800f1
int id hand_up 0x7f0800f2
int id hang_up 0x7f0800f3
int id hh_audio_view 0x7f0800f4
int id hh_audio_wave 0x7f0800f5
int id hh_buy_service_card 0x7f0800f6
int id hh_camera_closed_tips 0x7f0800f7
int id hh_camera_open_icon 0x7f0800f8
int id hh_camera_open_tips 0x7f0800f9
int id hh_card_bottom_name 0x7f0800fa
int id hh_certificate_close 0x7f0800fb
int id hh_change_doctor 0x7f0800fc
int id hh_chat_tip 0x7f0800fd
int id hh_close_certificate 0x7f0800fe
int id hh_departInfo 0x7f0800ff
int id hh_doctor_certificate 0x7f080100
int id hh_doctor_render 0x7f080101
int id hh_expert_info 0x7f080102
int id hh_hang_up 0x7f080103
int id hh_hospital 0x7f080104
int id hh_icon 0x7f080105
int id hh_loading 0x7f080106
int id hh_loading_bg 0x7f080107
int id hh_loading_image 0x7f080108
int id hh_loading_state_layout 0x7f080109
int id hh_local_preview 0x7f08010a
int id hh_main_content 0x7f08010b
int id hh_multi_av_item_surface 0x7f08010c
int id hh_multi_hangup_des 0x7f08010d
int id hh_multi_hangup_parent 0x7f08010e
int id hh_multi_loading_parent 0x7f08010f
int id hh_name 0x7f080110
int id hh_open_camera_layout 0x7f080111
int id hh_over_hearer 0x7f080112
int id hh_progress 0x7f080113
int id hh_rts_bottom_layout 0x7f080114
int id hh_self_audio_view 0x7f080115
int id hh_state_text 0x7f080116
int id hh_submit_btn 0x7f080117
int id hh_text_state_layout 0x7f080118
int id hh_tv_showJob 0x7f080119
int id hh_user_icon 0x7f08011a
int id hh_video_preview 0x7f08011b
int id hh_watermark_image 0x7f08011c
int id hint 0x7f08011d
int id home 0x7f08011e
int id homeAsUp 0x7f08011f
int id horizontal 0x7f080120
int id hour 0x7f080121
int id hp_buy_btn 0x7f080122
int id hp_buy_tips 0x7f080123
int id hp_card_buy_btn 0x7f080124
int id hp_count 0x7f080125
int id hp_item_content 0x7f080126
int id hp_toolbar_top 0x7f080127
int id hp_vip_card_title 0x7f080128
int id hp_vip_item 0x7f080129
int id icon 0x7f08012a
int id icon_group 0x7f08012b
int id id_card 0x7f08012c
int id ifRoom 0x7f08012d
int id image 0x7f08012e
int id image_view 0x7f08012f
int id imgNoMedia 0x7f080130
int id imgQueue 0x7f080131
int id imgQueueMask 0x7f080132
int id info 0x7f080133
int id inputView 0x7f080134
int id inside 0x7f080135
int id italic 0x7f080136
int id item 0x7f080137
int id itemBadge 0x7f080138
int id itemDot 0x7f080139
int id item_icon 0x7f08013a
int id item_name 0x7f08013b
int id item_touch_helper_previous_elevation 0x7f08013c
int id iv_qr 0x7f08013d
int id job_icon_layout 0x7f08013e
int id large_size_preview 0x7f08013f
int id left 0x7f080140
int id leftLayout 0x7f080141
int id line 0x7f080142
int id line1 0x7f080143
int id line3 0x7f080144
int id lineup_ad 0x7f080145
int id lineup_tips 0x7f080146
int id listMode 0x7f080147
int id list_item 0x7f080148
int id listview 0x7f080149
int id ll_title_bar 0x7f08014a
int id loading 0x7f08014b
int id logs 0x7f08014c
int id main 0x7f08014d
int id main_content 0x7f08014e
int id matrix 0x7f08014f
int id media_actions 0x7f080150
int id media_thumbnail 0x7f080151
int id members 0x7f080152
int id menu 0x7f080153
int id message 0x7f080154
int id midBTN 0x7f080155
int id middle 0x7f080156
int id min 0x7f080157
int id month 0x7f080158
int id multi_call_line 0x7f080159
int id multi_layout 0x7f08015a
int id multiply 0x7f08015b
int id name 0x7f08015c
int id name_text 0x7f08015d
int id never 0x7f08015e
int id nick_name 0x7f08015f
int id none 0x7f080160
int id normal 0x7f080161
int id notificationLayout 0x7f080162
int id notification_background 0x7f080163
int id notification_main_column 0x7f080164
int id notification_main_column_container 0x7f080165
int id notify 0x7f080166
int id number 0x7f080167
int id number_content 0x7f080168
int id open_result 0x7f080169
int id options1 0x7f08016a
int id options2 0x7f08016b
int id options3 0x7f08016c
int id optionspicker 0x7f08016d
int id original 0x7f08016e
int id originalLayout 0x7f08016f
int id outmost_container 0x7f080170
int id outside 0x7f080171
int id pager 0x7f080172
int id parentPanel 0x7f080173
int id phone 0x7f080174
int id photo_full_image 0x7f080175
int id photo_full_progress 0x7f080176
int id photos 0x7f080177
int id photos_layout 0x7f080178
int id pivot 0x7f080179
int id pop_bg 0x7f08017a
int id preview_layout 0x7f08017b
int id progress 0x7f08017c
int id progressBar 0x7f08017d
int id progress_circular 0x7f08017e
int id progress_horizontal 0x7f08017f
int id protocol_tips 0x7f080180
int id qr_layout 0x7f080181
int id query_page 0x7f080182
int id question 0x7f080183
int id radio 0x7f080184
int id rating 0x7f080185
int id ratingbar 0x7f080186
int id recycler 0x7f080187
int id recyclerview 0x7f080188
int id refresh 0x7f080189
int id refuse 0x7f08018a
int id result 0x7f08018b
int id right 0x7f08018c
int id rightLayout 0x7f08018d
int id right_icon 0x7f08018e
int id right_side 0x7f08018f
int id rl_notification 0x7f080190
int id root 0x7f080191
int id rotate 0x7f080192
int id rv_topbar 0x7f080193
int id save_btn 0x7f080194
int id screen 0x7f080195
int id scrollIndicatorDown 0x7f080196
int id scrollIndicatorUp 0x7f080197
int id scrollView 0x7f080198
int id search_badge 0x7f080199
int id search_bar 0x7f08019a
int id search_button 0x7f08019b
int id search_close_btn 0x7f08019c
int id search_edit_frame 0x7f08019d
int id search_go_btn 0x7f08019e
int id search_mag_icon 0x7f08019f
int id search_plate 0x7f0801a0
int id search_src_text 0x7f0801a1
int id search_voice_btn 0x7f0801a2
int id second 0x7f0801a3
int id select 0x7f0801a4
int id select_dialog_listview 0x7f0801a5
int id select_title 0x7f0801a6
int id selected_album 0x7f0801a7
int id separator 0x7f0801a8
int id service_card 0x7f0801a9
int id set_priority 0x7f0801aa
int id sex_layout 0x7f0801ab
int id sex_text 0x7f0801ac
int id shortcut 0x7f0801ad
int id showCustom 0x7f0801ae
int id showHome 0x7f0801af
int id showJob 0x7f0801b0
int id showTitle 0x7f0801b1
int id showTools 0x7f0801b2
int id sideBarButtonsLayout 0x7f0801b3
int id sideBarCloseLayout 0x7f0801b4
int id sideBarFavoriteLayout 0x7f0801b5
int id sideBarHomeLayout 0x7f0801b6
int id sideBarOpenOrCloseIV 0x7f0801b7
int id sideBarOpenOrCloseLayout 0x7f0801b8
int id sideBarOpenOrCloseTipIV 0x7f0801b9
int id sideBarReFreshLayout 0x7f0801ba
int id sideBarShareLayout 0x7f0801bb
int id size 0x7f0801bc
int id spacer 0x7f0801bd
int id split_action_bar 0x7f0801be
int id src_atop 0x7f0801bf
int id src_in 0x7f0801c0
int id src_over 0x7f0801c1
int id start 0x7f0801c2
int id start_manage 0x7f0801c3
int id status_bar_latest_event_content 0x7f0801c4
int id status_bar_view 0x7f0801c5
int id status_layout 0x7f0801c6
int id sub_title 0x7f0801c7
int id submenuarrow 0x7f0801c8
int id submit_area 0x7f0801c9
int id submit_btn 0x7f0801ca
int id summary 0x7f0801cb
int id sure 0x7f0801cc
int id switch_layout 0x7f0801cd
int id system_tips 0x7f0801ce
int id tab0 0x7f0801cf
int id tab1 0x7f0801d0
int id tab2 0x7f0801d1
int id tab3 0x7f0801d2
int id tabIV 0x7f0801d3
int id tabMode 0x7f0801d4
int id tabTV 0x7f0801d5
int id tag_accessibility_actions 0x7f0801d6
int id tag_accessibility_clickable_spans 0x7f0801d7
int id tag_accessibility_heading 0x7f0801d8
int id tag_accessibility_pane_title 0x7f0801d9
int id tag_screen_reader_focusable 0x7f0801da
int id tag_transition_group 0x7f0801db
int id tag_unhandled_key_event_manager 0x7f0801dc
int id tag_unhandled_key_listeners 0x7f0801dd
int id text 0x7f0801de
int id text2 0x7f0801df
int id textSpacerNoButtons 0x7f0801e0
int id textSpacerNoTitle 0x7f0801e1
int id text_bar 0x7f0801e2
int id thanks_tick 0x7f0801e3
int id time 0x7f0801e4
int id time_label 0x7f0801e5
int id timepicker 0x7f0801e6
int id tips 0x7f0801e7
int id title 0x7f0801e8
int id titleBtn 0x7f0801e9
int id titleDividerNoCustom 0x7f0801ea
int id title_template 0x7f0801eb
int id toolbar 0x7f0801ec
int id toolbar_layout 0x7f0801ed
int id tools 0x7f0801ee
int id top 0x7f0801ef
int id topPanel 0x7f0801f0
int id top_layout 0x7f0801f1
int id top_toolbar 0x7f0801f2
int id tvTitle 0x7f0801f3
int id tvTitleText 0x7f0801f4
int id tv_qr_tip 0x7f0801f5
int id uniform 0x7f0801f6
int id up 0x7f0801f7
int id upload 0x7f0801f8
int id useLogo 0x7f0801f9
int id user 0x7f0801fa
int id user_info 0x7f0801fb
int id vertical 0x7f0801fc
int id video 0x7f0801fd
int id video_card 0x7f0801fe
int id video_duration 0x7f0801ff
int id video_icon 0x7f080200
int id video_layout 0x7f080201
int id video_play_button 0x7f080202
int id view 0x7f080203
int id view_pager 0x7f080204
int id vip_card 0x7f080205
int id vip_exp 0x7f080206
int id wait 0x7f080207
int id watermark 0x7f080208
int id webView 0x7f080209
int id webview 0x7f08020a
int id withText 0x7f08020b
int id wrap_content 0x7f08020c
int id year 0x7f08020d
int integer abc_config_activityDefaultDur 0x7f090000
int integer abc_config_activityShortDur 0x7f090001
int integer animation_default_duration 0x7f090002
int integer cancel_button_image_alpha 0x7f090003
int integer config_tooltipAnimTime 0x7f090004
int integer status_bar_notification_info_maxnum 0x7f090005
int layout abc_action_bar_title_item 0x7f0a0000
int layout abc_action_bar_up_container 0x7f0a0001
int layout abc_action_menu_item_layout 0x7f0a0002
int layout abc_action_menu_layout 0x7f0a0003
int layout abc_action_mode_bar 0x7f0a0004
int layout abc_action_mode_close_item_material 0x7f0a0005
int layout abc_activity_chooser_view 0x7f0a0006
int layout abc_activity_chooser_view_list_item 0x7f0a0007
int layout abc_alert_dialog_button_bar_material 0x7f0a0008
int layout abc_alert_dialog_material 0x7f0a0009
int layout abc_alert_dialog_title_material 0x7f0a000a
int layout abc_cascading_menu_item_layout 0x7f0a000b
int layout abc_dialog_title_material 0x7f0a000c
int layout abc_expanded_menu_layout 0x7f0a000d
int layout abc_list_menu_item_checkbox 0x7f0a000e
int layout abc_list_menu_item_icon 0x7f0a000f
int layout abc_list_menu_item_layout 0x7f0a0010
int layout abc_list_menu_item_radio 0x7f0a0011
int layout abc_popup_menu_header_item_layout 0x7f0a0012
int layout abc_popup_menu_item_layout 0x7f0a0013
int layout abc_screen_content_include 0x7f0a0014
int layout abc_screen_simple 0x7f0a0015
int layout abc_screen_simple_overlay_action_mode 0x7f0a0016
int layout abc_screen_toolbar 0x7f0a0017
int layout abc_search_dropdown_item_icons_2line 0x7f0a0018
int layout abc_search_view 0x7f0a0019
int layout abc_select_dialog_material 0x7f0a001a
int layout abc_tooltip 0x7f0a001b
int layout activity_hh_activate 0x7f0a001c
int layout activity_hh_avchat_layout 0x7f0a001d
int layout activity_hh_browser_layout 0x7f0a001e
int layout activity_hh_create_rx_layout 0x7f0a001f
int layout activity_hh_drug_update_count_layout 0x7f0a0020
int layout activity_hh_home_layout 0x7f0a0021
int layout activity_hh_member_update_layout 0x7f0a0022
int layout activity_hh_multi_avchat_layout 0x7f0a0023
int layout activity_hh_photo_browser_layout 0x7f0a0024
int layout activity_hh_real_name_layout 0x7f0a0025
int layout activity_hh_setting_layout 0x7f0a0026
int layout activity_hh_upload_list_layout 0x7f0a0027
int layout activity_hh_video_layout 0x7f0a0028
int layout activity_matisse 0x7f0a0029
int layout activity_media_preview 0x7f0a002a
int layout ad_dcloud_main 0x7f0a002b
int layout ad_dcloud_splash 0x7f0a002c
int layout album_list_item 0x7f0a002d
int layout custom_dialog 0x7f0a002e
int layout dcloud_activity_main_market 0x7f0a002f
int layout dcloud_custom_alert_dialog_layout 0x7f0a0030
int layout dcloud_custom_notification 0x7f0a0031
int layout dcloud_custom_notification_dark 0x7f0a0032
int layout dcloud_custom_notification_mi 0x7f0a0033
int layout dcloud_custom_notification_transparent 0x7f0a0034
int layout dcloud_custom_notification_white 0x7f0a0035
int layout dcloud_dialog 0x7f0a0036
int layout dcloud_image_pick_gallery 0x7f0a0037
int layout dcloud_image_pick_gallery_item 0x7f0a0038
int layout dcloud_loadingview 0x7f0a0039
int layout dcloud_main_test_activity 0x7f0a003a
int layout dcloud_market_fragment_base 0x7f0a003b
int layout dcloud_record_address 0x7f0a003c
int layout dcloud_record_default 0x7f0a003d
int layout dcloud_shortcut_permission_guide_layout 0x7f0a003e
int layout dcloud_snow_black_progress 0x7f0a003f
int layout dcloud_snow_white_progress 0x7f0a0040
int layout dcloud_streamapp_custom_dialog_layout 0x7f0a0041
int layout dcloud_tabbar_item 0x7f0a0042
int layout dcloud_tabbar_mid 0x7f0a0043
int layout dcloud_weex_debug_progress 0x7f0a0044
int layout fragment_media_selection 0x7f0a0045
int layout fragment_preview_item 0x7f0a0046
int layout hh_av_upload_photo_layout 0x7f0a0047
int layout hh_avchat_audio_speaker_view 0x7f0a0048
int layout hh_bottom_sheet_list 0x7f0a0049
int layout hh_bottom_sheet_list_item 0x7f0a004a
int layout hh_bottom_sheet_list_item_mark 0x7f0a004b
int layout hh_call_dialog_layout 0x7f0a004c
int layout hh_call_home_dialog_layout 0x7f0a004d
int layout hh_call_member_item_layout 0x7f0a004e
int layout hh_calling_layout 0x7f0a004f
int layout hh_card_bottom_layout 0x7f0a0050
int layout hh_card_buy_service_layout 0x7f0a0051
int layout hh_card_drug_layout 0x7f0a0052
int layout hh_card_expert_date_layout 0x7f0a0053
int layout hh_card_expert_info_layout 0x7f0a0054
int layout hh_card_list_buy_service_layout 0x7f0a0055
int layout hh_card_list_drug_layout 0x7f0a0056
int layout hh_card_list_expert_date_layout 0x7f0a0057
int layout hh_card_list_expert_info_layout 0x7f0a0058
int layout hh_card_list_summary_layout 0x7f0a0059
int layout hh_card_list_third_service_layout 0x7f0a005a
int layout hh_card_list_video_layout 0x7f0a005b
int layout hh_card_list_vip_success_layout 0x7f0a005c
int layout hh_card_summary_layout 0x7f0a005d
int layout hh_card_third_service_layout 0x7f0a005e
int layout hh_card_video_layout 0x7f0a005f
int layout hh_card_vip_success_item_layout 0x7f0a0060
int layout hh_card_vip_success_layout 0x7f0a0061
int layout hh_certificate_layout 0x7f0a0062
int layout hh_chat_mobile_controller_layout 0x7f0a0063
int layout hh_chat_tablet_controller_layout 0x7f0a0064
int layout hh_chat_tip_layout 0x7f0a0065
int layout hh_chat_tools_layout 0x7f0a0066
int layout hh_chat_tv_controller_layout 0x7f0a0067
int layout hh_chat_video_layout 0x7f0a0068
int layout hh_comment_evaluate_complete 0x7f0a0069
int layout hh_comment_feedback_layout 0x7f0a006a
int layout hh_comment_header_view 0x7f0a006b
int layout hh_comment_item_view 0x7f0a006c
int layout hh_comment_question_view 0x7f0a006d
int layout hh_comment_rating_view 0x7f0a006e
int layout hh_comment_result_layout 0x7f0a006f
int layout hh_doctor_calling_layout 0x7f0a0070
int layout hh_doctor_comment_layout 0x7f0a0071
int layout hh_drug_item_info_layout 0x7f0a0072
int layout hh_expert_calling_layout 0x7f0a0073
int layout hh_include_pickerview_topbar 0x7f0a0074
int layout hh_layout_basepickerview 0x7f0a0075
int layout hh_line_up_calling_layout 0x7f0a0076
int layout hh_list_section_layout 0x7f0a0077
int layout hh_multi_av_hangup_layout 0x7f0a0078
int layout hh_multi_av_item_layout 0x7f0a0079
int layout hh_multi_av_waiting_layout 0x7f0a007a
int layout hh_numbercode_input 0x7f0a007b
int layout hh_numbercode_item 0x7f0a007c
int layout hh_pickerview_options 0x7f0a007d
int layout hh_pickerview_time 0x7f0a007e
int layout hh_rts_window_layout 0x7f0a007f
int layout hh_sdk_auth_dialog_layout 0x7f0a0080
int layout hh_setting_item_arrow_view 0x7f0a0081
int layout hh_setting_item_read_layout 0x7f0a0082
int layout hh_system_toolbar_layout 0x7f0a0083
int layout hh_tips_dialog_layout 0x7f0a0084
int layout hh_upload_item_layout 0x7f0a0085
int layout hhui_bottom_sheet_grid 0x7f0a0086
int layout hhui_bottom_sheet_grid_item 0x7f0a0087
int layout hhui_bottom_sheet_grid_item_subscript 0x7f0a0088
int layout hp_card_title_layout 0x7f0a0089
int layout hp_photos_item_layout 0x7f0a008a
int layout media_grid_content 0x7f0a008b
int layout media_grid_item 0x7f0a008c
int layout notification_action 0x7f0a008d
int layout notification_action_tombstone 0x7f0a008e
int layout notification_media_action 0x7f0a008f
int layout notification_media_cancel_action 0x7f0a0090
int layout notification_template_big_media 0x7f0a0091
int layout notification_template_big_media_custom 0x7f0a0092
int layout notification_template_big_media_narrow 0x7f0a0093
int layout notification_template_big_media_narrow_custom 0x7f0a0094
int layout notification_template_custom_big 0x7f0a0095
int layout notification_template_icon_group 0x7f0a0096
int layout notification_template_lines_media 0x7f0a0097
int layout notification_template_media 0x7f0a0098
int layout notification_template_media_custom 0x7f0a0099
int layout notification_template_part_chronometer 0x7f0a009a
int layout notification_template_part_time 0x7f0a009b
int layout photo_capture_item 0x7f0a009c
int layout select_dialog_item_material 0x7f0a009d
int layout select_dialog_multichoice_material 0x7f0a009e
int layout select_dialog_singlechoice_material 0x7f0a009f
int layout side_bar_layout 0x7f0a00a0
int layout support_simple_spinner_dropdown_item 0x7f0a00a1
int layout webview_layout 0x7f0a00a2
int layout weex_recycler_layout 0x7f0a00a3
int menu hh_menu_close 0x7f0b0000
int menu hh_menu_home_user 0x7f0b0001
int plurals error_over_count 0x7f0c0000
int raw calling 0x7f0d0000
int raw hangup 0x7f0d0001
int string abc_action_bar_home_description 0x7f0e0000
int string abc_action_bar_up_description 0x7f0e0001
int string abc_action_menu_overflow_description 0x7f0e0002
int string abc_action_mode_done 0x7f0e0003
int string abc_activity_chooser_view_see_all 0x7f0e0004
int string abc_activitychooserview_choose_application 0x7f0e0005
int string abc_capital_off 0x7f0e0006
int string abc_capital_on 0x7f0e0007
int string abc_font_family_body_1_material 0x7f0e0008
int string abc_font_family_body_2_material 0x7f0e0009
int string abc_font_family_button_material 0x7f0e000a
int string abc_font_family_caption_material 0x7f0e000b
int string abc_font_family_display_1_material 0x7f0e000c
int string abc_font_family_display_2_material 0x7f0e000d
int string abc_font_family_display_3_material 0x7f0e000e
int string abc_font_family_display_4_material 0x7f0e000f
int string abc_font_family_headline_material 0x7f0e0010
int string abc_font_family_menu_material 0x7f0e0011
int string abc_font_family_subhead_material 0x7f0e0012
int string abc_font_family_title_material 0x7f0e0013
int string abc_menu_alt_shortcut_label 0x7f0e0014
int string abc_menu_ctrl_shortcut_label 0x7f0e0015
int string abc_menu_delete_shortcut_label 0x7f0e0016
int string abc_menu_enter_shortcut_label 0x7f0e0017
int string abc_menu_function_shortcut_label 0x7f0e0018
int string abc_menu_meta_shortcut_label 0x7f0e0019
int string abc_menu_shift_shortcut_label 0x7f0e001a
int string abc_menu_space_shortcut_label 0x7f0e001b
int string abc_menu_sym_shortcut_label 0x7f0e001c
int string abc_prepend_shortcut_label 0x7f0e001d
int string abc_search_hint 0x7f0e001e
int string abc_searchview_description_clear 0x7f0e001f
int string abc_searchview_description_query 0x7f0e0020
int string abc_searchview_description_search 0x7f0e0021
int string abc_searchview_description_submit 0x7f0e0022
int string abc_searchview_description_voice 0x7f0e0023
int string abc_shareactionprovider_share_with 0x7f0e0024
int string abc_shareactionprovider_share_with_application 0x7f0e0025
int string abc_toolbar_collapse_description 0x7f0e0026
int string album_name_all 0x7f0e0027
int string app_name 0x7f0e0028
int string button_apply 0x7f0e0029
int string button_apply_default 0x7f0e002a
int string button_back 0x7f0e002b
int string button_ok 0x7f0e002c
int string button_original 0x7f0e002d
int string button_preview 0x7f0e002e
int string button_sure 0x7f0e002f
int string button_sure_default 0x7f0e0030
int string dcloud_choose_an_action 0x7f0e0031
int string dcloud_gallery_app_name 0x7f0e0032
int string dcloud_package_name_base_application 0x7f0e0033
int string dcloud_permission_read_phone_state_message 0x7f0e0034
int string dcloud_permission_write_external_storage_message 0x7f0e0035
int string dcloud_privacy_prompt_accept_button_text 0x7f0e0036
int string dcloud_privacy_prompt_message 0x7f0e0037
int string dcloud_privacy_prompt_title 0x7f0e0038
int string dcloud_sync_debug_message 0x7f0e0039
int string empty_text 0x7f0e003a
int string error_file_type 0x7f0e003b
int string error_no_video_activity 0x7f0e003c
int string error_over_count 0x7f0e003d
int string error_over_count_default 0x7f0e003e
int string error_over_original_count 0x7f0e003f
int string error_over_original_size 0x7f0e0040
int string error_over_quality 0x7f0e0041
int string error_type_conflict 0x7f0e0042
int string error_under_quality 0x7f0e0043
int string hh_activate_length_tip 0x7f0e0044
int string hh_activate_success 0x7f0e0045
int string hh_activate_title 0x7f0e0046
int string hh_alert_change_doctor_fail_tips 0x7f0e0047
int string hh_alert_change_doctor_tips 0x7f0e0048
int string hh_alert_edit_confirm 0x7f0e0049
int string hh_alert_edit_member 0x7f0e004a
int string hh_alert_i_known 0x7f0e004b
int string hh_audio_record_error 0x7f0e004c
int string hh_auth_apply_btn 0x7f0e004d
int string hh_auth_dialog_content 0x7f0e004e
int string hh_auth_dialog_title 0x7f0e004f
int string hh_auth_refuse_btn 0x7f0e0050
int string hh_av_accept_btn 0x7f0e0051
int string hh_av_accept_show_hint 0x7f0e0052
int string hh_av_broke 0x7f0e0053
int string hh_av_calling_busy 0x7f0e0054
int string hh_av_change_camera 0x7f0e0055
int string hh_av_change_doctor 0x7f0e0056
int string hh_av_chat_error_tips 0x7f0e0057
int string hh_av_hangup_btn 0x7f0e0058
int string hh_av_no_permission 0x7f0e0059
int string hh_av_other_error 0x7f0e005a
int string hh_av_other_platform 0x7f0e005b
int string hh_av_refuse_btn 0x7f0e005c
int string hh_av_remote_cancel 0x7f0e005d
int string hh_av_switch_audio_model 0x7f0e005e
int string hh_av_waiting_accept 0x7f0e005f
int string hh_av_waiting_connect 0x7f0e0060
int string hh_call_dialog_title 0x7f0e0061
int string hh_call_protocol_alert 0x7f0e0062
int string hh_call_protocol_str 0x7f0e0063
int string hh_cancel 0x7f0e0064
int string hh_card_expert_date_name 0x7f0e0065
int string hh_card_expert_date_time 0x7f0e0066
int string hh_card_expert_success 0x7f0e0067
int string hh_card_expert_title 0x7f0e0068
int string hh_carton_tips 0x7f0e0069
int string hh_change_doctor_ok 0x7f0e006a
int string hh_comment_anonymous_submit 0x7f0e006b
int string hh_comment_button_commit 0x7f0e006c
int string hh_comment_change_doctor 0x7f0e006d
int string hh_comment_complaint 0x7f0e006e
int string hh_comment_feedback_content_hint 0x7f0e006f
int string hh_comment_feedback_phone_hint 0x7f0e0070
int string hh_comment_main_need 0x7f0e0071
int string hh_comment_main_not_need 0x7f0e0072
int string hh_comment_main_tip 0x7f0e0073
int string hh_comment_main_title 0x7f0e0074
int string hh_comment_other_say 0x7f0e0075
int string hh_comment_other_want_say 0x7f0e0076
int string hh_comment_result_bad 0x7f0e0077
int string hh_comment_satisfaction_evaluation 0x7f0e0078
int string hh_comment_satisfaction_title 0x7f0e0079
int string hh_comment_thanks_for_comment 0x7f0e007a
int string hh_comment_thanks_you 0x7f0e007b
int string hh_comment_title 0x7f0e007c
int string hh_dev_tips 0x7f0e007d
int string hh_doctor_job_age 0x7f0e007e
int string hh_drug_add_count_bottom_tips 0x7f0e007f
int string hh_drug_add_count_btn_title 0x7f0e0080
int string hh_drug_add_count_sub_tips 0x7f0e0081
int string hh_drug_add_count_sub_tips_choose 0x7f0e0082
int string hh_drug_add_count_tips 0x7f0e0083
int string hh_drug_add_count_title 0x7f0e0084
int string hh_error_tip_chat_connect_over_time 0x7f0e0085
int string hh_expert_video_card_tips 0x7f0e0086
int string hh_feedback_result_bad 0x7f0e0087
int string hh_home_title 0x7f0e0088
int string hh_member_info_title 0x7f0e0089
int string hh_multi_cancel_tips 0x7f0e008a
int string hh_multi_hearer_state_title_busy 0x7f0e008b
int string hh_multi_hearer_state_title_busy_tips 0x7f0e008c
int string hh_multi_hearer_state_title_leave 0x7f0e008d
int string hh_multi_hearer_state_title_leave_tips 0x7f0e008e
int string hh_multi_incoming_title 0x7f0e008f
int string hh_multi_wait_doctor_join 0x7f0e0090
int string hh_permission_alert_setting 0x7f0e0091
int string hh_permission_tips 0x7f0e0092
int string hh_photo_upload_success 0x7f0e0093
int string hh_real_name_act_title 0x7f0e0094
int string hh_rts_error 0x7f0e0095
int string hh_rts_loading_failed 0x7f0e0096
int string hh_rts_loading_text 0x7f0e0097
int string hh_rx_create_title 0x7f0e0098
int string hh_sdk_back 0x7f0e0099
int string hh_sdk_doctor_busy_tips 0x7f0e009a
int string hh_sdk_menu_close 0x7f0e009b
int string hh_sdk_multi_call_self_tips 0x7f0e009c
int string hh_sdk_ok 0x7f0e009d
int string hh_sdk_pay_success_tips 0x7f0e009e
int string hh_sdk_ssl_alert_button_cancel 0x7f0e009f
int string hh_sdk_ssl_alert_button_ok 0x7f0e00a0
int string hh_sdk_ssl_verify_failed 0x7f0e00a1
int string hh_sdk_upload_success_tips 0x7f0e00a2
int string hh_sdk_upload_tips 0x7f0e00a3
int string hh_setting_title 0x7f0e00a4
int string hh_upload_image_path_error 0x7f0e00a5
int string hh_upload_img_tip 0x7f0e00a6
int string hh_video_change_doctor_title 0x7f0e00a7
int string hh_video_chat_camera_closed 0x7f0e00a8
int string hh_video_chat_close_camera 0x7f0e00a9
int string hh_video_chat_open_camera 0x7f0e00aa
int string hh_video_comment_complaint_empty 0x7f0e00ab
int string hh_video_connect_str 0x7f0e00ac
int string hh_video_transfer_call_text 0x7f0e00ad
int string hh_video_upload_error 0x7f0e00ae
int string hp_add_member_and_call 0x7f0e00af
int string hp_add_member_birthday_hint 0x7f0e00b0
int string hp_add_member_birthday_title 0x7f0e00b1
int string hp_add_member_name_hint 0x7f0e00b2
int string hp_add_member_name_title 0x7f0e00b3
int string hp_add_member_relation_hint 0x7f0e00b4
int string hp_add_member_sex_hint 0x7f0e00b5
int string hp_add_member_sex_title 0x7f0e00b6
int string hp_address_title 0x7f0e00b7
int string hp_call_alert_multi_tips 0x7f0e00b8
int string hp_call_permission_tips 0x7f0e00b9
int string hp_call_select_member_title 0x7f0e00ba
int string hp_call_wait_str 0x7f0e00bb
int string hp_card_detail_text 0x7f0e00bc
int string hp_card_drug_btn 0x7f0e00bd
int string hp_card_drug_but_btn_order 0x7f0e00be
int string hp_card_drug_buy_btn 0x7f0e00bf
int string hp_card_drug_name_title 0x7f0e00c0
int string hp_card_drug_title 0x7f0e00c1
int string hp_card_summary_name_title 0x7f0e00c2
int string hp_card_summary_time_title 0x7f0e00c3
int string hp_doctor_job_title 0x7f0e00c4
int string hp_drug_buy_success_tips 0x7f0e00c5
int string hp_flash_title 0x7f0e00c6
int string hp_home_call_text 0x7f0e00c7
int string hp_invitation_auto_set_hint 0x7f0e00c8
int string hp_line_up_timeout 0x7f0e00c9
int string hp_local_phone_call 0x7f0e00ca
int string hp_member_ral 0x7f0e00cb
int string hp_multi_error_tips 0x7f0e00cc
int string hp_prescription_tip 0x7f0e00cd
int string hp_real_id_hint 0x7f0e00ce
int string hp_real_id_title 0x7f0e00cf
int string hp_real_name_account_name 0x7f0e00d0
int string hp_real_name_bottom_tip 0x7f0e00d1
int string hp_real_name_hint 0x7f0e00d2
int string hp_real_name_tips 0x7f0e00d3
int string hp_real_name_title 0x7f0e00d4
int string hp_real_phone_hint 0x7f0e00d5
int string hp_real_phone_title 0x7f0e00d6
int string hp_save 0x7f0e00d7
int string hp_video_camera_title 0x7f0e00d8
int string hp_vip_card_des 0x7f0e00d9
int string in_package 0x7f0e00da
int string net_poor_tip 0x7f0e00db
int string photo_grid_capture 0x7f0e00dc
int string pickerview_cancel 0x7f0e00dd
int string pickerview_day 0x7f0e00de
int string pickerview_hours 0x7f0e00df
int string pickerview_minutes 0x7f0e00e0
int string pickerview_month 0x7f0e00e1
int string pickerview_seconds 0x7f0e00e2
int string pickerview_submit 0x7f0e00e3
int string pickerview_year 0x7f0e00e4
int string search_menu_title 0x7f0e00e5
int string status_bar_notification_info_overflow 0x7f0e00e6
int string stream_my 0x7f0e00e7
int style ActionSheetStyleIOS6 0x7f0f0000
int style ActionSheetStyleIOS7 0x7f0f0001
int style AlertDialog_AppCompat 0x7f0f0002
int style AlertDialog_AppCompat_Light 0x7f0f0003
int style Animation_AppCompat_Dialog 0x7f0f0004
int style Animation_AppCompat_DropDownUp 0x7f0f0005
int style Animation_AppCompat_Tooltip 0x7f0f0006
int style AppTheme 0x7f0f0007
int style Base_AlertDialog_AppCompat 0x7f0f0008
int style Base_AlertDialog_AppCompat_Light 0x7f0f0009
int style Base_Animation_AppCompat_Dialog 0x7f0f000a
int style Base_Animation_AppCompat_DropDownUp 0x7f0f000b
int style Base_Animation_AppCompat_Tooltip 0x7f0f000c
int style Base_DialogWindowTitle_AppCompat 0x7f0f000d
int style Base_DialogWindowTitleBackground_AppCompat 0x7f0f000e
int style Base_TextAppearance_AppCompat 0x7f0f000f
int style Base_TextAppearance_AppCompat_Body1 0x7f0f0010
int style Base_TextAppearance_AppCompat_Body2 0x7f0f0011
int style Base_TextAppearance_AppCompat_Button 0x7f0f0012
int style Base_TextAppearance_AppCompat_Caption 0x7f0f0013
int style Base_TextAppearance_AppCompat_Display1 0x7f0f0014
int style Base_TextAppearance_AppCompat_Display2 0x7f0f0015
int style Base_TextAppearance_AppCompat_Display3 0x7f0f0016
int style Base_TextAppearance_AppCompat_Display4 0x7f0f0017
int style Base_TextAppearance_AppCompat_Headline 0x7f0f0018
int style Base_TextAppearance_AppCompat_Inverse 0x7f0f0019
int style Base_TextAppearance_AppCompat_Large 0x7f0f001a
int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f0f001b
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f001c
int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f001d
int style Base_TextAppearance_AppCompat_Medium 0x7f0f001e
int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f0f001f
int style Base_TextAppearance_AppCompat_Menu 0x7f0f0020
int style Base_TextAppearance_AppCompat_SearchResult 0x7f0f0021
int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f0022
int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f0f0023
int style Base_TextAppearance_AppCompat_Small 0x7f0f0024
int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f0f0025
int style Base_TextAppearance_AppCompat_Subhead 0x7f0f0026
int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f0f0027
int style Base_TextAppearance_AppCompat_Title 0x7f0f0028
int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f0f0029
int style Base_TextAppearance_AppCompat_Tooltip 0x7f0f002a
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f002b
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f002c
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f002d
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f002e
int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f002f
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f0030
int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f0031
int style Base_TextAppearance_AppCompat_Widget_Button 0x7f0f0032
int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f0033
int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f0034
int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f0035
int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f0036
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f0037
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f0038
int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f0039
int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f0f003a
int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f003b
int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f003c
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f003d
int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f003e
int style Base_Theme_AppCompat 0x7f0f003f
int style Base_Theme_AppCompat_CompactMenu 0x7f0f0040
int style Base_Theme_AppCompat_Dialog 0x7f0f0041
int style Base_Theme_AppCompat_Dialog_Alert 0x7f0f0042
int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f0f0043
int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f0f0044
int style Base_Theme_AppCompat_DialogWhenLarge 0x7f0f0045
int style Base_Theme_AppCompat_Light 0x7f0f0046
int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f0f0047
int style Base_Theme_AppCompat_Light_Dialog 0x7f0f0048
int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f0f0049
int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f0f004a
int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f004b
int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f0f004c
int style Base_ThemeOverlay_AppCompat 0x7f0f004d
int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f0f004e
int style Base_ThemeOverlay_AppCompat_Dark 0x7f0f004f
int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f0050
int style Base_ThemeOverlay_AppCompat_Dialog 0x7f0f0051
int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f0052
int style Base_ThemeOverlay_AppCompat_Light 0x7f0f0053
int style Base_V21_Theme_AppCompat 0x7f0f0054
int style Base_V21_Theme_AppCompat_Dialog 0x7f0f0055
int style Base_V21_Theme_AppCompat_Light 0x7f0f0056
int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f0f0057
int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f0f0058
int style Base_V22_Theme_AppCompat 0x7f0f0059
int style Base_V22_Theme_AppCompat_Light 0x7f0f005a
int style Base_V23_Theme_AppCompat 0x7f0f005b
int style Base_V23_Theme_AppCompat_Light 0x7f0f005c
int style Base_V26_Theme_AppCompat 0x7f0f005d
int style Base_V26_Theme_AppCompat_Light 0x7f0f005e
int style Base_V26_Widget_AppCompat_Toolbar 0x7f0f005f
int style Base_V28_Theme_AppCompat 0x7f0f0060
int style Base_V28_Theme_AppCompat_Light 0x7f0f0061
int style Base_V7_Theme_AppCompat 0x7f0f0062
int style Base_V7_Theme_AppCompat_Dialog 0x7f0f0063
int style Base_V7_Theme_AppCompat_Light 0x7f0f0064
int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f0f0065
int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f0f0066
int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f0f0067
int style Base_V7_Widget_AppCompat_EditText 0x7f0f0068
int style Base_V7_Widget_AppCompat_Toolbar 0x7f0f0069
int style Base_Widget_AppCompat_ActionBar 0x7f0f006a
int style Base_Widget_AppCompat_ActionBar_Solid 0x7f0f006b
int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f0f006c
int style Base_Widget_AppCompat_ActionBar_TabText 0x7f0f006d
int style Base_Widget_AppCompat_ActionBar_TabView 0x7f0f006e
int style Base_Widget_AppCompat_ActionButton 0x7f0f006f
int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f0f0070
int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f0f0071
int style Base_Widget_AppCompat_ActionMode 0x7f0f0072
int style Base_Widget_AppCompat_ActivityChooserView 0x7f0f0073
int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f0f0074
int style Base_Widget_AppCompat_Button 0x7f0f0075
int style Base_Widget_AppCompat_Button_Borderless 0x7f0f0076
int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f0f0077
int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f0078
int style Base_Widget_AppCompat_Button_Colored 0x7f0f0079
int style Base_Widget_AppCompat_Button_Small 0x7f0f007a
int style Base_Widget_AppCompat_ButtonBar 0x7f0f007b
int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f007c
int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f0f007d
int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f0f007e
int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f0f007f
int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f0f0080
int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f0f0081
int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f0f0082
int style Base_Widget_AppCompat_EditText 0x7f0f0083
int style Base_Widget_AppCompat_ImageButton 0x7f0f0084
int style Base_Widget_AppCompat_Light_ActionBar 0x7f0f0085
int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f0f0086
int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f0087
int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f0f0088
int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f0089
int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f0f008a
int style Base_Widget_AppCompat_Light_PopupMenu 0x7f0f008b
int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f008c
int style Base_Widget_AppCompat_ListMenuView 0x7f0f008d
int style Base_Widget_AppCompat_ListPopupWindow 0x7f0f008e
int style Base_Widget_AppCompat_ListView 0x7f0f008f
int style Base_Widget_AppCompat_ListView_DropDown 0x7f0f0090
int style Base_Widget_AppCompat_ListView_Menu 0x7f0f0091
int style Base_Widget_AppCompat_PopupMenu 0x7f0f0092
int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f0f0093
int style Base_Widget_AppCompat_PopupWindow 0x7f0f0094
int style Base_Widget_AppCompat_ProgressBar 0x7f0f0095
int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f0f0096
int style Base_Widget_AppCompat_RatingBar 0x7f0f0097
int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f0f0098
int style Base_Widget_AppCompat_RatingBar_Small 0x7f0f0099
int style Base_Widget_AppCompat_SearchView 0x7f0f009a
int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f0f009b
int style Base_Widget_AppCompat_SeekBar 0x7f0f009c
int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f0f009d
int style Base_Widget_AppCompat_Spinner 0x7f0f009e
int style Base_Widget_AppCompat_Spinner_Underlined 0x7f0f009f
int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f0f00a0
int style Base_Widget_AppCompat_Toolbar 0x7f0f00a1
int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f00a2
int style DCloudTheme 0x7f0f00a3
int style DeviceDefault 0x7f0f00a4
int style DeviceDefault_Light 0x7f0f00a5
int style HH_Toolbar_Light 0x7f0f00a6
int style HHUI_AuthDialog 0x7f0f00a7
int style HHUI_BottomSheet 0x7f0f00a8
int style HHUI_Compat 0x7f0f00a9
int style HHUI_TipDialog 0x7f0f00aa
int style HHUI_Toolbar 0x7f0f00ab
int style HHUI_Toolbar_TitleText 0x7f0f00ac
int style HH_ChatTheme 0x7f0f00ad
int style HH_Normal_Theme 0x7f0f00ae
int style HH_PopupAnimation 0x7f0f00af
int style Matisse_Dracula 0x7f0f00b0
int style Matisse_Zhihu 0x7f0f00b1
int style NotificationText 0x7f0f00b2
int style NotificationText_Dark 0x7f0f00b3
int style NotificationTitle 0x7f0f00b4
int style NotificationTitle_Dark 0x7f0f00b5
int style OpenStreamAppTransferActivityTheme 0x7f0f00b6
int style Platform_AppCompat 0x7f0f00b7
int style Platform_AppCompat_Light 0x7f0f00b8
int style Platform_ThemeOverlay_AppCompat 0x7f0f00b9
int style Platform_ThemeOverlay_AppCompat_Dark 0x7f0f00ba
int style Platform_ThemeOverlay_AppCompat_Light 0x7f0f00bb
int style Platform_V21_AppCompat 0x7f0f00bc
int style Platform_V21_AppCompat_Light 0x7f0f00bd
int style Platform_V25_AppCompat 0x7f0f00be
int style Platform_V25_AppCompat_Light 0x7f0f00bf
int style Platform_Widget_AppCompat_Spinner 0x7f0f00c0
int style Popup_Dracula 0x7f0f00c1
int style Popup_Zhihu 0x7f0f00c2
int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f0f00c3
int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f0f00c4
int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f0f00c5
int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f0f00c6
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f0f00c7
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f0f00c8
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f0f00c9
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f0f00ca
int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f0f00cb
int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f0f00cc
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f0f00cd
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f0f00ce
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f0f00cf
int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f0f00d0
int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f0f00d1
int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f0f00d2
int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f0f00d3
int style TextAppearance_AppCompat 0x7f0f00d4
int style TextAppearance_AppCompat_Body1 0x7f0f00d5
int style TextAppearance_AppCompat_Body2 0x7f0f00d6
int style TextAppearance_AppCompat_Button 0x7f0f00d7
int style TextAppearance_AppCompat_Caption 0x7f0f00d8
int style TextAppearance_AppCompat_Display1 0x7f0f00d9
int style TextAppearance_AppCompat_Display2 0x7f0f00da
int style TextAppearance_AppCompat_Display3 0x7f0f00db
int style TextAppearance_AppCompat_Display4 0x7f0f00dc
int style TextAppearance_AppCompat_Headline 0x7f0f00dd
int style TextAppearance_AppCompat_Inverse 0x7f0f00de
int style TextAppearance_AppCompat_Large 0x7f0f00df
int style TextAppearance_AppCompat_Large_Inverse 0x7f0f00e0
int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f0f00e1
int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f0f00e2
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f0f00e3
int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f0f00e4
int style TextAppearance_AppCompat_Medium 0x7f0f00e5
int style TextAppearance_AppCompat_Medium_Inverse 0x7f0f00e6
int style TextAppearance_AppCompat_Menu 0x7f0f00e7
int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f0f00e8
int style TextAppearance_AppCompat_SearchResult_Title 0x7f0f00e9
int style TextAppearance_AppCompat_Small 0x7f0f00ea
int style TextAppearance_AppCompat_Small_Inverse 0x7f0f00eb
int style TextAppearance_AppCompat_Subhead 0x7f0f00ec
int style TextAppearance_AppCompat_Subhead_Inverse 0x7f0f00ed
int style TextAppearance_AppCompat_Title 0x7f0f00ee
int style TextAppearance_AppCompat_Title_Inverse 0x7f0f00ef
int style TextAppearance_AppCompat_Tooltip 0x7f0f00f0
int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f0f00f1
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f0f00f2
int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f0f00f3
int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f0f00f4
int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f0f00f5
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f0f00f6
int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f0f00f7
int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f0f00f8
int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f0f00f9
int style TextAppearance_AppCompat_Widget_Button 0x7f0f00fa
int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f0f00fb
int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f0f00fc
int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f0f00fd
int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f0f00fe
int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f0f00ff
int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f0f0100
int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f0f0101
int style TextAppearance_AppCompat_Widget_Switch 0x7f0f0102
int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f0f0103
int style TextAppearance_Compat_Notification 0x7f0f0104
int style TextAppearance_Compat_Notification_Info 0x7f0f0105
int style TextAppearance_Compat_Notification_Info_Media 0x7f0f0106
int style TextAppearance_Compat_Notification_Line2 0x7f0f0107
int style TextAppearance_Compat_Notification_Line2_Media 0x7f0f0108
int style TextAppearance_Compat_Notification_Media 0x7f0f0109
int style TextAppearance_Compat_Notification_Time 0x7f0f010a
int style TextAppearance_Compat_Notification_Time_Media 0x7f0f010b
int style TextAppearance_Compat_Notification_Title 0x7f0f010c
int style TextAppearance_Compat_Notification_Title_Media 0x7f0f010d
int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f0f010e
int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f0f010f
int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f0f0110
int style Theme_AppCompat 0x7f0f0111
int style Theme_AppCompat_CompactMenu 0x7f0f0112
int style Theme_AppCompat_DayNight 0x7f0f0113
int style Theme_AppCompat_DayNight_DarkActionBar 0x7f0f0114
int style Theme_AppCompat_DayNight_Dialog 0x7f0f0115
int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f0f0116
int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f0f0117
int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f0f0118
int style Theme_AppCompat_DayNight_NoActionBar 0x7f0f0119
int style Theme_AppCompat_Dialog 0x7f0f011a
int style Theme_AppCompat_Dialog_Alert 0x7f0f011b
int style Theme_AppCompat_Dialog_MinWidth 0x7f0f011c
int style Theme_AppCompat_DialogWhenLarge 0x7f0f011d
int style Theme_AppCompat_Light 0x7f0f011e
int style Theme_AppCompat_Light_DarkActionBar 0x7f0f011f
int style Theme_AppCompat_Light_Dialog 0x7f0f0120
int style Theme_AppCompat_Light_Dialog_Alert 0x7f0f0121
int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f0f0122
int style Theme_AppCompat_Light_DialogWhenLarge 0x7f0f0123
int style Theme_AppCompat_Light_NoActionBar 0x7f0f0124
int style Theme_AppCompat_NoActionBar 0x7f0f0125
int style ThemeNoTitleBar 0x7f0f0126
int style ThemeOverlay_AppCompat 0x7f0f0127
int style ThemeOverlay_AppCompat_ActionBar 0x7f0f0128
int style ThemeOverlay_AppCompat_Dark 0x7f0f0129
int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f0f012a
int style ThemeOverlay_AppCompat_Dialog 0x7f0f012b
int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f0f012c
int style ThemeOverlay_AppCompat_Light 0x7f0f012d
int style Toolbar_Dracula 0x7f0f012e
int style Toolbar_TitleText 0x7f0f012f
int style Toolbar_Zhihu 0x7f0f0130
int style TranslucentTheme 0x7f0f0131
int style Widget_AppCompat_ActionBar 0x7f0f0132
int style Widget_AppCompat_ActionBar_Solid 0x7f0f0133
int style Widget_AppCompat_ActionBar_TabBar 0x7f0f0134
int style Widget_AppCompat_ActionBar_TabText 0x7f0f0135
int style Widget_AppCompat_ActionBar_TabView 0x7f0f0136
int style Widget_AppCompat_ActionButton 0x7f0f0137
int style Widget_AppCompat_ActionButton_CloseMode 0x7f0f0138
int style Widget_AppCompat_ActionButton_Overflow 0x7f0f0139
int style Widget_AppCompat_ActionMode 0x7f0f013a
int style Widget_AppCompat_ActivityChooserView 0x7f0f013b
int style Widget_AppCompat_AutoCompleteTextView 0x7f0f013c
int style Widget_AppCompat_Button 0x7f0f013d
int style Widget_AppCompat_Button_Borderless 0x7f0f013e
int style Widget_AppCompat_Button_Borderless_Colored 0x7f0f013f
int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f0f0140
int style Widget_AppCompat_Button_Colored 0x7f0f0141
int style Widget_AppCompat_Button_Small 0x7f0f0142
int style Widget_AppCompat_ButtonBar 0x7f0f0143
int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f0f0144
int style Widget_AppCompat_CompoundButton_CheckBox 0x7f0f0145
int style Widget_AppCompat_CompoundButton_RadioButton 0x7f0f0146
int style Widget_AppCompat_CompoundButton_Switch 0x7f0f0147
int style Widget_AppCompat_DrawerArrowToggle 0x7f0f0148
int style Widget_AppCompat_DropDownItem_Spinner 0x7f0f0149
int style Widget_AppCompat_EditText 0x7f0f014a
int style Widget_AppCompat_ImageButton 0x7f0f014b
int style Widget_AppCompat_Light_ActionBar 0x7f0f014c
int style Widget_AppCompat_Light_ActionBar_Solid 0x7f0f014d
int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f0f014e
int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f0f014f
int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f0f0150
int style Widget_AppCompat_Light_ActionBar_TabText 0x7f0f0151
int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f0f0152
int style Widget_AppCompat_Light_ActionBar_TabView 0x7f0f0153
int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f0f0154
int style Widget_AppCompat_Light_ActionButton 0x7f0f0155
int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f0f0156
int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f0f0157
int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f0f0158
int style Widget_AppCompat_Light_ActivityChooserView 0x7f0f0159
int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f0f015a
int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f0f015b
int style Widget_AppCompat_Light_ListPopupWindow 0x7f0f015c
int style Widget_AppCompat_Light_ListView_DropDown 0x7f0f015d
int style Widget_AppCompat_Light_PopupMenu 0x7f0f015e
int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f0f015f
int style Widget_AppCompat_Light_SearchView 0x7f0f0160
int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f0f0161
int style Widget_AppCompat_ListMenuView 0x7f0f0162
int style Widget_AppCompat_ListPopupWindow 0x7f0f0163
int style Widget_AppCompat_ListView 0x7f0f0164
int style Widget_AppCompat_ListView_DropDown 0x7f0f0165
int style Widget_AppCompat_ListView_Menu 0x7f0f0166
int style Widget_AppCompat_PopupMenu 0x7f0f0167
int style Widget_AppCompat_PopupMenu_Overflow 0x7f0f0168
int style Widget_AppCompat_PopupWindow 0x7f0f0169
int style Widget_AppCompat_ProgressBar 0x7f0f016a
int style Widget_AppCompat_ProgressBar_Horizontal 0x7f0f016b
int style Widget_AppCompat_RatingBar 0x7f0f016c
int style Widget_AppCompat_RatingBar_Indicator 0x7f0f016d
int style Widget_AppCompat_RatingBar_Small 0x7f0f016e
int style Widget_AppCompat_SearchView 0x7f0f016f
int style Widget_AppCompat_SearchView_ActionBar 0x7f0f0170
int style Widget_AppCompat_SeekBar 0x7f0f0171
int style Widget_AppCompat_SeekBar_Discrete 0x7f0f0172
int style Widget_AppCompat_Spinner 0x7f0f0173
int style Widget_AppCompat_Spinner_DropDown 0x7f0f0174
int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f0f0175
int style Widget_AppCompat_Spinner_Underlined 0x7f0f0176
int style Widget_AppCompat_TextView_SpinnerItem 0x7f0f0177
int style Widget_AppCompat_Toolbar 0x7f0f0178
int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f0f0179
int style Widget_Compat_NotificationActionContainer 0x7f0f017a
int style Widget_Compat_NotificationActionText 0x7f0f017b
int style Widget_Support_CoordinatorLayout 0x7f0f017c
int style custom_dialog2 0x7f0f017d
int style dcloud_anim_dialog_window_in_out 0x7f0f017e
int style dcloud_defalut_dialog 0x7f0f017f
int style featureLossDialog 0x7f0f0180
int style hh_av_btn 0x7f0f0181
int style hh_btn_style 0x7f0f0182
int style hh_call_rescue_text_layout 0x7f0f0183
int style hh_chat_username_style 0x7f0f0184
int style hh_comment_button 0x7f0f0185
int style hh_comment_complain_btn 0x7f0f0186
int style hh_comment_submit_btn 0x7f0f0187
int style hh_doctor_simple_info_text 0x7f0f0188
int style hh_edit_title 0x7f0f0189
int style hh_family_edit_layout 0x7f0f018a
int style hh_job_btn 0x7f0f018b
int style hh_negativeBtnStyle 0x7f0f018c
int style hh_normal_font 0x7f0f018d
int style hh_popupAnimation 0x7f0f018e
int style hh_positiveBtnStyle 0x7f0f018f
int style hh_ratingbar 0x7f0f0190
int style hh_sdk_blue_btn 0x7f0f0191
int style hh_sdk_dialog 0x7f0f0192
int style hh_sdk_line 0x7f0f0193
int style hh_sdk_user_input_content 0x7f0f0194
int style hh_video_chat_style 0x7f0f0195
int style hhui_tip_dialog_wrap 0x7f0f0196
int style hp_card_content 0x7f0f0197
int style hp_card_layout 0x7f0f0198
int style hp_chat_card_layout 0x7f0f0199
int style hp_chat_icon_style 0x7f0f019a
int style hp_chat_layout 0x7f0f019b
int style hp_chat_time_text 0x7f0f019c
int style hp_dash_view 0x7f0f019d
int style hp_family_edit 0x7f0f019e
int style hp_real_name_item 0x7f0f019f
int style hp_video_menu_layout 0x7f0f01a0
int style hp_video_menu_text 0x7f0f01a1
int style picker_view_scale_anim 0x7f0f01a2
int style picker_view_slide_anim 0x7f0f01a3
int style streamDelete19Dialog 0x7f0f01a4
int style textAppearance 0x7f0f01a5
int[] styleable ActionBar { 0x7f030040, 0x7f030042, 0x7f030043, 0x7f030070, 0x7f030071, 0x7f030072, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030078, 0x7f03007f, 0x7f030080, 0x7f03008b, 0x7f0300a6, 0x7f0300e9, 0x7f0300ea, 0x7f0300eb, 0x7f0300ec, 0x7f0300f2, 0x7f030102, 0x7f030119, 0x7f030121, 0x7f030139, 0x7f030142, 0x7f030143, 0x7f030185, 0x7f030188, 0x7f0301a3, 0x7f0301ad }
int styleable ActionBar_background 0
int styleable ActionBar_backgroundSplit 1
int styleable ActionBar_backgroundStacked 2
int styleable ActionBar_contentInsetEnd 3
int styleable ActionBar_contentInsetEndWithActions 4
int styleable ActionBar_contentInsetLeft 5
int styleable ActionBar_contentInsetRight 6
int styleable ActionBar_contentInsetStart 7
int styleable ActionBar_contentInsetStartWithNavigation 8
int styleable ActionBar_customNavigationLayout 9
int styleable ActionBar_displayOptions 10
int styleable ActionBar_divider 11
int styleable ActionBar_elevation 12
int styleable ActionBar_height 13
int styleable ActionBar_hideOnContentScroll 14
int styleable ActionBar_homeAsUpIndicator 15
int styleable ActionBar_homeLayout 16
int styleable ActionBar_icon 17
int styleable ActionBar_indeterminateProgressStyle 18
int styleable ActionBar_itemPadding 19
int styleable ActionBar_logo 20
int styleable ActionBar_navigationMode 21
int styleable ActionBar_popupTheme 22
int styleable ActionBar_progressBarPadding 23
int styleable ActionBar_progressBarStyle 24
int styleable ActionBar_subtitle 25
int styleable ActionBar_subtitleTextStyle 26
int styleable ActionBar_title 27
int styleable ActionBar_titleTextStyle 28
int[] styleable ActionBarLayout { 0x010100b3 }
int styleable ActionBarLayout_android_layout_gravity 0
int[] styleable ActionMenuItemView { 0x0101013f }
int styleable ActionMenuItemView_android_minWidth 0
int[] styleable ActionMenuView { }
int[] styleable ActionMode { 0x7f030040, 0x7f030042, 0x7f030060, 0x7f0300a6, 0x7f030188, 0x7f0301ad }
int styleable ActionMode_background 0
int styleable ActionMode_backgroundSplit 1
int styleable ActionMode_closeItemLayout 2
int styleable ActionMode_height 3
int styleable ActionMode_subtitleTextStyle 4
int styleable ActionMode_titleTextStyle 5
int[] styleable ActionSheet { 0x7f030021, 0x7f030022, 0x7f030024, 0x7f030059, 0x7f03005a, 0x7f03005b, 0x7f03007b, 0x7f030124, 0x7f030125, 0x7f030126, 0x7f030127, 0x7f030128, 0x7f030129, 0x7f03012a, 0x7f0301a4 }
int styleable ActionSheet_actionSheetBackground 0
int styleable ActionSheet_actionSheetPadding 1
int styleable ActionSheet_actionSheetTextSize 2
int styleable ActionSheet_cancelButtonBackground 3
int styleable ActionSheet_cancelButtonMarginTop 4
int styleable ActionSheet_cancelButtonTextColor 5
int styleable ActionSheet_destructiveButtonTextColor 6
int styleable ActionSheet_otherButtonBottomBackground 7
int styleable ActionSheet_otherButtonMiddleBackground 8
int styleable ActionSheet_otherButtonSingleBackground 9
int styleable ActionSheet_otherButtonSpacing 10
int styleable ActionSheet_otherButtonTextColor 11
int styleable ActionSheet_otherButtonTitleBackground 12
int styleable ActionSheet_otherButtonTopBackground 13
int styleable ActionSheet_titleButtonTextColor 14
int[] styleable ActionSheets { 0x7f030023 }
int styleable ActionSheets_actionSheetStyle 0
int[] styleable ActivityChooserView { 0x7f03008c, 0x7f0300fa }
int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
int styleable ActivityChooserView_initialActivityCount 1
int[] styleable AlertDialog { 0x010100f2, 0x7f030053, 0x7f030054, 0x7f030110, 0x7f030111, 0x7f03011e, 0x7f030178, 0x7f030179 }
int styleable AlertDialog_android_layout 0
int styleable AlertDialog_buttonIconDimen 1
int styleable AlertDialog_buttonPanelSideLayout 2
int styleable AlertDialog_listItemLayout 3
int styleable AlertDialog_listLayout 4
int styleable AlertDialog_multiChoiceItemLayout 5
int styleable AlertDialog_showTitle 6
int styleable AlertDialog_singleChoiceItemLayout 7
int[] styleable AnimatedStateListDrawableCompat { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
int styleable AnimatedStateListDrawableCompat_android_dither 0
int styleable AnimatedStateListDrawableCompat_android_visible 1
int styleable AnimatedStateListDrawableCompat_android_variablePadding 2
int styleable AnimatedStateListDrawableCompat_android_constantSize 3
int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 4
int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 5
int[] styleable AnimatedStateListDrawableItem { 0x010100d0, 0x01010199 }
int styleable AnimatedStateListDrawableItem_android_id 0
int styleable AnimatedStateListDrawableItem_android_drawable 1
int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x01010449, 0x0101044a, 0x0101044b }
int styleable AnimatedStateListDrawableTransition_android_drawable 0
int styleable AnimatedStateListDrawableTransition_android_toId 1
int styleable AnimatedStateListDrawableTransition_android_fromId 2
int styleable AnimatedStateListDrawableTransition_android_reversible 3
int[] styleable AppCompatImageView { 0x01010119, 0x7f03017f, 0x7f0301a1, 0x7f0301a2 }
int styleable AppCompatImageView_android_src 0
int styleable AppCompatImageView_srcCompat 1
int styleable AppCompatImageView_tint 2
int styleable AppCompatImageView_tintMode 3
int[] styleable AppCompatSeekBar { 0x01010142, 0x7f03019e, 0x7f03019f, 0x7f0301a0 }
int styleable AppCompatSeekBar_android_thumb 0
int styleable AppCompatSeekBar_tickMark 1
int styleable AppCompatSeekBar_tickMarkTint 2
int styleable AppCompatSeekBar_tickMarkTintMode 3
int[] styleable AppCompatTextHelper { 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, 0x01010170, 0x01010392, 0x01010393 }
int styleable AppCompatTextHelper_android_textAppearance 0
int styleable AppCompatTextHelper_android_drawableTop 1
int styleable AppCompatTextHelper_android_drawableBottom 2
int styleable AppCompatTextHelper_android_drawableLeft 3
int styleable AppCompatTextHelper_android_drawableRight 4
int styleable AppCompatTextHelper_android_drawableStart 5
int styleable AppCompatTextHelper_android_drawableEnd 6
int[] styleable AppCompatTextView { 0x01010034, 0x7f03003b, 0x7f03003c, 0x7f03003d, 0x7f03003e, 0x7f03003f, 0x7f030095, 0x7f030097, 0x7f030104, 0x7f03010d, 0x7f03018e }
int styleable AppCompatTextView_android_textAppearance 0
int styleable AppCompatTextView_autoSizeMaxTextSize 1
int styleable AppCompatTextView_autoSizeMinTextSize 2
int styleable AppCompatTextView_autoSizePresetSizes 3
int styleable AppCompatTextView_autoSizeStepGranularity 4
int styleable AppCompatTextView_autoSizeTextType 5
int styleable AppCompatTextView_firstBaselineToTopHeight 6
int styleable AppCompatTextView_fontFamily 7
int styleable AppCompatTextView_lastBaselineToBottomHeight 8
int styleable AppCompatTextView_lineHeight 9
int styleable AppCompatTextView_textAllCaps 10
int[] styleable AppCompatTheme { 0x01010057, 0x010100ae, 0x7f030001, 0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030026, 0x7f030030, 0x7f030031, 0x7f030032, 0x7f030033, 0x7f03003a, 0x7f030049, 0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050, 0x7f030051, 0x7f030055, 0x7f030056, 0x7f03005d, 0x7f03005e, 0x7f030064, 0x7f030065, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f030069, 0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f030076, 0x7f03007c, 0x7f03007d, 0x7f03007e, 0x7f030081, 0x7f030083, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f0300ea, 0x7f0300f0, 0x7f03010e, 0x7f03010f, 0x7f030112, 0x7f030113, 0x7f030114, 0x7f030115, 0x7f030116, 0x7f030117, 0x7f030118, 0x7f030132, 0x7f030133, 0x7f030134, 0x7f030138, 0x7f03013a, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030149, 0x7f030171, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f03017c, 0x7f03017d, 0x7f03018c, 0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f030194, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f0301b3, 0x7f0301b4, 0x7f0301b5, 0x7f0301b6, 0x7f0301bd, 0x7f0301c6, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301cb, 0x7f0301cc, 0x7f0301cd, 0x7f0301ce, 0x7f0301cf }
int styleable AppCompatTheme_android_windowIsFloating 0
int styleable AppCompatTheme_android_windowAnimationStyle 1
int styleable AppCompatTheme_actionBarDivider 2
int styleable AppCompatTheme_actionBarItemBackground 3
int styleable AppCompatTheme_actionBarPopupTheme 4
int styleable AppCompatTheme_actionBarSize 5
int styleable AppCompatTheme_actionBarSplitStyle 6
int styleable AppCompatTheme_actionBarStyle 7
int styleable AppCompatTheme_actionBarTabBarStyle 8
int styleable AppCompatTheme_actionBarTabStyle 9
int styleable AppCompatTheme_actionBarTabTextStyle 10
int styleable AppCompatTheme_actionBarTheme 11
int styleable AppCompatTheme_actionBarWidgetTheme 12
int styleable AppCompatTheme_actionButtonStyle 13
int styleable AppCompatTheme_actionDropDownStyle 14
int styleable AppCompatTheme_actionMenuTextAppearance 15
int styleable AppCompatTheme_actionMenuTextColor 16
int styleable AppCompatTheme_actionModeBackground 17
int styleable AppCompatTheme_actionModeCloseButtonStyle 18
int styleable AppCompatTheme_actionModeCloseDrawable 19
int styleable AppCompatTheme_actionModeCopyDrawable 20
int styleable AppCompatTheme_actionModeCutDrawable 21
int styleable AppCompatTheme_actionModeFindDrawable 22
int styleable AppCompatTheme_actionModePasteDrawable 23
int styleable AppCompatTheme_actionModePopupWindowStyle 24
int styleable AppCompatTheme_actionModeSelectAllDrawable 25
int styleable AppCompatTheme_actionModeShareDrawable 26
int styleable AppCompatTheme_actionModeSplitBackground 27
int styleable AppCompatTheme_actionModeStyle 28
int styleable AppCompatTheme_actionModeWebSearchDrawable 29
int styleable AppCompatTheme_actionOverflowButtonStyle 30
int styleable AppCompatTheme_actionOverflowMenuStyle 31
int styleable AppCompatTheme_activityChooserViewStyle 32
int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
int styleable AppCompatTheme_alertDialogCenterButtons 34
int styleable AppCompatTheme_alertDialogStyle 35
int styleable AppCompatTheme_alertDialogTheme 36
int styleable AppCompatTheme_autoCompleteTextViewStyle 37
int styleable AppCompatTheme_borderlessButtonStyle 38
int styleable AppCompatTheme_buttonBarButtonStyle 39
int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40
int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41
int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42
int styleable AppCompatTheme_buttonBarStyle 43
int styleable AppCompatTheme_buttonStyle 44
int styleable AppCompatTheme_buttonStyleSmall 45
int styleable AppCompatTheme_checkboxStyle 46
int styleable AppCompatTheme_checkedTextViewStyle 47
int styleable AppCompatTheme_colorAccent 48
int styleable AppCompatTheme_colorBackgroundFloating 49
int styleable AppCompatTheme_colorButtonNormal 50
int styleable AppCompatTheme_colorControlActivated 51
int styleable AppCompatTheme_colorControlHighlight 52
int styleable AppCompatTheme_colorControlNormal 53
int styleable AppCompatTheme_colorError 54
int styleable AppCompatTheme_colorPrimary 55
int styleable AppCompatTheme_colorPrimaryDark 56
int styleable AppCompatTheme_colorSwitchThumbNormal 57
int styleable AppCompatTheme_controlBackground 58
int styleable AppCompatTheme_dialogCornerRadius 59
int styleable AppCompatTheme_dialogPreferredPadding 60
int styleable AppCompatTheme_dialogTheme 61
int styleable AppCompatTheme_dividerHorizontal 62
int styleable AppCompatTheme_dividerVertical 63
int styleable AppCompatTheme_dropDownListViewStyle 64
int styleable AppCompatTheme_dropdownListPreferredItemHeight 65
int styleable AppCompatTheme_editTextBackground 66
int styleable AppCompatTheme_editTextColor 67
int styleable AppCompatTheme_editTextStyle 68
int styleable AppCompatTheme_homeAsUpIndicator 69
int styleable AppCompatTheme_imageButtonStyle 70
int styleable AppCompatTheme_listChoiceBackgroundIndicator 71
int styleable AppCompatTheme_listDividerAlertDialog 72
int styleable AppCompatTheme_listMenuViewStyle 73
int styleable AppCompatTheme_listPopupWindowStyle 74
int styleable AppCompatTheme_listPreferredItemHeight 75
int styleable AppCompatTheme_listPreferredItemHeightLarge 76
int styleable AppCompatTheme_listPreferredItemHeightSmall 77
int styleable AppCompatTheme_listPreferredItemPaddingLeft 78
int styleable AppCompatTheme_listPreferredItemPaddingRight 79
int styleable AppCompatTheme_panelBackground 80
int styleable AppCompatTheme_panelMenuListTheme 81
int styleable AppCompatTheme_panelMenuListWidth 82
int styleable AppCompatTheme_popupMenuStyle 83
int styleable AppCompatTheme_popupWindowStyle 84
int styleable AppCompatTheme_radioButtonStyle 85
int styleable AppCompatTheme_ratingBarStyle 86
int styleable AppCompatTheme_ratingBarStyleIndicator 87
int styleable AppCompatTheme_ratingBarStyleSmall 88
int styleable AppCompatTheme_searchViewStyle 89
int styleable AppCompatTheme_seekBarStyle 90
int styleable AppCompatTheme_selectableItemBackground 91
int styleable AppCompatTheme_selectableItemBackgroundBorderless 92
int styleable AppCompatTheme_spinnerDropDownItemStyle 93
int styleable AppCompatTheme_spinnerStyle 94
int styleable AppCompatTheme_switchStyle 95
int styleable AppCompatTheme_textAppearanceLargePopupMenu 96
int styleable AppCompatTheme_textAppearanceListItem 97
int styleable AppCompatTheme_textAppearanceListItemSecondary 98
int styleable AppCompatTheme_textAppearanceListItemSmall 99
int styleable AppCompatTheme_textAppearancePopupMenuHeader 100
int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 101
int styleable AppCompatTheme_textAppearanceSearchResultTitle 102
int styleable AppCompatTheme_textAppearanceSmallPopupMenu 103
int styleable AppCompatTheme_textColorAlertDialogListItem 104
int styleable AppCompatTheme_textColorSearchUrl 105
int styleable AppCompatTheme_toolbarNavigationButtonStyle 106
int styleable AppCompatTheme_toolbarStyle 107
int styleable AppCompatTheme_tooltipForegroundColor 108
int styleable AppCompatTheme_tooltipFrameBackground 109
int styleable AppCompatTheme_viewInflaterClass 110
int styleable AppCompatTheme_windowActionBar 111
int styleable AppCompatTheme_windowActionBarOverlay 112
int styleable AppCompatTheme_windowActionModeOverlay 113
int styleable AppCompatTheme_windowFixedHeightMajor 114
int styleable AppCompatTheme_windowFixedHeightMinor 115
int styleable AppCompatTheme_windowFixedWidthMajor 116
int styleable AppCompatTheme_windowFixedWidthMinor 117
int styleable AppCompatTheme_windowMinWidthMajor 118
int styleable AppCompatTheme_windowMinWidthMinor 119
int styleable AppCompatTheme_windowNoTitle 120
int[] styleable Banner { 0x7f030046, 0x7f030047, 0x7f03007a, 0x7f0300f1, 0x7f0300f3, 0x7f0300f4, 0x7f0300f5, 0x7f0300f6, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fe, 0x7f03016e, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1 }
int styleable Banner_banner_default_image 0
int styleable Banner_banner_layout 1
int styleable Banner_delay_time 2
int styleable Banner_image_scale_type 3
int styleable Banner_indicator_drawable_selected 4
int styleable Banner_indicator_drawable_unselected 5
int styleable Banner_indicator_height 6
int styleable Banner_indicator_margin 7
int styleable Banner_indicator_selected_height 8
int styleable Banner_indicator_selected_width 9
int styleable Banner_indicator_width 10
int styleable Banner_is_auto_play 11
int styleable Banner_scroll_time 12
int styleable Banner_title_background 13
int styleable Banner_title_height 14
int styleable Banner_title_textcolor 15
int styleable Banner_title_textsize 16
int[] styleable ButtonBarLayout { 0x7f030034 }
int styleable ButtonBarLayout_allowStacking 0
int[] styleable ColorStateListItem { 0x010101a5, 0x0101031f, 0x7f030035 }
int styleable ColorStateListItem_android_color 0
int styleable ColorStateListItem_android_alpha 1
int styleable ColorStateListItem_alpha 2
int[] styleable CompoundButton { 0x01010107, 0x7f030057, 0x7f030058 }
int styleable CompoundButton_android_button 0
int styleable CompoundButton_buttonTint 1
int styleable CompoundButton_buttonTintMode 2
int[] styleable CoordinatorLayout { 0x7f030103, 0x7f030182 }
int styleable CoordinatorLayout_keylines 0
int styleable CoordinatorLayout_statusBarBackground 1
int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f030107, 0x7f030108, 0x7f030109, 0x7f03010a, 0x7f03010b, 0x7f03010c }
int styleable CoordinatorLayout_Layout_android_layout_gravity 0
int styleable CoordinatorLayout_Layout_layout_anchor 1
int styleable CoordinatorLayout_Layout_layout_anchorGravity 2
int styleable CoordinatorLayout_Layout_layout_behavior 3
int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4
int styleable CoordinatorLayout_Layout_layout_insetEdge 5
int styleable CoordinatorLayout_Layout_layout_keyline 6
int[] styleable DrawerArrowToggle { 0x7f030037, 0x7f030038, 0x7f030048, 0x7f030063, 0x7f030084, 0x7f0300a2, 0x7f03017b, 0x7f03019a }
int styleable DrawerArrowToggle_arrowHeadLength 0
int styleable DrawerArrowToggle_arrowShaftLength 1
int styleable DrawerArrowToggle_barLength 2
int styleable DrawerArrowToggle_color 3
int styleable DrawerArrowToggle_drawableSize 4
int styleable DrawerArrowToggle_gapBetweenBars 5
int styleable DrawerArrowToggle_spinBars 6
int styleable DrawerArrowToggle_thickness 7
int[] styleable FontFamily { 0x7f030098, 0x7f030099, 0x7f03009a, 0x7f03009b, 0x7f03009c, 0x7f03009d }
int styleable FontFamily_fontProviderAuthority 0
int styleable FontFamily_fontProviderCerts 1
int styleable FontFamily_fontProviderFetchStrategy 2
int styleable FontFamily_fontProviderFetchTimeout 3
int styleable FontFamily_fontProviderPackage 4
int styleable FontFamily_fontProviderQuery 5
int[] styleable FontFamilyFont { 0x01010532, 0x01010533, 0x0101053f, 0x0101056f, 0x01010570, 0x7f030096, 0x7f03009e, 0x7f03009f, 0x7f0300a0, 0x7f0301bb }
int styleable FontFamilyFont_android_font 0
int styleable FontFamilyFont_android_fontWeight 1
int styleable FontFamilyFont_android_fontStyle 2
int styleable FontFamilyFont_android_ttcIndex 3
int styleable FontFamilyFont_android_fontVariationSettings 4
int styleable FontFamilyFont_font 5
int styleable FontFamilyFont_fontStyle 6
int styleable FontFamilyFont_fontVariationSettings 7
int styleable FontFamilyFont_fontWeight 8
int styleable FontFamilyFont_ttcIndex 9
int[] styleable GIFVIEW { 0x7f030039, 0x7f0300a4, 0x7f030137 }
int styleable GIFVIEW_authPlay 0
int styleable GIFVIEW_gifSrc 1
int styleable GIFVIEW_playCount 2
int[] styleable GenericDraweeHierarchy { 0x7f030028, 0x7f030041, 0x7f03008d, 0x7f03008e, 0x7f03008f, 0x7f03012c, 0x7f030135, 0x7f030136, 0x7f03013c, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f03014b, 0x7f03014c, 0x7f03014e, 0x7f03014f, 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f0301bc }
int styleable GenericDraweeHierarchy_actualImageScaleType 0
int styleable GenericDraweeHierarchy_backgroundImage 1
int styleable GenericDraweeHierarchy_fadeDuration 2
int styleable GenericDraweeHierarchy_failureImage 3
int styleable GenericDraweeHierarchy_failureImageScaleType 4
int styleable GenericDraweeHierarchy_overlayImage 5
int styleable GenericDraweeHierarchy_placeholderImage 6
int styleable GenericDraweeHierarchy_placeholderImageScaleType 7
int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8
int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9
int styleable GenericDraweeHierarchy_progressBarImage 10
int styleable GenericDraweeHierarchy_progressBarImageScaleType 11
int styleable GenericDraweeHierarchy_retryImage 12
int styleable GenericDraweeHierarchy_retryImageScaleType 13
int styleable GenericDraweeHierarchy_roundAsCircle 14
int styleable GenericDraweeHierarchy_roundBottomEnd 15
int styleable GenericDraweeHierarchy_roundBottomLeft 16
int styleable GenericDraweeHierarchy_roundBottomRight 17
int styleable GenericDraweeHierarchy_roundBottomStart 18
int styleable GenericDraweeHierarchy_roundTopEnd 19
int styleable GenericDraweeHierarchy_roundTopLeft 20
int styleable GenericDraweeHierarchy_roundTopRight 21
int styleable GenericDraweeHierarchy_roundTopStart 22
int styleable GenericDraweeHierarchy_roundWithOverlayColor 23
int styleable GenericDraweeHierarchy_roundedCornerRadius 24
int styleable GenericDraweeHierarchy_roundingBorderColor 25
int styleable GenericDraweeHierarchy_roundingBorderPadding 26
int styleable GenericDraweeHierarchy_roundingBorderWidth 27
int styleable GenericDraweeHierarchy_viewAspectRatio 28
int[] styleable GifTextureView { 0x7f0300a3, 0x7f0300fd }
int styleable GifTextureView_gifSource 0
int styleable GifTextureView_isOpaque 1
int[] styleable GifView { 0x7f0300a1, 0x7f03011b }
int styleable GifView_freezesAnimation 0
int styleable GifView_loopCount 1
int[] styleable GradientColor { 0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2, 0x010101a3, 0x010101a4, 0x01010201, 0x0101020b, 0x01010510, 0x01010511, 0x01010512, 0x01010513 }
int styleable GradientColor_android_startColor 0
int styleable GradientColor_android_endColor 1
int styleable GradientColor_android_type 2
int styleable GradientColor_android_centerX 3
int styleable GradientColor_android_centerY 4
int styleable GradientColor_android_gradientRadius 5
int styleable GradientColor_android_tileMode 6
int styleable GradientColor_android_centerColor 7
int styleable GradientColor_android_startX 8
int styleable GradientColor_android_startY 9
int styleable GradientColor_android_endX 10
int styleable GradientColor_android_endY 11
int[] styleable GradientColorItem { 0x010101a5, 0x01010514 }
int styleable GradientColorItem_android_color 0
int styleable GradientColorItem_android_offset 1
int[] styleable HHBaseRatingBar { 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300c9, 0x7f0300ca, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0300ce, 0x7f0300cf, 0x7f0300d0, 0x7f0300d1 }
int styleable HHBaseRatingBar_hh_clearRatingEnabled 0
int styleable HHBaseRatingBar_hh_clickable 1
int styleable HHBaseRatingBar_hh_drawableEmpty 2
int styleable HHBaseRatingBar_hh_drawableFilled 3
int styleable HHBaseRatingBar_hh_isIndicator 4
int styleable HHBaseRatingBar_hh_minimumStars 5
int styleable HHBaseRatingBar_hh_numStars 6
int styleable HHBaseRatingBar_hh_rating 7
int styleable HHBaseRatingBar_hh_scrollable 8
int styleable HHBaseRatingBar_hh_starHeight 9
int styleable HHBaseRatingBar_hh_starPadding 10
int styleable HHBaseRatingBar_hh_starWidth 11
int styleable HHBaseRatingBar_hh_stepSize 12
int[] styleable HHCropAreaView { 0x7f0300ac, 0x7f0300ad, 0x7f0300ae, 0x7f0300af, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7 }
int styleable HHCropAreaView_hh_gest_aspect 0
int styleable HHCropAreaView_hh_gest_backgroundColor 1
int styleable HHCropAreaView_hh_gest_borderColor 2
int styleable HHCropAreaView_hh_gest_borderWidth 3
int styleable HHCropAreaView_hh_gest_rounded 4
int styleable HHCropAreaView_hh_gest_rulesHorizontal 5
int styleable HHCropAreaView_hh_gest_rulesVertical 6
int styleable HHCropAreaView_hh_gest_rulesWidth 7
int[] styleable HHGestureFrameLayout { 0x7f0300ab, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c8 }
int styleable HHGestureFrameLayout_hh_gest_animationDuration 0
int styleable HHGestureFrameLayout_hh_gest_boundsType 1
int styleable HHGestureFrameLayout_hh_gest_disableBounds 2
int styleable HHGestureFrameLayout_hh_gest_disableGestures 3
int styleable HHGestureFrameLayout_hh_gest_doubleTapEnabled 4
int styleable HHGestureFrameLayout_hh_gest_doubleTapZoom 5
int styleable HHGestureFrameLayout_hh_gest_exitEnabled 6
int styleable HHGestureFrameLayout_hh_gest_fillViewport 7
int styleable HHGestureFrameLayout_hh_gest_fitMethod 8
int styleable HHGestureFrameLayout_hh_gest_flingEnabled 9
int styleable HHGestureFrameLayout_hh_gest_gravity 10
int styleable HHGestureFrameLayout_hh_gest_maxZoom 11
int styleable HHGestureFrameLayout_hh_gest_minZoom 12
int styleable HHGestureFrameLayout_hh_gest_movementAreaHeight 13
int styleable HHGestureFrameLayout_hh_gest_movementAreaWidth 14
int styleable HHGestureFrameLayout_hh_gest_overscrollX 15
int styleable HHGestureFrameLayout_hh_gest_overscrollY 16
int styleable HHGestureFrameLayout_hh_gest_overzoomFactor 17
int styleable HHGestureFrameLayout_hh_gest_panEnabled 18
int styleable HHGestureFrameLayout_hh_gest_restrictRotation 19
int styleable HHGestureFrameLayout_hh_gest_rotationEnabled 20
int styleable HHGestureFrameLayout_hh_gest_zoomEnabled 21
int[] styleable HHGestureImageView { 0x7f0300ab, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c8 }
int styleable HHGestureImageView_hh_gest_animationDuration 0
int styleable HHGestureImageView_hh_gest_boundsType 1
int styleable HHGestureImageView_hh_gest_disableBounds 2
int styleable HHGestureImageView_hh_gest_disableGestures 3
int styleable HHGestureImageView_hh_gest_doubleTapEnabled 4
int styleable HHGestureImageView_hh_gest_doubleTapZoom 5
int styleable HHGestureImageView_hh_gest_exitEnabled 6
int styleable HHGestureImageView_hh_gest_fillViewport 7
int styleable HHGestureImageView_hh_gest_fitMethod 8
int styleable HHGestureImageView_hh_gest_flingEnabled 9
int styleable HHGestureImageView_hh_gest_gravity 10
int styleable HHGestureImageView_hh_gest_maxZoom 11
int styleable HHGestureImageView_hh_gest_minZoom 12
int styleable HHGestureImageView_hh_gest_movementAreaHeight 13
int styleable HHGestureImageView_hh_gest_movementAreaWidth 14
int styleable HHGestureImageView_hh_gest_overscrollX 15
int styleable HHGestureImageView_hh_gest_overscrollY 16
int styleable HHGestureImageView_hh_gest_overzoomFactor 17
int styleable HHGestureImageView_hh_gest_panEnabled 18
int styleable HHGestureImageView_hh_gest_restrictRotation 19
int styleable HHGestureImageView_hh_gest_rotationEnabled 20
int styleable HHGestureImageView_hh_gest_zoomEnabled 21
int[] styleable HHGestureView { 0x7f0300ab, 0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3, 0x7f0300b4, 0x7f0300b5, 0x7f0300b6, 0x7f0300b7, 0x7f0300b8, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300bc, 0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c3, 0x7f0300c8 }
int styleable HHGestureView_hh_gest_animationDuration 0
int styleable HHGestureView_hh_gest_boundsType 1
int styleable HHGestureView_hh_gest_disableBounds 2
int styleable HHGestureView_hh_gest_disableGestures 3
int styleable HHGestureView_hh_gest_doubleTapEnabled 4
int styleable HHGestureView_hh_gest_doubleTapZoom 5
int styleable HHGestureView_hh_gest_exitEnabled 6
int styleable HHGestureView_hh_gest_fillViewport 7
int styleable HHGestureView_hh_gest_fitMethod 8
int styleable HHGestureView_hh_gest_flingEnabled 9
int styleable HHGestureView_hh_gest_gravity 10
int styleable HHGestureView_hh_gest_maxZoom 11
int styleable HHGestureView_hh_gest_minZoom 12
int styleable HHGestureView_hh_gest_movementAreaHeight 13
int styleable HHGestureView_hh_gest_movementAreaWidth 14
int styleable HHGestureView_hh_gest_overscrollX 15
int styleable HHGestureView_hh_gest_overscrollY 16
int styleable HHGestureView_hh_gest_overzoomFactor 17
int styleable HHGestureView_hh_gest_panEnabled 18
int styleable HHGestureView_hh_gest_restrictRotation 19
int styleable HHGestureView_hh_gest_rotationEnabled 20
int styleable HHGestureView_hh_gest_zoomEnabled 21
int[] styleable HHSDKEditTextView { 0x7f0300fb }
int styleable HHSDKEditTextView_input_color 0
int[] styleable HHUILoadingView { 0x010101a5, 0x7f0300e2 }
int styleable HHUILoadingView_android_color 0
int styleable HHUILoadingView_hhui_loading_view_size 1
int[] styleable LinearLayoutCompat { 0x010100af, 0x010100c4, 0x01010126, 0x01010127, 0x01010128, 0x7f030080, 0x7f030082, 0x7f03011d, 0x7f030176 }
int styleable LinearLayoutCompat_android_gravity 0
int styleable LinearLayoutCompat_android_orientation 1
int styleable LinearLayoutCompat_android_baselineAligned 2
int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 3
int styleable LinearLayoutCompat_android_weightSum 4
int styleable LinearLayoutCompat_divider 5
int styleable LinearLayoutCompat_dividerPadding 6
int styleable LinearLayoutCompat_measureWithLargestChild 7
int styleable LinearLayoutCompat_showDividers 8
int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 }
int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
int styleable LinearLayoutCompat_Layout_android_layout_width 1
int styleable LinearLayoutCompat_Layout_android_layout_height 2
int styleable LinearLayoutCompat_Layout_android_layout_weight 3
int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad }
int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
int styleable ListPopupWindow_android_dropDownVerticalOffset 1
int[] styleable MenuGroup { 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, 0x010101df, 0x010101e0 }
int styleable MenuGroup_android_enabled 0
int styleable MenuGroup_android_id 1
int styleable MenuGroup_android_visible 2
int styleable MenuGroup_android_menuCategory 3
int styleable MenuGroup_android_orderInCategory 4
int styleable MenuGroup_android_checkableBehavior 5
int[] styleable MenuItem { 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, 0x01010194, 0x010101de, 0x010101df, 0x010101e1, 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, 0x0101026f, 0x7f03000e, 0x7f030020, 0x7f030025, 0x7f030036, 0x7f03006f, 0x7f0300ed, 0x7f0300ee, 0x7f030123, 0x7f030175, 0x7f0301b7 }
int styleable MenuItem_android_icon 0
int styleable MenuItem_android_enabled 1
int styleable MenuItem_android_id 2
int styleable MenuItem_android_checked 3
int styleable MenuItem_android_visible 4
int styleable MenuItem_android_menuCategory 5
int styleable MenuItem_android_orderInCategory 6
int styleable MenuItem_android_title 7
int styleable MenuItem_android_titleCondensed 8
int styleable MenuItem_android_alphabeticShortcut 9
int styleable MenuItem_android_numericShortcut 10
int styleable MenuItem_android_checkable 11
int styleable MenuItem_android_onClick 12
int styleable MenuItem_actionLayout 13
int styleable MenuItem_actionProviderClass 14
int styleable MenuItem_actionViewClass 15
int styleable MenuItem_alphabeticModifiers 16
int styleable MenuItem_contentDescription 17
int styleable MenuItem_iconTint 18
int styleable MenuItem_iconTintMode 19
int styleable MenuItem_numericModifiers 20
int styleable MenuItem_showAsAction 21
int styleable MenuItem_tooltipText 22
int[] styleable MenuView { 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, 0x0101012f, 0x01010130, 0x01010131, 0x7f03013b, 0x7f030183 }
int styleable MenuView_android_windowAnimationStyle 0
int styleable MenuView_android_itemTextAppearance 1
int styleable MenuView_android_horizontalDivider 2
int styleable MenuView_android_verticalDivider 3
int styleable MenuView_android_headerBackground 4
int styleable MenuView_android_itemBackground 5
int styleable MenuView_android_itemIconDisabledAlpha 6
int styleable MenuView_preserveIconSpacing 7
int styleable MenuView_subMenuArrow 8
int[] styleable NumberCodeView { 0x7f030122 }
int styleable NumberCodeView_numberLength 0
int[] styleable PopupWindow { 0x01010176, 0x010102c9, 0x7f03012b }
int styleable PopupWindow_android_popupBackground 0
int styleable PopupWindow_android_popupAnimationStyle 1
int styleable PopupWindow_overlapAnchor 2
int[] styleable PopupWindowBackgroundState { 0x7f030181 }
int styleable PopupWindowBackgroundState_state_above_anchor 0
int[] styleable RecycleListView { 0x7f03012d, 0x7f030130 }
int styleable RecycleListView_paddingBottomNoButtons 0
int styleable RecycleListView_paddingTopNoTitle 1
int[] styleable RecyclerView { 0x010100c4, 0x010100eb, 0x010100f1, 0x7f030090, 0x7f030091, 0x7f030092, 0x7f030093, 0x7f030094, 0x7f030106, 0x7f03014d, 0x7f03017a, 0x7f030180 }
int styleable RecyclerView_android_orientation 0
int styleable RecyclerView_android_clipToPadding 1
int styleable RecyclerView_android_descendantFocusability 2
int styleable RecyclerView_fastScrollEnabled 3
int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4
int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5
int styleable RecyclerView_fastScrollVerticalThumbDrawable 6
int styleable RecyclerView_fastScrollVerticalTrackDrawable 7
int styleable RecyclerView_layoutManager 8
int styleable RecyclerView_reverseLayout 9
int styleable RecyclerView_spanCount 10
int styleable RecyclerView_stackFromEnd 11
int[] styleable SearchView { 0x010100da, 0x0101011f, 0x01010220, 0x01010264, 0x7f03005f, 0x7f03006e, 0x7f030079, 0x7f0300a5, 0x7f0300ef, 0x7f030105, 0x7f030144, 0x7f030145, 0x7f03016f, 0x7f030170, 0x7f030184, 0x7f030189, 0x7f0301be }
int styleable SearchView_android_focusable 0
int styleable SearchView_android_maxWidth 1
int styleable SearchView_android_inputType 2
int styleable SearchView_android_imeOptions 3
int styleable SearchView_closeIcon 4
int styleable SearchView_commitIcon 5
int styleable SearchView_defaultQueryHint 6
int styleable SearchView_goIcon 7
int styleable SearchView_iconifiedByDefault 8
int styleable SearchView_layout 9
int styleable SearchView_queryBackground 10
int styleable SearchView_queryHint 11
int styleable SearchView_searchHintIcon 12
int styleable SearchView_searchIcon 13
int styleable SearchView_submitBackground 14
int styleable SearchView_suggestionRowLayout 15
int styleable SearchView_voiceIcon 16
int[] styleable SimpleDraweeView { 0x7f030027, 0x7f030028, 0x7f030029, 0x7f030041, 0x7f03008d, 0x7f03008e, 0x7f03008f, 0x7f03012c, 0x7f030135, 0x7f030136, 0x7f03013c, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f03014b, 0x7f03014c, 0x7f03014e, 0x7f03014f, 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030155, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a, 0x7f03015b, 0x7f0301bc }
int styleable SimpleDraweeView_actualImageResource 0
int styleable SimpleDraweeView_actualImageScaleType 1
int styleable SimpleDraweeView_actualImageUri 2
int styleable SimpleDraweeView_backgroundImage 3
int styleable SimpleDraweeView_fadeDuration 4
int styleable SimpleDraweeView_failureImage 5
int styleable SimpleDraweeView_failureImageScaleType 6
int styleable SimpleDraweeView_overlayImage 7
int styleable SimpleDraweeView_placeholderImage 8
int styleable SimpleDraweeView_placeholderImageScaleType 9
int styleable SimpleDraweeView_pressedStateOverlayImage 10
int styleable SimpleDraweeView_progressBarAutoRotateInterval 11
int styleable SimpleDraweeView_progressBarImage 12
int styleable SimpleDraweeView_progressBarImageScaleType 13
int styleable SimpleDraweeView_retryImage 14
int styleable SimpleDraweeView_retryImageScaleType 15
int styleable SimpleDraweeView_roundAsCircle 16
int styleable SimpleDraweeView_roundBottomEnd 17
int styleable SimpleDraweeView_roundBottomLeft 18
int styleable SimpleDraweeView_roundBottomRight 19
int styleable SimpleDraweeView_roundBottomStart 20
int styleable SimpleDraweeView_roundTopEnd 21
int styleable SimpleDraweeView_roundTopLeft 22
int styleable SimpleDraweeView_roundTopRight 23
int styleable SimpleDraweeView_roundTopStart 24
int styleable SimpleDraweeView_roundWithOverlayColor 25
int styleable SimpleDraweeView_roundedCornerRadius 26
int styleable SimpleDraweeView_roundingBorderColor 27
int styleable SimpleDraweeView_roundingBorderPadding 28
int styleable SimpleDraweeView_roundingBorderWidth 29
int styleable SimpleDraweeView_viewAspectRatio 30
int[] styleable Spinner { 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, 0x7f030139 }
int styleable Spinner_android_entries 0
int styleable Spinner_android_popupBackground 1
int styleable Spinner_android_prompt 2
int styleable Spinner_android_dropDownWidth 3
int styleable Spinner_popupTheme 4
int[] styleable StateListDrawable { 0x0101011c, 0x01010194, 0x01010195, 0x01010196, 0x0101030c, 0x0101030d }
int styleable StateListDrawable_android_dither 0
int styleable StateListDrawable_android_visible 1
int styleable StateListDrawable_android_variablePadding 2
int styleable StateListDrawable_android_constantSize 3
int styleable StateListDrawable_android_enterFadeDuration 4
int styleable StateListDrawable_android_exitFadeDuration 5
int[] styleable StateListDrawableItem { 0x01010199 }
int styleable StateListDrawableItem_android_drawable 0
int[] styleable SwitchButton { 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030161, 0x7f030162, 0x7f030163, 0x7f030164, 0x7f030165, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016c, 0x7f03016d }
int styleable SwitchButton_sb_background 0
int styleable SwitchButton_sb_border_width 1
int styleable SwitchButton_sb_button_color 2
int styleable SwitchButton_sb_checked 3
int styleable SwitchButton_sb_checked_color 4
int styleable SwitchButton_sb_checkline_color 5
int styleable SwitchButton_sb_checkline_width 6
int styleable SwitchButton_sb_effect_duration 7
int styleable SwitchButton_sb_enable_effect 8
int styleable SwitchButton_sb_shadow_color 9
int styleable SwitchButton_sb_shadow_effect 10
int styleable SwitchButton_sb_shadow_offset 11
int styleable SwitchButton_sb_shadow_radius 12
int styleable SwitchButton_sb_show_indicator 13
int styleable SwitchButton_sb_uncheck_color 14
int styleable SwitchButton_sb_uncheckcircle_color 15
int styleable SwitchButton_sb_uncheckcircle_radius 16
int styleable SwitchButton_sb_uncheckcircle_width 17
int[] styleable SwitchCompat { 0x01010124, 0x01010125, 0x01010142, 0x7f030177, 0x7f03017e, 0x7f03018a, 0x7f03018b, 0x7f03018d, 0x7f03019b, 0x7f03019c, 0x7f03019d, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba }
int styleable SwitchCompat_android_textOn 0
int styleable SwitchCompat_android_textOff 1
int styleable SwitchCompat_android_thumb 2
int styleable SwitchCompat_showText 3
int styleable SwitchCompat_splitTrack 4
int styleable SwitchCompat_switchMinWidth 5
int styleable SwitchCompat_switchPadding 6
int styleable SwitchCompat_switchTextAppearance 7
int styleable SwitchCompat_thumbTextPadding 8
int styleable SwitchCompat_thumbTint 9
int styleable SwitchCompat_thumbTintMode 10
int styleable SwitchCompat_track 11
int styleable SwitchCompat_trackTint 12
int styleable SwitchCompat_trackTintMode 13
int[] styleable TextAppearance { 0x01010095, 0x01010096, 0x01010097, 0x01010098, 0x0101009a, 0x0101009b, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x010103ac, 0x7f030097, 0x7f03018e }
int styleable TextAppearance_android_textSize 0
int styleable TextAppearance_android_typeface 1
int styleable TextAppearance_android_textStyle 2
int styleable TextAppearance_android_textColor 3
int styleable TextAppearance_android_textColorHint 4
int styleable TextAppearance_android_textColorLink 5
int styleable TextAppearance_android_shadowColor 6
int styleable TextAppearance_android_shadowDx 7
int styleable TextAppearance_android_shadowDy 8
int styleable TextAppearance_android_shadowRadius 9
int styleable TextAppearance_android_fontFamily 10
int styleable TextAppearance_fontFamily 11
int styleable TextAppearance_textAllCaps 12
int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030052, 0x7f030061, 0x7f030062, 0x7f030070, 0x7f030071, 0x7f030072, 0x7f030073, 0x7f030074, 0x7f030075, 0x7f030119, 0x7f03011a, 0x7f03011c, 0x7f03011f, 0x7f030120, 0x7f030139, 0x7f030185, 0x7f030186, 0x7f030187, 0x7f0301a3, 0x7f0301a5, 0x7f0301a6, 0x7f0301a7, 0x7f0301a8, 0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac }
int styleable Toolbar_android_gravity 0
int styleable Toolbar_android_minHeight 1
int styleable Toolbar_buttonGravity 2
int styleable Toolbar_collapseContentDescription 3
int styleable Toolbar_collapseIcon 4
int styleable Toolbar_contentInsetEnd 5
int styleable Toolbar_contentInsetEndWithActions 6
int styleable Toolbar_contentInsetLeft 7
int styleable Toolbar_contentInsetRight 8
int styleable Toolbar_contentInsetStart 9
int styleable Toolbar_contentInsetStartWithNavigation 10
int styleable Toolbar_logo 11
int styleable Toolbar_logoDescription 12
int styleable Toolbar_maxButtonHeight 13
int styleable Toolbar_navigationContentDescription 14
int styleable Toolbar_navigationIcon 15
int styleable Toolbar_popupTheme 16
int styleable Toolbar_subtitle 17
int styleable Toolbar_subtitleTextAppearance 18
int styleable Toolbar_subtitleTextColor 19
int styleable Toolbar_title 20
int styleable Toolbar_titleMargin 21
int styleable Toolbar_titleMarginBottom 22
int styleable Toolbar_titleMarginEnd 23
int styleable Toolbar_titleMarginStart 24
int styleable Toolbar_titleMarginTop 25
int styleable Toolbar_titleMargins 26
int styleable Toolbar_titleTextAppearance 27
int styleable Toolbar_titleTextColor 28
int[] styleable View { 0x01010000, 0x010100da, 0x7f03012e, 0x7f03012f, 0x7f030199 }
int styleable View_android_theme 0
int styleable View_android_focusable 1
int styleable View_paddingEnd 2
int styleable View_paddingStart 3
int styleable View_theme 4
int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030044, 0x7f030045 }
int styleable ViewBackgroundHelper_android_background 0
int styleable ViewBackgroundHelper_backgroundTint 1
int styleable ViewBackgroundHelper_backgroundTintMode 2
int[] styleable ViewStubCompat { 0x010100d0, 0x010100f2, 0x010100f3 }
int styleable ViewStubCompat_android_id 0
int styleable ViewStubCompat_android_layout 1
int styleable ViewStubCompat_android_inflatedId 2
int[] styleable pickerview { 0x7f0301bf, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2, 0x7f0301c3, 0x7f0301c4, 0x7f0301c5 }
int styleable pickerview_wheelview_dividerColor 0
int styleable pickerview_wheelview_dividerWidth 1
int styleable pickerview_wheelview_gravity 2
int styleable pickerview_wheelview_lineSpacingMultiplier 3
int styleable pickerview_wheelview_textColorCenter 4
int styleable pickerview_wheelview_textColorOut 5
int styleable pickerview_wheelview_textSize 6
int xml dcloud_file_provider 0x7f110000
int xml hh_network_security_config 0x7f110001
int xml provider_paths 0x7f110002