admin
2020-08-12 cefe2a41db4a275fb1e940a902cb156f1ed68d80
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
int anim shake_umeng_socialize_cycle_5 0x7f010001
int anim shake_umeng_socialize_dlg_alpha 0x7f010002
int anim shake_umeng_socialize_dlg_scale 0x7f010003
int anim shake_umeng_socialize_edit_anim 0x7f010004
int anim shake_umeng_socialize_imageview_rotate 0x7f010005
int anim shake_umeng_socialize_scrshot_dlg 0x7f010006
int anim umeng_socialize_fade_in 0x7f010007
int anim umeng_socialize_fade_out 0x7f010008
int anim umeng_socialize_shareboard_animation_in 0x7f010009
int anim umeng_socialize_shareboard_animation_out 0x7f01000a
int anim umeng_socialize_slide_in_from_bottom 0x7f01000b
int anim umeng_socialize_slide_out_from_bottom 0x7f01000c
int attr column 0x7f040001
int attr com_facebook_auxiliary_view_position 0x7f040002
int attr com_facebook_confirm_logout 0x7f040003
int attr com_facebook_foreground_color 0x7f040004
int attr com_facebook_horizontal_alignment 0x7f040005
int attr com_facebook_is_cropped 0x7f040006
int attr com_facebook_login_text 0x7f040007
int attr com_facebook_logout_text 0x7f040008
int attr com_facebook_object_id 0x7f040009
int attr com_facebook_object_type 0x7f04000a
int attr com_facebook_preset_size 0x7f04000b
int attr com_facebook_style 0x7f04000c
int attr com_facebook_tooltip_mode 0x7f04000d
int attr coordinatorLayoutStyle 0x7f04000e
int attr font 0x7f04000f
int attr fontProviderAuthority 0x7f040010
int attr fontProviderCerts 0x7f040011
int attr fontProviderFetchStrategy 0x7f040012
int attr fontProviderFetchTimeout 0x7f040013
int attr fontProviderPackage 0x7f040014
int attr fontProviderQuery 0x7f040015
int attr fontStyle 0x7f040016
int attr fontWeight 0x7f040017
int attr keylines 0x7f040018
int attr layout_anchor 0x7f040019
int attr layout_anchorGravity 0x7f04001a
int attr layout_behavior 0x7f04001b
int attr layout_dodgeInsetEdges 0x7f04001c
int attr layout_insetEdge 0x7f04001d
int attr layout_keyline 0x7f04001e
int attr playerloadingSize 0x7f04001f
int attr statusBarBackground 0x7f040020
int attr title 0x7f040021
int bool abc_action_bar_embed_tabs 0x7f050001
int color app_background 0x7f060001
int color black 0x7f060002
int color blue 0x7f060003
int color blue3 0x7f060004
int color com_facebook_blue 0x7f060005
int color com_facebook_button_background_color 0x7f060006
int color com_facebook_button_background_color_disabled 0x7f060007
int color com_facebook_button_background_color_pressed 0x7f060008
int color com_facebook_button_like_background_color_selected 0x7f060009
int color com_facebook_button_login_silver_background_color 0x7f06000a
int color com_facebook_button_login_silver_background_color_pressed 0x7f06000b
int color com_facebook_button_send_background_color 0x7f06000c
int color com_facebook_button_send_background_color_pressed 0x7f06000d
int color com_facebook_likeboxcountview_border_color 0x7f06000e
int color com_facebook_likeboxcountview_text_color 0x7f06000f
int color com_facebook_likeview_text_color 0x7f060010
int color com_facebook_share_button_text_color 0x7f060011
int color gray 0x7f060012
int color gray1 0x7f060013
int color notification_action_color_filter 0x7f060014
int color notification_icon_bg_color 0x7f060015
int color notification_material_background_media_default_color 0x7f060016
int color player_controller_background 0x7f060017
int color player_controller_background_half_alpha 0x7f060018
int color player_gray 0x7f060019
int color primary_text_default_material_dark 0x7f06001a
int color red 0x7f06001b
int color ripple_material_light 0x7f06001c
int color secondary_text_default_material_dark 0x7f06001d
int color secondary_text_default_material_light 0x7f06001e
int color text_color_black 0x7f06001f
int color text_color_blue 0x7f060020
int color text_color_blue_1 0x7f060021
int color text_color_gray_1 0x7f060022
int color text_color_gray_2 0x7f060023
int color text_color_gray_3 0x7f060024
int color text_color_gray_5 0x7f060025
int color text_color_gray_7 0x7f060026
int color text_color_gray_9 0x7f060027
int color text_color_red_1 0x7f060028
int color text_color_white 0x7f060029
int color text_color_white_d 0x7f06002a
int color translucent_background 0x7f06002b
int color transparent 0x7f06002c
int color tudou_dialog_button 0x7f06002d
int color tudou_dialog_line 0x7f06002e
int color tudou_dialog_sub_title 0x7f06002f
int color tudou_dialog_title 0x7f060030
int color umeng_background 0x7f060031
int color umeng_black 0x7f060032
int color umeng_blue 0x7f060033
int color umeng_divide 0x7f060034
int color umeng_socialize_color_group 0x7f060035
int color umeng_socialize_comments_bg 0x7f060036
int color umeng_socialize_divider 0x7f060037
int color umeng_socialize_edit_bg 0x7f060038
int color umeng_socialize_grid_divider_line 0x7f060039
int color umeng_socialize_list_item_bgcolor 0x7f06003a
int color umeng_socialize_list_item_textcolor 0x7f06003b
int color umeng_socialize_shareactivity 0x7f06003c
int color umeng_socialize_shareactivitydefault 0x7f06003d
int color umeng_socialize_text_friends_list 0x7f06003e
int color umeng_socialize_text_share_content 0x7f06003f
int color umeng_socialize_text_time 0x7f060040
int color umeng_socialize_text_title 0x7f060041
int color umeng_socialize_text_ucenter 0x7f060042
int color umeng_socialize_ucenter_bg 0x7f060043
int color umeng_socialize_web_bg 0x7f060044
int color umeng_text_color 0x7f060045
int color umeng_white 0x7f060046
int color vk_black 0x7f060047
int color vk_black_pressed 0x7f060048
int color vk_clear 0x7f060049
int color vk_color 0x7f06004a
int color vk_grey_color 0x7f06004b
int color vk_light_color 0x7f06004c
int color vk_share_blue_color 0x7f06004d
int color vk_share_gray_line 0x7f06004e
int color vk_share_link_color 0x7f06004f
int color vk_share_link_title_color 0x7f060050
int color vk_share_top_blue_color 0x7f060051
int color vk_white 0x7f060052
int color white 0x7f060053
int color yp_ad_background_color_youku 0x7f060054
int color yp_youku_dialog_cancel_normal 0x7f060055
int color yp_youku_dialog_cancel_pressed 0x7f060056
int color yp_youku_dialog_ok_normal 0x7f060057
int color yp_youku_dialog_ok_pressed 0x7f060058
int dimen actionbar_height 0x7f070001
int dimen actionbar_item_height 0x7f070002
int dimen actionbar_item_width 0x7f070003
int dimen alphabet_size 0x7f070004
int dimen body_padding_large 0x7f070005
int dimen body_padding_medium 0x7f070006
int dimen channel_main_tabindicator_height 0x7f070007
int dimen channeltab_dividerpadding 0x7f070008
int dimen channeltab_txt_textsize 0x7f070009
int dimen com_facebook_likeboxcountview_border_radius 0x7f07000a
int dimen com_facebook_likeboxcountview_border_width 0x7f07000b
int dimen com_facebook_likeboxcountview_caret_height 0x7f07000c
int dimen com_facebook_likeboxcountview_caret_width 0x7f07000d
int dimen com_facebook_likeboxcountview_text_padding 0x7f07000e
int dimen com_facebook_likeboxcountview_text_size 0x7f07000f
int dimen com_facebook_likeview_edge_padding 0x7f070010
int dimen com_facebook_likeview_internal_padding 0x7f070011
int dimen com_facebook_likeview_text_size 0x7f070012
int dimen com_facebook_profilepictureview_preset_size_large 0x7f070013
int dimen com_facebook_profilepictureview_preset_size_normal 0x7f070014
int dimen com_facebook_profilepictureview_preset_size_small 0x7f070015
int dimen com_facebook_share_button_compound_drawable_padding 0x7f070016
int dimen com_facebook_share_button_padding_bottom 0x7f070017
int dimen com_facebook_share_button_padding_left 0x7f070018
int dimen com_facebook_share_button_padding_right 0x7f070019
int dimen com_facebook_share_button_padding_top 0x7f07001a
int dimen com_facebook_share_button_text_size 0x7f07001b
int dimen com_facebook_tooltip_horizontal_padding 0x7f07001c
int dimen compat_button_inset_horizontal_material 0x7f07001d
int dimen compat_button_inset_vertical_material 0x7f07001e
int dimen compat_button_padding_horizontal_material 0x7f07001f
int dimen compat_button_padding_vertical_material 0x7f070020
int dimen compat_control_corner_material 0x7f070021
int dimen detail_play_content_padding_bottom 0x7f070022
int dimen detail_play_content_padding_top 0x7f070023
int dimen detail_play_full_margin_right 0x7f070024
int dimen detail_play_progress_margin_left 0x7f070025
int dimen detail_play_progress_margin_right 0x7f070026
int dimen detail_play_title_height 0x7f070027
int dimen detail_play_title_margin_left_right 0x7f070028
int dimen dialog_arrow_marginLeft 0x7f070029
int dimen dialog_arrow_marginRight 0x7f07002a
int dimen dialog_firstItemBtn_marginTop 0x7f07002b
int dimen dialog_height 0x7f07002c
int dimen dialog_item_marginH 0x7f07002d
int dimen dialog_item_marginV 0x7f07002e
int dimen dialog_radioBtn_dimen 0x7f07002f
int dimen dialog_title_height 0x7f070030
int dimen dialog_width 0x7f070031
int dimen download_grid_item_add_height 0x7f070032
int dimen download_grid_item_image_padding_right 0x7f070033
int dimen fullscreen_pause_ad_container_height 0x7f070034
int dimen fullscreen_pause_ad_container_width 0x7f070035
int dimen fullscreen_player_episode_item_small_text_size 0x7f070036
int dimen fullscreen_player_episode_item_text_size 0x7f070037
int dimen fullscreen_player_setting_height 0x7f070038
int dimen fullscreen_player_setting_width 0x7f070039
int dimen fullscreen_punchbox_pause_ad_height 0x7f07003a
int dimen fullscreen_punchbox_pause_ad_width 0x7f07003b
int dimen fullscreen_youku_pause_ad_height 0x7f07003c
int dimen fullscreen_youku_pause_ad_width 0x7f07003d
int dimen gridview_item_tv_height 0x7f07003e
int dimen gridview_pading_horizontal 0x7f07003f
int dimen gridview_pading_top 0x7f070040
int dimen gridview_spacing 0x7f070041
int dimen history_item_txt_first_textsize 0x7f070042
int dimen history_item_txt_second_textsize 0x7f070043
int dimen history_text_point_margin_bottom 0x7f070044
int dimen homepage_item_title_first 0x7f070045
int dimen homepage_item_title_second 0x7f070046
int dimen myyouku_item_line_margin_left 0x7f070047
int dimen normal_dialog_btn_height 0x7f070048
int dimen normal_dialog_btn_marginBottom 0x7f070049
int dimen normal_dialog_btn_marginLeft 0x7f07004a
int dimen normal_dialog_btn_marginTop 0x7f07004b
int dimen normal_dialog_btn_width 0x7f07004c
int dimen normal_dialog_message_marginTop 0x7f07004d
int dimen normal_dialog_width 0x7f07004e
int dimen notification_action_icon_size 0x7f07004f
int dimen notification_action_text_size 0x7f070050
int dimen notification_big_circle_margin 0x7f070051
int dimen notification_content_margin_start 0x7f070052
int dimen notification_large_icon_height 0x7f070053
int dimen notification_large_icon_width 0x7f070054
int dimen notification_main_column_padding_top 0x7f070055
int dimen notification_media_narrow_margin 0x7f070056
int dimen notification_right_icon_size 0x7f070057
int dimen notification_right_side_padding_top 0x7f070058
int dimen notification_small_icon_background_padding 0x7f070059
int dimen notification_small_icon_size_as_large 0x7f07005a
int dimen notification_subtext_size 0x7f07005b
int dimen notification_top_pad 0x7f07005c
int dimen notification_top_pad_large_text 0x7f07005d
int dimen paytip_close_height 0x7f07005e
int dimen paytip_close_margin 0x7f07005f
int dimen paytip_close_width 0x7f070060
int dimen paytip_full_arrow_width 0x7f070061
int dimen paytip_full_height 0x7f070062
int dimen paytip_full_margin_bottom 0x7f070063
int dimen paytip_full_textsize 0x7f070064
int dimen paytip_full_tip_width 0x7f070065
int dimen paytip_full_width 0x7f070066
int dimen paytip_small_margin_bottom 0x7f070067
int dimen paytip_small_textsize 0x7f070068
int dimen paytip_small_tip_width 0x7f070069
int dimen player_ad_count_text_padding 0x7f07006a
int dimen player_ad_count_text_padding_youku 0x7f07006b
int dimen player_ad_count_text_size 0x7f07006c
int dimen player_ad_count_text_size_youku 0x7f07006d
int dimen player_ad_count_width_youku 0x7f07006e
int dimen player_ad_count_wrap_widht_youku 0x7f07006f
int dimen player_ad_go_full_margin_bottom 0x7f070070
int dimen player_ad_go_full_margin_right 0x7f070071
int dimen player_ad_go_full_padding 0x7f070072
int dimen player_ad_go_full_width_youku 0x7f070073
int dimen player_ad_head_padding 0x7f070074
int dimen player_ad_more_height 0x7f070075
int dimen player_ad_more_height_youku 0x7f070076
int dimen player_ad_more_padding 0x7f070077
int dimen player_ad_more_padding_youku 0x7f070078
int dimen player_ad_more_width_youku 0x7f070079
int dimen player_ad_skip_width_youku 0x7f07007a
int dimen player_ad_text_height_youku 0x7f07007b
int dimen plugin_detail_play_pause_pandding 0x7f07007c
int dimen shadow_height 0x7f07007d
int dimen speaker_image_padding 0x7f07007e
int dimen speaker_image_size 0x7f07007f
int dimen subtitle_height 0x7f070080
int dimen subtitle_margin 0x7f070081
int dimen text_size_1 0x7f070082
int dimen text_size_2 0x7f070083
int dimen text_size_3 0x7f070084
int dimen text_size_4 0x7f070085
int dimen text_size_5 0x7f070086
int dimen text_size_6 0x7f070087
int dimen text_size_7 0x7f070088
int dimen text_size_8 0x7f070089
int dimen text_size_a 0x7f07008a
int dimen text_size_b 0x7f07008b
int dimen text_size_c 0x7f07008c
int dimen text_size_d 0x7f07008d
int dimen text_size_e 0x7f07008e
int dimen text_size_f 0x7f07008f
int dimen text_size_g 0x7f070090
int dimen text_size_h 0x7f070091
int dimen text_size_i 0x7f070092
int dimen text_size_j 0x7f070093
int dimen text_size_l 0x7f070094
int dimen text_size_large 0x7f070095
int dimen text_size_medium 0x7f070096
int dimen text_size_small 0x7f070097
int dimen text_size_xlarge 0x7f070098
int dimen titlebar 0x7f070099
int dimen toolbar_btn_txt_textsize 0x7f07009a
int dimen tudou_dialog_height 0x7f07009b
int dimen tudou_dialog_width 0x7f07009c
int dimen umeng_socialize_pad_window_height 0x7f07009d
int dimen umeng_socialize_pad_window_width 0x7f07009e
int dimen vendor_image_size 0x7f07009f
int dimen vk_share_dialog_padding 0x7f0700a0
int dimen vk_share_dialog_padding_top 0x7f0700a1
int dimen vk_share_dialog_view_padding 0x7f0700a2
int dimen vk_share_link_top_margin 0x7f0700a3
int dimen vk_share_send_text_size 0x7f0700a4
int dimen vk_share_settings_button_min_height 0x7f0700a5
int dimen vk_share_title_link_host_size 0x7f0700a6
int dimen vk_share_title_link_title_size 0x7f0700a7
int dimen vk_share_title_text_size 0x7f0700a8
int dimen vk_share_top_button_padding_left 0x7f0700a9
int dimen vk_share_top_button_padding_right 0x7f0700aa
int dimen vk_share_top_image_margin 0x7f0700ab
int dimen vk_share_top_line_margin 0x7f0700ac
int dimen vk_share_top_panel_height 0x7f0700ad
int dimen vk_share_top_title_margin 0x7f0700ae
int dimen vq_height 0x7f0700af
int dimen vq_width 0x7f0700b0
int dimen wm_height 0x7f0700b1
int dimen wm_width 0x7f0700b2
int dimen yp_edittext_add_txt_linespacingextra 0x7f0700b3
int dimen yp_image_ad_close_margin_right 0x7f0700b4
int dimen yp_investigate_arrowright_width 0x7f0700b5
int dimen yp_investigate_close_width 0x7f0700b6
int dimen yp_investigate_height 0x7f0700b7
int dimen yp_investigate_margin_bottom 0x7f0700b8
int dimen yp_investigate_text_container_width 0x7f0700b9
int dimen yp_investigate_text_margin_left 0x7f0700ba
int dimen yp_investigate_text_size 0x7f0700bb
int dimen yp_normal_content_textsize 0x7f0700bc
int dimen yp_youku_dialog_bottom_height 0x7f0700bd
int dimen yp_youku_dialog_height 0x7f0700be
int dimen yp_youku_dialog_txt_cancel_textsize 0x7f0700bf
int dimen yp_youku_dialog_width 0x7f0700c0
int drawable ad_bg_back 0x7f080001
int drawable ad_bg_full 0x7f080002
int drawable ad_close 0x7f080003
int drawable ad_icon_arrow 0x7f080004
int drawable ad_icon_fullscreen 0x7f080005
int drawable ad_icon_out 0x7f080006
int drawable ad_icon_volume 0x7f080007
int drawable ad_icon_volume_off 0x7f080008
int drawable bg_play 0x7f080009
int drawable bg_tudou_encrypt_dialog 0x7f08000a
int drawable btnbg 0x7f08000b
int drawable com_facebook_button_background 0x7f08000c
int drawable com_facebook_button_icon 0x7f08000d
int drawable com_facebook_button_like_background 0x7f08000e
int drawable com_facebook_button_like_icon_selected 0x7f08000f
int drawable com_facebook_button_login_silver_background 0x7f080010
int drawable com_facebook_button_send_background 0x7f080011
int drawable com_facebook_button_send_icon 0x7f080012
int drawable com_facebook_close 0x7f080013
int drawable com_facebook_profile_picture_blank_portrait 0x7f080014
int drawable com_facebook_profile_picture_blank_square 0x7f080015
int drawable com_facebook_tooltip_black_background 0x7f080016
int drawable com_facebook_tooltip_black_bottomnub 0x7f080017
int drawable com_facebook_tooltip_black_topnub 0x7f080018
int drawable com_facebook_tooltip_black_xout 0x7f080019
int drawable com_facebook_tooltip_blue_background 0x7f08001a
int drawable com_facebook_tooltip_blue_bottomnub 0x7f08001b
int drawable com_facebook_tooltip_blue_topnub 0x7f08001c
int drawable com_facebook_tooltip_blue_xout 0x7f08001d
int drawable detail_play_btn_full_screen 0x7f08001e
int drawable dialog_background 0x7f08001f
int drawable dialog_button1 0x7f080020
int drawable dialog_button2 0x7f080021
int drawable edit_view_bg 0x7f080022
int drawable editbg 0x7f080023
int drawable fenxiang 0x7f080024
int drawable full_icon_back 0x7f080025
int drawable full_icon_out 0x7f080026
int drawable gengxin 0x7f080027
int drawable hotpoint_img 0x7f080028
int drawable ic_ab_app 0x7f080029
int drawable ic_ab_done 0x7f08002a
int drawable ic_launcher 0x7f08002b
int drawable icon_fullscreen 0x7f08002c
int drawable icon_pause 0x7f08002d
int drawable icon_play 0x7f08002e
int drawable icon_scrubbarslider 0x7f08002f
int drawable info_icon_1 0x7f080030
int drawable loading_frame1 0x7f080031
int drawable loading_frame2 0x7f080032
int drawable loading_frame3 0x7f080033
int drawable loading_frame4 0x7f080034
int drawable messenger_bubble_large_blue 0x7f080035
int drawable messenger_bubble_large_white 0x7f080036
int drawable messenger_bubble_small_blue 0x7f080037
int drawable messenger_bubble_small_white 0x7f080038
int drawable messenger_button_blue_bg_round 0x7f080039
int drawable messenger_button_blue_bg_selector 0x7f08003a
int drawable messenger_button_send_round_shadow 0x7f08003b
int drawable messenger_button_white_bg_round 0x7f08003c
int drawable messenger_button_white_bg_selector 0x7f08003d
int drawable nonedrawable 0x7f08003e
int drawable notification_action_background 0x7f08003f
int drawable notification_bg 0x7f080040
int drawable notification_bg_low 0x7f080041
int drawable notification_bg_low_normal 0x7f080042
int drawable notification_bg_low_pressed 0x7f080043
int drawable notification_bg_normal 0x7f080044
int drawable notification_bg_normal_pressed 0x7f080045
int drawable notification_icon_background 0x7f080046
int drawable notification_template_icon_bg 0x7f080047
int drawable notification_template_icon_low_bg 0x7f080048
int drawable notification_tile_bg 0x7f080049
int drawable notify_panel_notification_icon_bg 0x7f08004a
int drawable play_btn_pause_big 0x7f08004b
int drawable play_btn_pause_big_detail 0x7f08004c
int drawable play_btn_pause_big_detail_down 0x7f08004d
int drawable play_btn_play_big 0x7f08004e
int drawable play_btn_play_big_detail 0x7f08004f
int drawable play_btn_play_big_detail_down 0x7f080050
int drawable play_btn_shrink 0x7f080051
int drawable play_over_next_episode 0x7f080052
int drawable play_over_replay 0x7f080053
int drawable play_title_bkg 0x7f080054
int drawable player_canvas 0x7f080055
int drawable player_logo_youku 0x7f080056
int drawable plugin_ad_gofull 0x7f080057
int drawable plugin_ad_gofull_tudou 0x7f080058
int drawable plugin_ad_gofull_youku 0x7f080059
int drawable plugin_ad_gosmall 0x7f08005a
int drawable plugin_ad_gosmall_tudou 0x7f08005b
int drawable plugin_ad_gosmall_youku 0x7f08005c
int drawable plugin_ad_more_youku 0x7f08005d
int drawable popwinselector 0x7f08005e
int drawable quality_bkg 0x7f08005f
int drawable seekbar_bkg 0x7f080060
int drawable seekbar_front_progress 0x7f080061
int drawable seekbar_second_progress 0x7f080062
int drawable selector_button 0x7f080063
int drawable shake_umeng_socialize_close 0x7f080064
int drawable shake_umeng_socialize_close_button_style 0x7f080065
int drawable shake_umeng_socialize_close_pressed 0x7f080066
int drawable shake_umeng_socialize_edittext_corner 0x7f080067
int drawable shake_umeng_socialize_imgview_border 0x7f080068
int drawable shake_umeng_socialize_preview_edit_corners_style 0x7f080069
int drawable shake_umeng_socialize_shake_layout_corner 0x7f08006a
int drawable shake_umeng_socialize_share_btn_style 0x7f08006b
int drawable shape_update_left 0x7f08006c
int drawable shape_update_right 0x7f08006d
int drawable tab_indicator_normal 0x7f08006e
int drawable tab_indicator_pressed_color 0x7f08006f
int drawable tudou_details_big_play_icon 0x7f080070
int drawable umeng_arrow 0x7f080071
int drawable umeng_back_icon 0x7f080072
int drawable umeng_socialize_action_back 0x7f080073
int drawable umeng_socialize_action_back_normal 0x7f080074
int drawable umeng_socialize_action_back_selected 0x7f080075
int drawable umeng_socialize_back_icon 0x7f080076
int drawable umeng_socialize_bind_bg 0x7f080077
int drawable umeng_socialize_btn_bg 0x7f080078
int drawable umeng_socialize_button_blue 0x7f080079
int drawable umeng_socialize_button_grey 0x7f08007a
int drawable umeng_socialize_button_grey_blue 0x7f08007b
int drawable umeng_socialize_button_login 0x7f08007c
int drawable umeng_socialize_button_login_normal 0x7f08007d
int drawable umeng_socialize_button_login_pressed 0x7f08007e
int drawable umeng_socialize_button_red 0x7f08007f
int drawable umeng_socialize_button_red_blue 0x7f080080
int drawable umeng_socialize_button_white 0x7f080081
int drawable umeng_socialize_button_white_blue 0x7f080082
int drawable umeng_socialize_checked 0x7f080083
int drawable umeng_socialize_comment_bg 0x7f080084
int drawable umeng_socialize_comment_icon 0x7f080085
int drawable umeng_socialize_comment_item_bg_shape 0x7f080086
int drawable umeng_socialize_comment_normal 0x7f080087
int drawable umeng_socialize_comment_selected 0x7f080088
int drawable umeng_socialize_commnet_header_bg 0x7f080089
int drawable umeng_socialize_copy 0x7f08008a
int drawable umeng_socialize_copyurl 0x7f08008b
int drawable umeng_socialize_default_avatar 0x7f08008c
int drawable umeng_socialize_delete 0x7f08008d
int drawable umeng_socialize_ding 0x7f08008e
int drawable umeng_socialize_divider_line 0x7f08008f
int drawable umeng_socialize_douban 0x7f080090
int drawable umeng_socialize_douban_off 0x7f080091
int drawable umeng_socialize_douban_on 0x7f080092
int drawable umeng_socialize_dropbox 0x7f080093
int drawable umeng_socialize_edit_bg 0x7f080094
int drawable umeng_socialize_evernote 0x7f080095
int drawable umeng_socialize_evernote_gray 0x7f080096
int drawable umeng_socialize_facebook 0x7f080097
int drawable umeng_socialize_facebook_close 0x7f080098
int drawable umeng_socialize_facebook_off 0x7f080099
int drawable umeng_socialize_fav 0x7f08009a
int drawable umeng_socialize_fbmessage 0x7f08009b
int drawable umeng_socialize_fetch_image 0x7f08009c
int drawable umeng_socialize_fetch_location_disabled 0x7f08009d
int drawable umeng_socialize_flickr 0x7f08009e
int drawable umeng_socialize_flickr_gray 0x7f08009f
int drawable umeng_socialize_follow_check 0x7f0800a0
int drawable umeng_socialize_follow_off 0x7f0800a1
int drawable umeng_socialize_follow_on 0x7f0800a2
int drawable umeng_socialize_foursquare 0x7f0800a3
int drawable umeng_socialize_foursquare_gray 0x7f0800a4
int drawable umeng_socialize_gmail 0x7f0800a5
int drawable umeng_socialize_gmail_off 0x7f0800a6
int drawable umeng_socialize_gmail_on 0x7f0800a7
int drawable umeng_socialize_google 0x7f0800a8
int drawable umeng_socialize_instagram 0x7f0800a9
int drawable umeng_socialize_instagram_off 0x7f0800aa
int drawable umeng_socialize_instagram_on 0x7f0800ab
int drawable umeng_socialize_kakao 0x7f0800ac
int drawable umeng_socialize_kakao_gray 0x7f0800ad
int drawable umeng_socialize_laiwang 0x7f0800ae
int drawable umeng_socialize_laiwang_dynamic 0x7f0800af
int drawable umeng_socialize_laiwang_dynamic_gray 0x7f0800b0
int drawable umeng_socialize_light_bar_bg_pad 0x7f0800b1
int drawable umeng_socialize_location_grey 0x7f0800b2
int drawable umeng_socialize_location_ic 0x7f0800b3
int drawable umeng_socialize_location_mark 0x7f0800b4
int drawable umeng_socialize_location_off 0x7f0800b5
int drawable umeng_socialize_location_on 0x7f0800b6
int drawable umeng_socialize_menu_default 0x7f0800b7
int drawable umeng_socialize_more 0x7f0800b8
int drawable umeng_socialize_nav_bar_bg 0x7f0800b9
int drawable umeng_socialize_nav_bar_bg_pad 0x7f0800ba
int drawable umeng_socialize_oauth_check 0x7f0800bb
int drawable umeng_socialize_oauth_check_off 0x7f0800bc
int drawable umeng_socialize_oauth_check_on 0x7f0800bd
int drawable umeng_socialize_pinterest 0x7f0800be
int drawable umeng_socialize_pinterest_gray 0x7f0800bf
int drawable umeng_socialize_pocket 0x7f0800c0
int drawable umeng_socialize_pocket_gray 0x7f0800c1
int drawable umeng_socialize_pulltorefresh_arrow 0x7f0800c2
int drawable umeng_socialize_pv 0x7f0800c3
int drawable umeng_socialize_qq 0x7f0800c4
int drawable umeng_socialize_qq_off 0x7f0800c5
int drawable umeng_socialize_qq_on 0x7f0800c6
int drawable umeng_socialize_refersh 0x7f0800c7
int drawable umeng_socialize_search_icon 0x7f0800c8
int drawable umeng_socialize_shape_solid_black 0x7f0800c9
int drawable umeng_socialize_shape_solid_grey 0x7f0800ca
int drawable umeng_socialize_share_music 0x7f0800cb
int drawable umeng_socialize_share_pic 0x7f0800cc
int drawable umeng_socialize_share_to_button 0x7f0800cd
int drawable umeng_socialize_share_transparent_corner 0x7f0800ce
int drawable umeng_socialize_share_video 0x7f0800cf
int drawable umeng_socialize_shareboard_item_background 0x7f0800d0
int drawable umeng_socialize_sidebar_normal 0x7f0800d1
int drawable umeng_socialize_sidebar_selected 0x7f0800d2
int drawable umeng_socialize_sidebar_selector 0x7f0800d3
int drawable umeng_socialize_sina 0x7f0800d4
int drawable umeng_socialize_sina_off 0x7f0800d5
int drawable umeng_socialize_sina_on 0x7f0800d6
int drawable umeng_socialize_sms_off 0x7f0800d7
int drawable umeng_socialize_sms_on 0x7f0800d8
int drawable umeng_socialize_switchimage_choose 0x7f0800d9
int drawable umeng_socialize_switchimage_unchoose 0x7f0800da
int drawable umeng_socialize_title_back_bt 0x7f0800db
int drawable umeng_socialize_title_back_bt_normal 0x7f0800dc
int drawable umeng_socialize_title_back_bt_selected 0x7f0800dd
int drawable umeng_socialize_title_right_bt 0x7f0800de
int drawable umeng_socialize_title_right_bt_normal 0x7f0800df
int drawable umeng_socialize_title_right_bt_selected 0x7f0800e0
int drawable umeng_socialize_title_tab_button_left 0x7f0800e1
int drawable umeng_socialize_title_tab_button_right 0x7f0800e2
int drawable umeng_socialize_title_tab_left_normal 0x7f0800e3
int drawable umeng_socialize_title_tab_left_pressed 0x7f0800e4
int drawable umeng_socialize_title_tab_right_normal 0x7f0800e5
int drawable umeng_socialize_title_tab_right_pressed 0x7f0800e6
int drawable umeng_socialize_wechat 0x7f0800e7
int drawable umeng_socialize_wechat_gray 0x7f0800e8
int drawable umeng_socialize_window_shadow_pad 0x7f0800e9
int drawable umeng_socialize_x_button 0x7f0800ea
int drawable umeng_socialize_ynote 0x7f0800eb
int drawable umeng_socialize_ynote_gray 0x7f0800ec
int drawable umsocial_defaultwatermark 0x7f0800ed
int drawable update_bottom 0x7f0800ee
int drawable vertical_icon_back 0x7f0800ef
int drawable vertical_logo 0x7f0800f0
int drawable vidqbg 0x7f0800f1
int drawable vidqtxt 0x7f0800f2
int drawable vk_clear_shape 0x7f0800f3
int drawable vk_gray_transparent_shape 0x7f0800f4
int drawable vk_icon 0x7f0800f5
int drawable vk_share_send_button_background 0x7f0800f6
int drawable volumn_bg 0x7f0800f7
int drawable volumn_front 0x7f0800f8
int drawable volumn_primary 0x7f0800f9
int drawable water 0x7f0800fa
int drawable yp_detail_icon_schedule_ball 0x7f0800fb
int drawable yp_mobile_loading 0x7f0800fc
int drawable yp_progress_holo_light 0x7f0800fd
int drawable yp_progressbarstyle 0x7f0800fe
int drawable yp_progressthumbstyle 0x7f0800ff
int drawable yp_tudou_encrypt_input_box 0x7f080100
int id RelativeLayout01 0x7f0b0001
int id action0 0x7f0b0002
int id action_container 0x7f0b0003
int id action_divider 0x7f0b0004
int id action_image 0x7f0b0005
int id action_text 0x7f0b0006
int id actions 0x7f0b0007
int id ad_more 0x7f0b0008
int id ad_page_holder 0x7f0b0009
int id adapter_image 0x7f0b000a
int id adv_img_close_imgview 0x7f0b000b
int id adv_img_hint_textview 0x7f0b000c
int id adv_img_imgview 0x7f0b000d
int id async 0x7f0b000e
int id attachmentLinkLayout 0x7f0b000f
int id auth_button 0x7f0b0010
int id automatic 0x7f0b0011
int id blocking 0x7f0b0012
int id bottom 0x7f0b0013
int id box_count 0x7f0b0014
int id button 0x7f0b0015
int id cancel_action 0x7f0b0016
int id captchaAnswer 0x7f0b0017
int id captcha_container 0x7f0b0018
int id center 0x7f0b0019
int id checkalipay 0x7f0b001a
int id checkbtn 0x7f0b001b
int id checkfb 0x7f0b001c
int id checkqq 0x7f0b001d
int id checksign 0x7f0b001e
int id checksina 0x7f0b001f
int id checkvk 0x7f0b0020
int id checkwx 0x7f0b0021
int id chronometer 0x7f0b0022
int id com_facebook_fragment_container 0x7f0b0023
int id com_facebook_login_activity_progress_bar 0x7f0b0024
int id content_view_per 0x7f0b0025
int id content_view_text1 0x7f0b0026
int id copyUrl 0x7f0b0027
int id cur_vidq 0x7f0b0028
int id current_time 0x7f0b0029
int id detail_play_load_name 0x7f0b002a
int id display_always 0x7f0b002b
int id divider 0x7f0b002c
int id editcheck 0x7f0b002d
int id end 0x7f0b002e
int id end_padder 0x7f0b002f
int id fl_interact 0x7f0b0030
int id forever 0x7f0b0031
int id full_holder_inner 0x7f0b0032
int id getbtn 0x7f0b0033
int id go_retry 0x7f0b0034
int id gofullscreen 0x7f0b0035
int id header_back 0x7f0b0036
int id hotPointView 0x7f0b0037
int id ib_detail_play_control 0x7f0b0038
int id ib_detail_play_full 0x7f0b0039
int id ib_user_play 0x7f0b003a
int id icon 0x7f0b003b
int id icon_group 0x7f0b003c
int id imageView 0x7f0b003d
int id imagesContainer 0x7f0b003e
int id imagesScrollView 0x7f0b003f
int id img_ad_layout 0x7f0b0040
int id info 0x7f0b0041
int id inline 0x7f0b0042
int id italic 0x7f0b0043
int id large 0x7f0b0044
int id layout_play_control 0x7f0b0045
int id layout_pop_top 0x7f0b0046
int id layout_title 0x7f0b0047
int id left 0x7f0b0048
int id li1 0x7f0b0049
int id line1 0x7f0b004a
int id line3 0x7f0b004b
int id linkHost 0x7f0b004c
int id linkTitle 0x7f0b004d
int id list 0x7f0b004e
int id ll_detail_container 0x7f0b004f
int id ll_detail_end 0x7f0b0050
int id ll_next_play 0x7f0b0051
int id ll_replay 0x7f0b0052
int id load_seekbar_container 0x7f0b0053
int id loading_info_seekbar 0x7f0b0054
int id loading_seekbar 0x7f0b0055
int id loading_tips 0x7f0b0056
int id logo_view 0x7f0b0057
int id media_actions 0x7f0b0058
int id my_ad_bottom 0x7f0b0059
int id my_ad_count 0x7f0b005a
int id my_ad_count_wrap 0x7f0b005b
int id my_ad_remove 0x7f0b005c
int id my_ad_volume 0x7f0b005d
int id name 0x7f0b005e
int id never_display 0x7f0b005f
int id newLoading_play 0x7f0b0060
int id noitfy_icon 0x7f0b0061
int id none 0x7f0b0062
int id normal 0x7f0b0063
int id notification_background 0x7f0b0064
int id notification_main_column 0x7f0b0065
int id notification_main_column_container 0x7f0b0066
int id notify_linearLayout1 0x7f0b0067
int id notify_linearLayout2 0x7f0b0068
int id notify_linearLayout3 0x7f0b0069
int id notify_processbar 0x7f0b006a
int id notify_speed 0x7f0b006b
int id notify_state 0x7f0b006c
int id notify_text 0x7f0b006d
int id open_graph 0x7f0b006e
int id page 0x7f0b006f
int id password_edit 0x7f0b0070
int id play_controller_header 0x7f0b0071
int id player_back 0x7f0b0072
int id player_holder_all 0x7f0b0073
int id player_view_all 0x7f0b0074
int id postContentLayout 0x7f0b0075
int id postSettingsLayout 0x7f0b0076
int id progress 0x7f0b0077
int id progressBar 0x7f0b0078
int id progress_bar 0x7f0b0079
int id progress_bar_parent 0x7f0b007a
int id result 0x7f0b007b
int id right 0x7f0b007c
int id right_icon 0x7f0b007d
int id right_side 0x7f0b007e
int id rl_restart 0x7f0b007f
int id root 0x7f0b0080
int id sb_detail_play_progress 0x7f0b0081
int id seek_loading_bg 0x7f0b0082
int id sendButton 0x7f0b0083
int id sendButtonLayout 0x7f0b0084
int id sendProgress 0x7f0b0085
int id shareText 0x7f0b0086
int id small 0x7f0b0087
int id socialize_image_view 0x7f0b0088
int id socialize_text_view 0x7f0b0089
int id space_bottom 0x7f0b008a
int id space_left 0x7f0b008b
int id space_middle 0x7f0b008c
int id space_right 0x7f0b008d
int id space_top 0x7f0b008e
int id standard 0x7f0b008f
int id start 0x7f0b0090
int id status_bar_latest_event_content 0x7f0b0091
int id surface_black 0x7f0b0092
int id surface_view 0x7f0b0093
int id surface_view_debug 0x7f0b0094
int id tag_transition_group 0x7f0b0095
int id text 0x7f0b0096
int id text2 0x7f0b0097
int id time 0x7f0b0098
int id title 0x7f0b0099
int id title_back 0x7f0b009a
int id title_bar 0x7f0b009b
int id title_logo 0x7f0b009c
int id top 0x7f0b009d
int id topBarLayout 0x7f0b009e
int id total_time 0x7f0b009f
int id tudou_dialog_cancel 0x7f0b00a0
int id tudou_dialog_confirm 0x7f0b00a1
int id tudou_dialog_sub_title 0x7f0b00a2
int id tudou_dialog_title 0x7f0b00a3
int id tudou_vertical_line 0x7f0b00a4
int id tv_atonce_update 0x7f0b00a5
int id tv_detail_play_title 0x7f0b00a6
int id tv_dialog_content 0x7f0b00a7
int id tv_dialog_noti_wifi 0x7f0b00a8
int id tv_dialog_title 0x7f0b00a9
int id tv_no_update 0x7f0b00aa
int id tv_size 0x7f0b00ab
int id tv_version 0x7f0b00ac
int id umeng_back 0x7f0b00ad
int id umeng_clear 0x7f0b00ae
int id umeng_copy 0x7f0b00af
int id umeng_del 0x7f0b00b0
int id umeng_image_edge 0x7f0b00b1
int id umeng_menu_bottom 0x7f0b00b2
int id umeng_menu_bottom2 0x7f0b00b3
int id umeng_menu_center 0x7f0b00b4
int id umeng_menu_center2 0x7f0b00b5
int id umeng_share_btn 0x7f0b00b6
int id umeng_share_icon 0x7f0b00b7
int id umeng_socialize_follow 0x7f0b00b8
int id umeng_socialize_follow_check 0x7f0b00b9
int id umeng_socialize_share_bottom_area 0x7f0b00ba
int id umeng_socialize_share_edittext 0x7f0b00bb
int id umeng_socialize_share_titlebar 0x7f0b00bc
int id umeng_socialize_share_word_num 0x7f0b00bd
int id umeng_socialize_titlebar 0x7f0b00be
int id umeng_title 0x7f0b00bf
int id umeng_web_title 0x7f0b00c0
int id unknown 0x7f0b00c1
int id view_restart 0x7f0b00c2
int id vq0 0x7f0b00c3
int id vq1 0x7f0b00c4
int id vq2 0x7f0b00c5
int id webView 0x7f0b00c6
int id webview 0x7f0b00c7
int integer cancel_button_image_alpha 0x7f0c0001
int integer status_bar_notification_info_maxnum 0x7f0c0002
int layout app_authadapter 0x7f0e0001
int layout app_shareadapter 0x7f0e0002
int layout app_styleadapter 0x7f0e0003
int layout com_facebook_activity_layout 0x7f0e0004
int layout com_facebook_login_fragment 0x7f0e0005
int layout custom_dialog 0x7f0e0006
int layout infodetail 0x7f0e0007
int layout notification_action 0x7f0e0008
int layout notification_action_tombstone 0x7f0e0009
int layout notification_media_action 0x7f0e000a
int layout notification_media_cancel_action 0x7f0e000b
int layout notification_template_big_media 0x7f0e000c
int layout notification_template_big_media_custom 0x7f0e000d
int layout notification_template_big_media_narrow 0x7f0e000e
int layout notification_template_big_media_narrow_custom 0x7f0e000f
int layout notification_template_custom_big 0x7f0e0010
int layout notification_template_icon_group 0x7f0e0011
int layout notification_template_lines_media 0x7f0e0012
int layout notification_template_media 0x7f0e0013
int layout notification_template_media_custom 0x7f0e0014
int layout notification_template_part_chronometer 0x7f0e0015
int layout notification_template_part_time 0x7f0e0016
int layout notify 0x7f0e0017
int layout notify_item 0x7f0e0018
int layout share_detail 0x7f0e0019
int layout socialize_share_menu_item 0x7f0e001a
int layout titlebar 0x7f0e001b
int layout umeng_auth 0x7f0e001c
int layout umeng_check 0x7f0e001d
int layout umeng_menu 0x7f0e001e
int layout umeng_share 0x7f0e001f
int layout umeng_socialize_activity_kakao_webview 0x7f0e0020
int layout umeng_socialize_oauth_dialog 0x7f0e0021
int layout umeng_socialize_share 0x7f0e0022
int layout vidqitem 0x7f0e0023
int layout vk_captcha_dialog 0x7f0e0024
int layout vk_open_auth_dialog 0x7f0e0025
int layout vk_share_dialog 0x7f0e0026
int layout yp_detail_bottom_play_control 0x7f0e0027
int layout yp_detail_loading_info_page 0x7f0e0028
int layout yp_detail_play_end_page 0x7f0e0029
int layout yp_detail_play_loading 0x7f0e002a
int layout yp_detail_play_title 0x7f0e002b
int layout yp_detail_retry 0x7f0e002c
int layout yp_player_ad_youku 0x7f0e002d
int layout yp_player_container 0x7f0e002e
int layout yp_player_view 0x7f0e002f
int layout yp_plugin_detail_play_interact 0x7f0e0030
int layout yp_tudou_encrypt_dialog 0x7f0e0031
int layout yp_youku_dialog_password_interact 0x7f0e0032
int raw aes 0x7f130001
int raw mediaplayer_configuration 0x7f130002
int raw shake_sound 0x7f130003
int string Player_error_f100 0x7f140001
int string Player_error_timeout 0x7f140002
int string WIFI_NOTI 0x7f140003
int string alert_dialog_cancel 0x7f140004
int string alert_dialog_ok 0x7f140005
int string app_name 0x7f140006
int string cancel 0x7f140007
int string choice_download_mode 0x7f140008
int string com_facebook_dialogloginactivity_ok_button 0x7f140009
int string com_facebook_image_download_unknown_error 0x7f14000a
int string com_facebook_internet_permission_error_message 0x7f14000b
int string com_facebook_internet_permission_error_title 0x7f14000c
int string com_facebook_like_button_liked 0x7f14000d
int string com_facebook_like_button_not_liked 0x7f14000e
int string com_facebook_loading 0x7f14000f
int string com_facebook_loginview_cancel_action 0x7f140010
int string com_facebook_loginview_log_in_button 0x7f140011
int string com_facebook_loginview_log_in_button_long 0x7f140012
int string com_facebook_loginview_log_out_action 0x7f140013
int string com_facebook_loginview_log_out_button 0x7f140014
int string com_facebook_loginview_logged_in_as 0x7f140015
int string com_facebook_loginview_logged_in_using_facebook 0x7f140016
int string com_facebook_requesterror_password_changed 0x7f140017
int string com_facebook_requesterror_permissions 0x7f140018
int string com_facebook_requesterror_reconnect 0x7f140019
int string com_facebook_send_button_text 0x7f14001a
int string com_facebook_share_button_text 0x7f14001b
int string com_facebook_tooltip_default 0x7f14001c
int string complete 0x7f14001d
int string confirm 0x7f14001e
int string delete_my_tag_message 0x7f14001f
int string delete_my_tag_title 0x7f140020
int string detail_cartoon 0x7f140021
int string detail_education 0x7f140022
int string detail_entertainment 0x7f140023
int string detail_memory 0x7f140024
int string detail_movie 0x7f140025
int string detail_music 0x7f140026
int string detail_special 0x7f140027
int string detail_tv 0x7f140028
int string detail_ugc 0x7f140029
int string detail_variety 0x7f14002a
int string download 0x7f14002b
int string download_add_failed 0x7f14002c
int string download_add_more 0x7f14002d
int string download_add_success 0x7f14002e
int string download_cannot_ues_3g 0x7f14002f
int string download_exist_finished 0x7f140030
int string download_exist_not_finished 0x7f140031
int string download_many_fail 0x7f140032
int string download_many_fail_no_space 0x7f140033
int string download_many_fail_timeout 0x7f140034
int string download_many_fail_unknown_error 0x7f140035
int string download_no_network 0x7f140036
int string download_no_sdcard 0x7f140037
int string download_no_space 0x7f140038
int string download_timeout 0x7f140039
int string download_unknown_error 0x7f14003a
int string download_write_fail 0x7f14003b
int string edite 0x7f14003c
int string facebook_app_id 0x7f14003d
int string flickr_content 0x7f14003e
int string flickr_no_client 0x7f14003f
int string flickr_no_content 0x7f140040
int string flickr_showword 0x7f140041
int string foursquare_content 0x7f140042
int string foursquare_no_client 0x7f140043
int string foursquare_showword 0x7f140044
int string high_pic 0x7f140045
int string kakao_content 0x7f140046
int string kakao_no_client 0x7f140047
int string kakao_no_content 0x7f140048
int string kakao_showword 0x7f140049
int string line_content 0x7f14004a
int string line_no_client 0x7f14004b
int string line_no_content 0x7f14004c
int string line_showword 0x7f14004d
int string linkedin_content 0x7f14004e
int string linkedin_no_client 0x7f14004f
int string linkedin_showword 0x7f140050
int string messenger_send_button_text 0x7f140051
int string no_copyright 0x7f140052
int string pause 0x7f140053
int string play_next 0x7f140054
int string player_error_dialog_password_required 0x7f140055
int string player_error_f101 0x7f140056
int string player_error_f102 0x7f140057
int string player_error_f105 0x7f140058
int string player_error_f105_see_others 0x7f140059
int string player_error_f106 0x7f14005a
int string player_error_f107 0x7f14005b
int string player_error_native 0x7f14005c
int string player_error_no_network 0x7f14005d
int string player_error_no_pay 0x7f14005e
int string player_error_url_is_nul 0x7f14005f
int string player_error_url_is_nul_tudou 0x7f140060
int string player_tip_loading 0x7f140061
int string player_tips_no_network 0x7f140062
int string player_tips_not_responding 0x7f140063
int string player_tips_use_3g 0x7f140064
int string player_webview_mail_app_not_found 0x7f140065
int string player_webview_refresh 0x7f140066
int string player_webview_tip 0x7f140067
int string player_webview_wrong_address 0x7f140068
int string playersdk_ad_descrip_play_youku 0x7f140069
int string playersdk_ad_descrip_second 0x7f14006a
int string playersdk_ad_descrip_youku 0x7f14006b
int string playersdk_ad_hint_tologin_cancel 0x7f14006c
int string playersdk_ad_hint_tologin_des 0x7f14006d
int string playersdk_ad_hint_tologin_ok 0x7f14006e
int string playersdk_ad_skip 0x7f14006f
int string pocket_content 0x7f140070
int string pocket_no_client 0x7f140071
int string pocket_showword 0x7f140072
int string pull_to_refresh_pull_label 0x7f140073
int string pull_to_refresh_refreshing_label 0x7f140074
int string pull_to_refresh_release_label 0x7f140075
int string pull_to_refresh_tap_label 0x7f140076
int string replay 0x7f140077
int string standard_pic 0x7f140078
int string status_bar_notification_info_overflow 0x7f140079
int string super_pic 0x7f14007a
int string tips_no_cache 0x7f14007b
int string tips_no_network 0x7f14007c
int string tips_not_responding 0x7f14007d
int string tudou_dialog_sub_title 0x7f14007e
int string tudou_dialog_title 0x7f14007f
int string tumblr_content 0x7f140080
int string tumblr_no_client 0x7f140081
int string tumblr_no_content 0x7f140082
int string tumblr_showword 0x7f140083
int string umeng_auth_title 0x7f140084
int string umeng_check_alipay 0x7f140085
int string umeng_check_fb 0x7f140086
int string umeng_check_qq 0x7f140087
int string umeng_check_sign 0x7f140088
int string umeng_check_sina 0x7f140089
int string umeng_check_title 0x7f14008a
int string umeng_check_vk 0x7f14008b
int string umeng_check_wx 0x7f14008c
int string umeng_choose_style 0x7f14008d
int string umeng_delauth_title 0x7f14008e
int string umeng_example_home_btn_plus 0x7f14008f
int string umeng_getinfo_title 0x7f140090
int string umeng_home_title 0x7f140091
int string umeng_home_update 0x7f140092
int string umeng_menu_title 0x7f140093
int string umeng_share_title 0x7f140094
int string umeng_sharebutton_copy 0x7f140095
int string umeng_sharebutton_copyurl 0x7f140096
int string umeng_socialize_back 0x7f140097
int string umeng_socialize_cancel_btn_str 0x7f140098
int string umeng_socialize_comment 0x7f140099
int string umeng_socialize_comment_detail 0x7f14009a
int string umeng_socialize_content_hint 0x7f14009b
int string umeng_socialize_female 0x7f14009c
int string umeng_socialize_friends 0x7f14009d
int string umeng_socialize_img_des 0x7f14009e
int string umeng_socialize_laiwang_default_content 0x7f14009f
int string umeng_socialize_login 0x7f1400a0
int string umeng_socialize_login_qq 0x7f1400a1
int string umeng_socialize_mail 0x7f1400a2
int string umeng_socialize_male 0x7f1400a3
int string umeng_socialize_msg_hor 0x7f1400a4
int string umeng_socialize_msg_min 0x7f1400a5
int string umeng_socialize_msg_sec 0x7f1400a6
int string umeng_socialize_near_At 0x7f1400a7
int string umeng_socialize_network_break_alert 0x7f1400a8
int string umeng_socialize_send 0x7f1400a9
int string umeng_socialize_send_btn_str 0x7f1400aa
int string umeng_socialize_share 0x7f1400ab
int string umeng_socialize_share_content 0x7f1400ac
int string umeng_socialize_sharetodouban 0x7f1400ad
int string umeng_socialize_sharetolinkin 0x7f1400ae
int string umeng_socialize_sharetorenren 0x7f1400af
int string umeng_socialize_sharetosina 0x7f1400b0
int string umeng_socialize_sharetotencent 0x7f1400b1
int string umeng_socialize_sharetotwitter 0x7f1400b2
int string umeng_socialize_sina 0x7f1400b3
int string umeng_socialize_sms 0x7f1400b4
int string umeng_socialize_text_add_custom_platform 0x7f1400b5
int string umeng_socialize_text_alipay_key 0x7f1400b6
int string umeng_socialize_text_authorize 0x7f1400b7
int string umeng_socialize_text_choose_account 0x7f1400b8
int string umeng_socialize_text_comment_hint 0x7f1400b9
int string umeng_socialize_text_dingding_key 0x7f1400ba
int string umeng_socialize_text_douban_key 0x7f1400bb
int string umeng_socialize_text_dropbox_key 0x7f1400bc
int string umeng_socialize_text_evernote_key 0x7f1400bd
int string umeng_socialize_text_facebook_key 0x7f1400be
int string umeng_socialize_text_facebookmessager_key 0x7f1400bf
int string umeng_socialize_text_flickr_key 0x7f1400c0
int string umeng_socialize_text_foursquare_key 0x7f1400c1
int string umeng_socialize_text_friend_list 0x7f1400c2
int string umeng_socialize_text_googleplus_key 0x7f1400c3
int string umeng_socialize_text_instagram_key 0x7f1400c4
int string umeng_socialize_text_kakao_key 0x7f1400c5
int string umeng_socialize_text_laiwang_dynamic_key 0x7f1400c6
int string umeng_socialize_text_laiwang_key 0x7f1400c7
int string umeng_socialize_text_laiwangdynamic_key 0x7f1400c8
int string umeng_socialize_text_line_key 0x7f1400c9
int string umeng_socialize_text_linkedin_key 0x7f1400ca
int string umeng_socialize_text_loading_message 0x7f1400cb
int string umeng_socialize_text_login_fail 0x7f1400cc
int string umeng_socialize_text_more_key 0x7f1400cd
int string umeng_socialize_text_pinterest_key 0x7f1400ce
int string umeng_socialize_text_pocket_key 0x7f1400cf
int string umeng_socialize_text_qq_key 0x7f1400d0
int string umeng_socialize_text_qq_zone_key 0x7f1400d1
int string umeng_socialize_text_renren_key 0x7f1400d2
int string umeng_socialize_text_sina_key 0x7f1400d3
int string umeng_socialize_text_tencent_key 0x7f1400d4
int string umeng_socialize_text_tencent_no_connection 0x7f1400d5
int string umeng_socialize_text_tencent_no_install 0x7f1400d6
int string umeng_socialize_text_tencent_oauth_login_fail 0x7f1400d7
int string umeng_socialize_text_tencent_version_no_match 0x7f1400d8
int string umeng_socialize_text_tumblr_key 0x7f1400d9
int string umeng_socialize_text_twitter_key 0x7f1400da
int string umeng_socialize_text_ucenter 0x7f1400db
int string umeng_socialize_text_unauthorize 0x7f1400dc
int string umeng_socialize_text_visitor 0x7f1400dd
int string umeng_socialize_text_vkontakte_key 0x7f1400de
int string umeng_socialize_text_waitting 0x7f1400df
int string umeng_socialize_text_waitting_message 0x7f1400e0
int string umeng_socialize_text_waitting_qq 0x7f1400e1
int string umeng_socialize_text_waitting_qzone 0x7f1400e2
int string umeng_socialize_text_waitting_redirect 0x7f1400e3
int string umeng_socialize_text_waitting_share 0x7f1400e4
int string umeng_socialize_text_waitting_weixin 0x7f1400e5
int string umeng_socialize_text_waitting_weixin_circle 0x7f1400e6
int string umeng_socialize_text_waitting_yixin 0x7f1400e7
int string umeng_socialize_text_waitting_yixin_circle 0x7f1400e8
int string umeng_socialize_text_weixin_circle_key 0x7f1400e9
int string umeng_socialize_text_weixin_fav_key 0x7f1400ea
int string umeng_socialize_text_weixin_key 0x7f1400eb
int string umeng_socialize_text_wenxin_fav 0x7f1400ec
int string umeng_socialize_text_whatsapp_key 0x7f1400ed
int string umeng_socialize_text_ydnote_key 0x7f1400ee
int string umeng_socialize_text_yixin_key 0x7f1400ef
int string umeng_socialize_text_yixincircle_key 0x7f1400f0
int string umeng_socialize_tip_blacklist 0x7f1400f1
int string umeng_socialize_tip_loginfailed 0x7f1400f2
int string umeng_socialize_ucenter_login_title_guide 0x7f1400f3
int string umeng_socialize_ucenter_login_title_platform 0x7f1400f4
int string umeng_update_content 0x7f1400f5
int string update_linkedin_app_cancel 0x7f1400f6
int string update_linkedin_app_download 0x7f1400f7
int string update_linkedin_app_message 0x7f1400f8
int string update_linkedin_app_title 0x7f1400f9
int string vk_enter_captcha_text 0x7f1400fa
int string vk_name 0x7f1400fb
int string vk_new_message_text 0x7f1400fc
int string vk_new_post_settings 0x7f1400fd
int string vk_retry 0x7f1400fe
int string vk_send 0x7f1400ff
int string vk_share 0x7f140100
int string wait 0x7f140101
int string whatsapp_content 0x7f140102
int string whatsapp_no_client 0x7f140103
int string whatsapp_no_content 0x7f140104
int string whatsapp_showword 0x7f140105
int string ynote_content 0x7f140106
int string ynote_no_client 0x7f140107
int string ynote_no_content 0x7f140108
int string ynote_showword 0x7f140109
int style ACPLDialog 0x7f150001
int style AppBaseTheme 0x7f150002
int style AppTheme 0x7f150003
int style Dialog 0x7f150004
int style Dialog_Fullscreen 0x7f150005
int style Font1_blue_2bb5fc 0x7f150006
int style Font1_gray_333333 0x7f150007
int style Font1_white 0x7f150008
int style Font2_black 0x7f150009
int style Font2_blue_29abe2 0x7f15000a
int style Font2_blue_2bb5fc 0x7f15000b
int style Font2_gray_333333 0x7f15000c
int style Font2_gray_666666 0x7f15000d
int style Font2_gray_999999 0x7f15000e
int style Font2_white 0x7f15000f
int style Font3_black 0x7f150010
int style Font3_blue_29abe2 0x7f150011
int style Font3_gray_333333 0x7f150012
int style Font3_gray_666666 0x7f150013
int style Font3_gray_8c8c8c 0x7f150014
int style Font3_gray_999999 0x7f150015
int style Font3_gray_e2e2e2 0x7f150016
int style Font3_red_ff5a5a 0x7f150017
int style Font3_white 0x7f150018
int style Font4_black 0x7f150019
int style Font4_blue_2bb5fc 0x7f15001a
int style Font4_gray_333333 0x7f15001b
int style Font4_gray_666666 0x7f15001c
int style Font4_gray_909fa8 0x7f15001d
int style Font4_gray_999999 0x7f15001e
int style Font4_white 0x7f15001f
int style Font5_black 0x7f150020
int style Font5_blue_2bb5fc 0x7f150021
int style Font5_white 0x7f150022
int style Font5_white_80 0x7f150023
int style Font6_gray_666666 0x7f150024
int style Font6_white 0x7f150025
int style Font6_white_80 0x7f150026
int style Font7_gray_333333 0x7f150027
int style Font7_white 0x7f150028
int style Font8_blue_2bb5fc 0x7f150029
int style FontA 0x7f15002a
int style FontB 0x7f15002b
int style FontC 0x7f15002c
int style FontD 0x7f15002d
int style FontE 0x7f15002e
int style FontF 0x7f15002f
int style FontG 0x7f150030
int style FontH 0x7f150031
int style FontI 0x7f150032
int style FontJ 0x7f150033
int style FontL 0x7f150034
int style LoadingDialog 0x7f150035
int style MessengerButton 0x7f150036
int style MessengerButtonText 0x7f150037
int style MessengerButtonText_Blue 0x7f150038
int style MessengerButtonText_Blue_Large 0x7f150039
int style MessengerButtonText_Blue_Small 0x7f15003a
int style MessengerButtonText_White 0x7f15003b
int style MessengerButtonText_White_Large 0x7f15003c
int style MessengerButtonText_White_Small 0x7f15003d
int style MessengerButton_Blue 0x7f15003e
int style MessengerButton_Blue_Large 0x7f15003f
int style MessengerButton_Blue_Small 0x7f150040
int style MessengerButton_White 0x7f150041
int style MessengerButton_White_Large 0x7f150042
int style MessengerButton_White_Small 0x7f150043
int style NotificationText 0x7f150044
int style NotificationTitle 0x7f150045
int style Notitle_Fullscreen 0x7f150046
int style OverflowButton 0x7f150047
int style StyleBarTitle 0x7f150048
int style TextAppearance_Compat_Notification 0x7f150049
int style TextAppearance_Compat_Notification_Info 0x7f15004a
int style TextAppearance_Compat_Notification_Info_Media 0x7f15004b
int style TextAppearance_Compat_Notification_Line2 0x7f15004c
int style TextAppearance_Compat_Notification_Line2_Media 0x7f15004d
int style TextAppearance_Compat_Notification_Media 0x7f15004e
int style TextAppearance_Compat_Notification_Time 0x7f15004f
int style TextAppearance_Compat_Notification_Time_Media 0x7f150050
int style TextAppearance_Compat_Notification_Title 0x7f150051
int style TextAppearance_Compat_Notification_Title_Media 0x7f150052
int style Theam_MyCustomDialogTheme 0x7f150053
int style Theme 0x7f150054
int style Theme_MyDialog 0x7f150055
int style Theme_Translucent 0x7f150056
int style Theme_UMDefault 0x7f150057
int style Theme_UMDialog 0x7f150058
int style VKAlertDialog 0x7f150059
int style VK_Transparent 0x7f15005a
int style Widget 0x7f15005b
int style Widget_Compat_NotificationActionContainer 0x7f15005c
int style Widget_Compat_NotificationActionText 0x7f15005d
int style Widget_Support_CoordinatorLayout 0x7f15005e
int style YoukuDialog 0x7f15005f
int style channel_rank_category_rank_text 0x7f150060
int style channelsubtitle 0x7f150061
int style com_facebook_button 0x7f150062
int style com_facebook_button_like 0x7f150063
int style com_facebook_button_send 0x7f150064
int style com_facebook_button_share 0x7f150065
int style com_facebook_loginview_default_style 0x7f150066
int style com_facebook_loginview_silver_style 0x7f150067
int style comment_code_default 0x7f150068
int style detail_bottom_control 0x7f150069
int style detail_cache_item_no 0x7f15006a
int style detail_cache_item_normal_text 0x7f15006b
int style detail_cache_item_selected_text 0x7f15006c
int style detail_comment_btn 0x7f15006d
int style detail_comment_btn_push 0x7f15006e
int style detail_comment_input_hint 0x7f15006f
int style detail_comment_item_user 0x7f150070
int style detail_comment_num 0x7f150071
int style detail_comment_submit 0x7f150072
int style detail_desc_item_no 0x7f150073
int style detail_desc_item_no_mine 0x7f150074
int style detail_intro_rate1 0x7f150075
int style detail_intro_rate2 0x7f150076
int style detail_intro_title 0x7f150077
int style detail_item_content 0x7f150078
int style detail_play_load 0x7f150079
int style detail_play_load_name 0x7f15007a
int style detail_play_title 0x7f15007b
int style detail_pop_control 0x7f15007c
int style detail_pop_item 0x7f15007d
int style detail_replay 0x7f15007e
int style detail_title_item_no 0x7f15007f
int style detail_titles 0x7f150080
int style dialogBtn 0x7f150081
int style dialogBtnFont 0x7f150082
int style dialogTitleFont 0x7f150083
int style dialog_btn_text 0x7f150084
int style dialog_fullscreen 0x7f150085
int style dialog_msg 0x7f150086
int style editTextActivityContent 0x7f150087
int style editTextActivityTitle 0x7f150088
int style edit_btn_text 0x7f150089
int style epiTextStyle 0x7f15008a
int style epiTextStyleBase 0x7f15008b
int style epiTextWithTitleStyle 0x7f15008c
int style episode_pager_text 0x7f15008d
int style filterFirstTitleFont 0x7f15008e
int style filterItemFont 0x7f15008f
int style filterItemSelectedFont 0x7f150090
int style filterSubTitleFont 0x7f150091
int style filterTitleFont 0x7f150092
int style gridStripeBottomFont 0x7f150093
int style gridStripeBottomFontNew 0x7f150094
int style gridStripeBottomFontRankFont 0x7f150095
int style gridStripeBottomRatingFont 0x7f150096
int style gridTitleFont 0x7f150097
int style historyPlayFont 0x7f150098
int style history_item_txt_first 0x7f150099
int style history_item_txt_second 0x7f15009a
int style historycached 0x7f15009b
int style historypoint 0x7f15009c
int style homeTitleFont 0x7f15009d
int style homegridTitleFont 0x7f15009e
int style homegroupTitleFont 0x7f15009f
int style homepage_item_title_first 0x7f1500a0
int style homepage_title_txt 0x7f1500a1
int style homepagegridremask 0x7f1500a2
int style homepagegridtext 0x7f1500a3
int style homepagegridtitle 0x7f1500a4
int style homepagetext 0x7f1500a5
int style homepagetitle 0x7f1500a6
int style lan_DialogWindowAnim 0x7f1500a7
int style login_btn 0x7f1500a8
int style login_code_default 0x7f1500a9
int style login_edit 0x7f1500aa
int style login_edit_wrong 0x7f1500ab
int style mycenter_Font 0x7f1500ac
int style mycenter_cat_grid_item_text 0x7f1500ad
int style mycenter_grid_item_count_font 0x7f1500ae
int style mycenter_grid_item_title_font 0x7f1500af
int style mycenter_header_complete_text_Font 0x7f1500b0
int style mycenter_setting_cleartext_Font 0x7f1500b1
int style mycenter_setting_listtext_Font 0x7f1500b2
int style mycenter_setting_listtext_sub_Font 0x7f1500b3
int style mycenter_top_user_desc 0x7f1500b4
int style mycenter_top_user_name 0x7f1500b5
int style mycenter_upload_btn_Font 0x7f1500b6
int style mycenter_upload_detail_Font 0x7f1500b7
int style mycenter_upload_item_Font 0x7f1500b8
int style mycenter_upload_item_chinese_Font 0x7f1500b9
int style mycenter_upload_item_number_Font 0x7f1500ba
int style mycenter_upload_item_size_Font 0x7f1500bb
int style mycenter_upload_video_tip_Font 0x7f1500bc
int style mycenter_upload_video_uploadbtn_Font 0x7f1500bd
int style notitleDialog 0x7f1500be
int style player_setting_text 0x7f1500bf
int style player_setting_text_title 0x7f1500c0
int style player_total_time_text 0x7f1500c1
int style register_btn 0x7f1500c2
int style scrshot_dlg_style 0x7f1500c3
int style snapshotDialogWindowAnim 0x7f1500c4
int style stripeMiddleFont 0x7f1500c5
int style subTitleFont 0x7f1500c6
int style toastFont 0x7f1500c7
int style toolbar_btn_txt 0x7f1500c8
int style tooltip_bubble_text 0x7f1500c9
int style tudou_encrypt_dialog 0x7f1500ca
int style umeng_socialize_action_bar_item_im 0x7f1500cb
int style umeng_socialize_action_bar_item_tv 0x7f1500cc
int style umeng_socialize_action_bar_itemlayout 0x7f1500cd
int style umeng_socialize_dialog_anim_fade 0x7f1500ce
int style umeng_socialize_dialog_animations 0x7f1500cf
int style umeng_socialize_divider 0x7f1500d0
int style umeng_socialize_edit_padding 0x7f1500d1
int style umeng_socialize_list_item 0x7f1500d2
int style umeng_socialize_popup_dialog 0x7f1500d3
int style umeng_socialize_popup_dialog_anim 0x7f1500d4
int style umeng_socialize_shareboard_animation 0x7f1500d5
int style wordpagechanneltitle 0x7f1500d6
int style wordpagegridtitle 0x7f1500d7
int style wordpageimagetitle 0x7f1500d8
int style wordpagerecommendtitle 0x7f1500d9
int style wordpagesubtitle 0x7f1500da
int style wordpagesubtitle2 0x7f1500db
int style ypYoukuDialog 0x7f1500dc
int style yp_normal_content 0x7f1500dd
int style yp_youku_dialog_txt_cancel 0x7f1500de
int style yp_youku_dialog_txt_ok 0x7f1500df
int[] styleable ActionBar { 0x7f040021 }
int styleable ActionBar_title 0
int[] styleable CoordinatorLayout { 0x7f040018, 0x7f040020 }
int styleable CoordinatorLayout_keylines 0
int styleable CoordinatorLayout_statusBarBackground 1
int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e }
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 FontFamily { 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015 }
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 { 0x1010532, 0x101053f, 0x1010533, 0x7f04000f, 0x7f040016, 0x7f040017 }
int styleable FontFamilyFont_android_font 0
int styleable FontFamilyFont_android_fontStyle 1
int styleable FontFamilyFont_android_fontWeight 2
int styleable FontFamilyFont_font 3
int styleable FontFamilyFont_fontStyle 4
int styleable FontFamilyFont_fontWeight 5
int[] styleable PlayerNewLoading { 0x7f04001f }
int styleable PlayerNewLoading_playerloadingSize 0
int[] styleable board_column { 0x7f040001 }
int styleable board_column_column 0
int[] styleable com_facebook_like_view { 0x7f040002, 0x7f040004, 0x7f040005, 0x7f040009, 0x7f04000a, 0x7f04000c }
int styleable com_facebook_like_view_com_facebook_auxiliary_view_position 0
int styleable com_facebook_like_view_com_facebook_foreground_color 1
int styleable com_facebook_like_view_com_facebook_horizontal_alignment 2
int styleable com_facebook_like_view_com_facebook_object_id 3
int styleable com_facebook_like_view_com_facebook_object_type 4
int styleable com_facebook_like_view_com_facebook_style 5
int[] styleable com_facebook_login_view { 0x7f040003, 0x7f040007, 0x7f040008, 0x7f04000d }
int styleable com_facebook_login_view_com_facebook_confirm_logout 0
int styleable com_facebook_login_view_com_facebook_login_text 1
int styleable com_facebook_login_view_com_facebook_logout_text 2
int styleable com_facebook_login_view_com_facebook_tooltip_mode 3
int[] styleable com_facebook_profile_picture_view { 0x7f040006, 0x7f04000b }
int styleable com_facebook_profile_picture_view_com_facebook_is_cropped 0
int styleable com_facebook_profile_picture_view_com_facebook_preset_size 1
int xml filepaths 0x7f180001
int xml gdt_file_path 0x7f180002