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
com.youku.player.ui
anim shake_umeng_socialize_cycle_5
anim shake_umeng_socialize_dlg_alpha
anim shake_umeng_socialize_dlg_scale
anim shake_umeng_socialize_edit_anim
anim shake_umeng_socialize_imageview_rotate
anim shake_umeng_socialize_scrshot_dlg
anim umeng_socialize_fade_in
anim umeng_socialize_fade_out
anim umeng_socialize_shareboard_animation_in
anim umeng_socialize_shareboard_animation_out
anim umeng_socialize_slide_in_from_bottom
anim umeng_socialize_slide_out_from_bottom
attr column
attr com_facebook_auxiliary_view_position
attr com_facebook_confirm_logout
attr com_facebook_foreground_color
attr com_facebook_horizontal_alignment
attr com_facebook_is_cropped
attr com_facebook_login_text
attr com_facebook_logout_text
attr com_facebook_object_id
attr com_facebook_object_type
attr com_facebook_preset_size
attr com_facebook_style
attr com_facebook_tooltip_mode
attr coordinatorLayoutStyle
attr font
attr fontProviderAuthority
attr fontProviderCerts
attr fontProviderFetchStrategy
attr fontProviderFetchTimeout
attr fontProviderPackage
attr fontProviderQuery
attr fontStyle
attr fontWeight
attr keylines
attr layout_anchor
attr layout_anchorGravity
attr layout_behavior
attr layout_dodgeInsetEdges
attr layout_insetEdge
attr layout_keyline
attr playerloadingSize
attr statusBarBackground
attr title
bool abc_action_bar_embed_tabs
color app_background
color black
color blue
color blue3
color com_facebook_blue
color com_facebook_button_background_color
color com_facebook_button_background_color_disabled
color com_facebook_button_background_color_pressed
color com_facebook_button_like_background_color_selected
color com_facebook_button_login_silver_background_color
color com_facebook_button_login_silver_background_color_pressed
color com_facebook_button_send_background_color
color com_facebook_button_send_background_color_pressed
color com_facebook_likeboxcountview_border_color
color com_facebook_likeboxcountview_text_color
color com_facebook_likeview_text_color
color com_facebook_share_button_text_color
color gray
color gray1
color notification_action_color_filter
color notification_icon_bg_color
color notification_material_background_media_default_color
color player_controller_background
color player_controller_background_half_alpha
color player_gray
color primary_text_default_material_dark
color red
color ripple_material_light
color secondary_text_default_material_dark
color secondary_text_default_material_light
color text_color_black
color text_color_blue
color text_color_blue_1
color text_color_gray_1
color text_color_gray_2
color text_color_gray_3
color text_color_gray_5
color text_color_gray_7
color text_color_gray_9
color text_color_red_1
color text_color_white
color text_color_white_d
color translucent_background
color transparent
color tudou_dialog_button
color tudou_dialog_line
color tudou_dialog_sub_title
color tudou_dialog_title
color umeng_background
color umeng_black
color umeng_blue
color umeng_divide
color umeng_socialize_color_group
color umeng_socialize_comments_bg
color umeng_socialize_divider
color umeng_socialize_edit_bg
color umeng_socialize_grid_divider_line
color umeng_socialize_list_item_bgcolor
color umeng_socialize_list_item_textcolor
color umeng_socialize_shareactivity
color umeng_socialize_shareactivitydefault
color umeng_socialize_text_friends_list
color umeng_socialize_text_share_content
color umeng_socialize_text_time
color umeng_socialize_text_title
color umeng_socialize_text_ucenter
color umeng_socialize_ucenter_bg
color umeng_socialize_web_bg
color umeng_text_color
color umeng_white
color vk_black
color vk_black_pressed
color vk_clear
color vk_color
color vk_grey_color
color vk_light_color
color vk_share_blue_color
color vk_share_gray_line
color vk_share_link_color
color vk_share_link_title_color
color vk_share_top_blue_color
color vk_white
color white
color yp_ad_background_color_youku
color yp_youku_dialog_cancel_normal
color yp_youku_dialog_cancel_pressed
color yp_youku_dialog_ok_normal
color yp_youku_dialog_ok_pressed
dimen actionbar_height
dimen actionbar_item_height
dimen actionbar_item_width
dimen alphabet_size
dimen body_padding_large
dimen body_padding_medium
dimen channel_main_tabindicator_height
dimen channeltab_dividerpadding
dimen channeltab_txt_textsize
dimen com_facebook_likeboxcountview_border_radius
dimen com_facebook_likeboxcountview_border_width
dimen com_facebook_likeboxcountview_caret_height
dimen com_facebook_likeboxcountview_caret_width
dimen com_facebook_likeboxcountview_text_padding
dimen com_facebook_likeboxcountview_text_size
dimen com_facebook_likeview_edge_padding
dimen com_facebook_likeview_internal_padding
dimen com_facebook_likeview_text_size
dimen com_facebook_profilepictureview_preset_size_large
dimen com_facebook_profilepictureview_preset_size_normal
dimen com_facebook_profilepictureview_preset_size_small
dimen com_facebook_share_button_compound_drawable_padding
dimen com_facebook_share_button_padding_bottom
dimen com_facebook_share_button_padding_left
dimen com_facebook_share_button_padding_right
dimen com_facebook_share_button_padding_top
dimen com_facebook_share_button_text_size
dimen com_facebook_tooltip_horizontal_padding
dimen compat_button_inset_horizontal_material
dimen compat_button_inset_vertical_material
dimen compat_button_padding_horizontal_material
dimen compat_button_padding_vertical_material
dimen compat_control_corner_material
dimen detail_play_content_padding_bottom
dimen detail_play_content_padding_top
dimen detail_play_full_margin_right
dimen detail_play_progress_margin_left
dimen detail_play_progress_margin_right
dimen detail_play_title_height
dimen detail_play_title_margin_left_right
dimen dialog_arrow_marginLeft
dimen dialog_arrow_marginRight
dimen dialog_firstItemBtn_marginTop
dimen dialog_height
dimen dialog_item_marginH
dimen dialog_item_marginV
dimen dialog_radioBtn_dimen
dimen dialog_title_height
dimen dialog_width
dimen download_grid_item_add_height
dimen download_grid_item_image_padding_right
dimen fullscreen_pause_ad_container_height
dimen fullscreen_pause_ad_container_width
dimen fullscreen_player_episode_item_small_text_size
dimen fullscreen_player_episode_item_text_size
dimen fullscreen_player_setting_height
dimen fullscreen_player_setting_width
dimen fullscreen_punchbox_pause_ad_height
dimen fullscreen_punchbox_pause_ad_width
dimen fullscreen_youku_pause_ad_height
dimen fullscreen_youku_pause_ad_width
dimen gridview_item_tv_height
dimen gridview_pading_horizontal
dimen gridview_pading_top
dimen gridview_spacing
dimen history_item_txt_first_textsize
dimen history_item_txt_second_textsize
dimen history_text_point_margin_bottom
dimen homepage_item_title_first
dimen homepage_item_title_second
dimen myyouku_item_line_margin_left
dimen normal_dialog_btn_height
dimen normal_dialog_btn_marginBottom
dimen normal_dialog_btn_marginLeft
dimen normal_dialog_btn_marginTop
dimen normal_dialog_btn_width
dimen normal_dialog_message_marginTop
dimen normal_dialog_width
dimen notification_action_icon_size
dimen notification_action_text_size
dimen notification_big_circle_margin
dimen notification_content_margin_start
dimen notification_large_icon_height
dimen notification_large_icon_width
dimen notification_main_column_padding_top
dimen notification_media_narrow_margin
dimen notification_right_icon_size
dimen notification_right_side_padding_top
dimen notification_small_icon_background_padding
dimen notification_small_icon_size_as_large
dimen notification_subtext_size
dimen notification_top_pad
dimen notification_top_pad_large_text
dimen paytip_close_height
dimen paytip_close_margin
dimen paytip_close_width
dimen paytip_full_arrow_width
dimen paytip_full_height
dimen paytip_full_margin_bottom
dimen paytip_full_textsize
dimen paytip_full_tip_width
dimen paytip_full_width
dimen paytip_small_margin_bottom
dimen paytip_small_textsize
dimen paytip_small_tip_width
dimen player_ad_count_text_padding
dimen player_ad_count_text_padding_youku
dimen player_ad_count_text_size
dimen player_ad_count_text_size_youku
dimen player_ad_count_width_youku
dimen player_ad_count_wrap_widht_youku
dimen player_ad_go_full_margin_bottom
dimen player_ad_go_full_margin_right
dimen player_ad_go_full_padding
dimen player_ad_go_full_width_youku
dimen player_ad_head_padding
dimen player_ad_more_height
dimen player_ad_more_height_youku
dimen player_ad_more_padding
dimen player_ad_more_padding_youku
dimen player_ad_more_width_youku
dimen player_ad_skip_width_youku
dimen player_ad_text_height_youku
dimen plugin_detail_play_pause_pandding
dimen shadow_height
dimen speaker_image_padding
dimen speaker_image_size
dimen subtitle_height
dimen subtitle_margin
dimen text_size_1
dimen text_size_2
dimen text_size_3
dimen text_size_4
dimen text_size_5
dimen text_size_6
dimen text_size_7
dimen text_size_8
dimen text_size_a
dimen text_size_b
dimen text_size_c
dimen text_size_d
dimen text_size_e
dimen text_size_f
dimen text_size_g
dimen text_size_h
dimen text_size_i
dimen text_size_j
dimen text_size_l
dimen text_size_large
dimen text_size_medium
dimen text_size_small
dimen text_size_xlarge
dimen titlebar
dimen toolbar_btn_txt_textsize
dimen tudou_dialog_height
dimen tudou_dialog_width
dimen umeng_socialize_pad_window_height
dimen umeng_socialize_pad_window_width
dimen vendor_image_size
dimen vk_share_dialog_padding
dimen vk_share_dialog_padding_top
dimen vk_share_dialog_view_padding
dimen vk_share_link_top_margin
dimen vk_share_send_text_size
dimen vk_share_settings_button_min_height
dimen vk_share_title_link_host_size
dimen vk_share_title_link_title_size
dimen vk_share_title_text_size
dimen vk_share_top_button_padding_left
dimen vk_share_top_button_padding_right
dimen vk_share_top_image_margin
dimen vk_share_top_line_margin
dimen vk_share_top_panel_height
dimen vk_share_top_title_margin
dimen vq_height
dimen vq_width
dimen wm_height
dimen wm_width
dimen yp_edittext_add_txt_linespacingextra
dimen yp_image_ad_close_margin_right
dimen yp_investigate_arrowright_width
dimen yp_investigate_close_width
dimen yp_investigate_height
dimen yp_investigate_margin_bottom
dimen yp_investigate_text_container_width
dimen yp_investigate_text_margin_left
dimen yp_investigate_text_size
dimen yp_normal_content_textsize
dimen yp_youku_dialog_bottom_height
dimen yp_youku_dialog_height
dimen yp_youku_dialog_txt_cancel_textsize
dimen yp_youku_dialog_width
drawable ad_bg_back
drawable ad_bg_full
drawable ad_close
drawable ad_icon_arrow
drawable ad_icon_fullscreen
drawable ad_icon_out
drawable ad_icon_volume
drawable ad_icon_volume_off
drawable bg_play
drawable bg_tudou_encrypt_dialog
drawable btnbg
drawable com_facebook_button_background
drawable com_facebook_button_icon
drawable com_facebook_button_like_background
drawable com_facebook_button_like_icon_selected
drawable com_facebook_button_login_silver_background
drawable com_facebook_button_send_background
drawable com_facebook_button_send_icon
drawable com_facebook_close
drawable com_facebook_profile_picture_blank_portrait
drawable com_facebook_profile_picture_blank_square
drawable com_facebook_tooltip_black_background
drawable com_facebook_tooltip_black_bottomnub
drawable com_facebook_tooltip_black_topnub
drawable com_facebook_tooltip_black_xout
drawable com_facebook_tooltip_blue_background
drawable com_facebook_tooltip_blue_bottomnub
drawable com_facebook_tooltip_blue_topnub
drawable com_facebook_tooltip_blue_xout
drawable detail_play_btn_full_screen
drawable dialog_background
drawable dialog_button1
drawable dialog_button2
drawable edit_view_bg
drawable editbg
drawable fenxiang
drawable full_icon_back
drawable full_icon_out
drawable gengxin
drawable hotpoint_img
drawable ic_ab_app
drawable ic_ab_done
drawable ic_launcher
drawable icon_fullscreen
drawable icon_pause
drawable icon_play
drawable icon_scrubbarslider
drawable info_icon_1
drawable loading_frame1
drawable loading_frame2
drawable loading_frame3
drawable loading_frame4
drawable messenger_bubble_large_blue
drawable messenger_bubble_large_white
drawable messenger_bubble_small_blue
drawable messenger_bubble_small_white
drawable messenger_button_blue_bg_round
drawable messenger_button_blue_bg_selector
drawable messenger_button_send_round_shadow
drawable messenger_button_white_bg_round
drawable messenger_button_white_bg_selector
drawable nonedrawable
drawable notification_action_background
drawable notification_bg
drawable notification_bg_low
drawable notification_bg_low_normal
drawable notification_bg_low_pressed
drawable notification_bg_normal
drawable notification_bg_normal_pressed
drawable notification_icon_background
drawable notification_template_icon_bg
drawable notification_template_icon_low_bg
drawable notification_tile_bg
drawable notify_panel_notification_icon_bg
drawable play_btn_pause_big
drawable play_btn_pause_big_detail
drawable play_btn_pause_big_detail_down
drawable play_btn_play_big
drawable play_btn_play_big_detail
drawable play_btn_play_big_detail_down
drawable play_btn_shrink
drawable play_over_next_episode
drawable play_over_replay
drawable play_title_bkg
drawable player_canvas
drawable player_logo_youku
drawable plugin_ad_gofull
drawable plugin_ad_gofull_tudou
drawable plugin_ad_gofull_youku
drawable plugin_ad_gosmall
drawable plugin_ad_gosmall_tudou
drawable plugin_ad_gosmall_youku
drawable plugin_ad_more_youku
drawable popwinselector
drawable quality_bkg
drawable seekbar_bkg
drawable seekbar_front_progress
drawable seekbar_second_progress
drawable selector_button
drawable shake_umeng_socialize_close
drawable shake_umeng_socialize_close_button_style
drawable shake_umeng_socialize_close_pressed
drawable shake_umeng_socialize_edittext_corner
drawable shake_umeng_socialize_imgview_border
drawable shake_umeng_socialize_preview_edit_corners_style
drawable shake_umeng_socialize_shake_layout_corner
drawable shake_umeng_socialize_share_btn_style
drawable shape_update_left
drawable shape_update_right
drawable tab_indicator_normal
drawable tab_indicator_pressed_color
drawable tudou_details_big_play_icon
drawable umeng_arrow
drawable umeng_back_icon
drawable umeng_socialize_action_back
drawable umeng_socialize_action_back_normal
drawable umeng_socialize_action_back_selected
drawable umeng_socialize_back_icon
drawable umeng_socialize_bind_bg
drawable umeng_socialize_btn_bg
drawable umeng_socialize_button_blue
drawable umeng_socialize_button_grey
drawable umeng_socialize_button_grey_blue
drawable umeng_socialize_button_login
drawable umeng_socialize_button_login_normal
drawable umeng_socialize_button_login_pressed
drawable umeng_socialize_button_red
drawable umeng_socialize_button_red_blue
drawable umeng_socialize_button_white
drawable umeng_socialize_button_white_blue
drawable umeng_socialize_checked
drawable umeng_socialize_comment_bg
drawable umeng_socialize_comment_icon
drawable umeng_socialize_comment_item_bg_shape
drawable umeng_socialize_comment_normal
drawable umeng_socialize_comment_selected
drawable umeng_socialize_commnet_header_bg
drawable umeng_socialize_copy
drawable umeng_socialize_copyurl
drawable umeng_socialize_default_avatar
drawable umeng_socialize_delete
drawable umeng_socialize_ding
drawable umeng_socialize_divider_line
drawable umeng_socialize_douban
drawable umeng_socialize_douban_off
drawable umeng_socialize_douban_on
drawable umeng_socialize_dropbox
drawable umeng_socialize_edit_bg
drawable umeng_socialize_evernote
drawable umeng_socialize_evernote_gray
drawable umeng_socialize_facebook
drawable umeng_socialize_facebook_close
drawable umeng_socialize_facebook_off
drawable umeng_socialize_fav
drawable umeng_socialize_fbmessage
drawable umeng_socialize_fetch_image
drawable umeng_socialize_fetch_location_disabled
drawable umeng_socialize_flickr
drawable umeng_socialize_flickr_gray
drawable umeng_socialize_follow_check
drawable umeng_socialize_follow_off
drawable umeng_socialize_follow_on
drawable umeng_socialize_foursquare
drawable umeng_socialize_foursquare_gray
drawable umeng_socialize_gmail
drawable umeng_socialize_gmail_off
drawable umeng_socialize_gmail_on
drawable umeng_socialize_google
drawable umeng_socialize_instagram
drawable umeng_socialize_instagram_off
drawable umeng_socialize_instagram_on
drawable umeng_socialize_kakao
drawable umeng_socialize_kakao_gray
drawable umeng_socialize_laiwang
drawable umeng_socialize_laiwang_dynamic
drawable umeng_socialize_laiwang_dynamic_gray
drawable umeng_socialize_light_bar_bg_pad
drawable umeng_socialize_location_grey
drawable umeng_socialize_location_ic
drawable umeng_socialize_location_mark
drawable umeng_socialize_location_off
drawable umeng_socialize_location_on
drawable umeng_socialize_menu_default
drawable umeng_socialize_more
drawable umeng_socialize_nav_bar_bg
drawable umeng_socialize_nav_bar_bg_pad
drawable umeng_socialize_oauth_check
drawable umeng_socialize_oauth_check_off
drawable umeng_socialize_oauth_check_on
drawable umeng_socialize_pinterest
drawable umeng_socialize_pinterest_gray
drawable umeng_socialize_pocket
drawable umeng_socialize_pocket_gray
drawable umeng_socialize_pulltorefresh_arrow
drawable umeng_socialize_pv
drawable umeng_socialize_qq
drawable umeng_socialize_qq_off
drawable umeng_socialize_qq_on
drawable umeng_socialize_refersh
drawable umeng_socialize_search_icon
drawable umeng_socialize_shape_solid_black
drawable umeng_socialize_shape_solid_grey
drawable umeng_socialize_share_music
drawable umeng_socialize_share_pic
drawable umeng_socialize_share_to_button
drawable umeng_socialize_share_transparent_corner
drawable umeng_socialize_share_video
drawable umeng_socialize_shareboard_item_background
drawable umeng_socialize_sidebar_normal
drawable umeng_socialize_sidebar_selected
drawable umeng_socialize_sidebar_selector
drawable umeng_socialize_sina
drawable umeng_socialize_sina_off
drawable umeng_socialize_sina_on
drawable umeng_socialize_sms_off
drawable umeng_socialize_sms_on
drawable umeng_socialize_switchimage_choose
drawable umeng_socialize_switchimage_unchoose
drawable umeng_socialize_title_back_bt
drawable umeng_socialize_title_back_bt_normal
drawable umeng_socialize_title_back_bt_selected
drawable umeng_socialize_title_right_bt
drawable umeng_socialize_title_right_bt_normal
drawable umeng_socialize_title_right_bt_selected
drawable umeng_socialize_title_tab_button_left
drawable umeng_socialize_title_tab_button_right
drawable umeng_socialize_title_tab_left_normal
drawable umeng_socialize_title_tab_left_pressed
drawable umeng_socialize_title_tab_right_normal
drawable umeng_socialize_title_tab_right_pressed
drawable umeng_socialize_wechat
drawable umeng_socialize_wechat_gray
drawable umeng_socialize_window_shadow_pad
drawable umeng_socialize_x_button
drawable umeng_socialize_ynote
drawable umeng_socialize_ynote_gray
drawable umsocial_defaultwatermark
drawable update_bottom
drawable vertical_icon_back
drawable vertical_logo
drawable vidqbg
drawable vidqtxt
drawable vk_clear_shape
drawable vk_gray_transparent_shape
drawable vk_icon
drawable vk_share_send_button_background
drawable volumn_bg
drawable volumn_front
drawable volumn_primary
drawable water
drawable yp_detail_icon_schedule_ball
drawable yp_mobile_loading
drawable yp_progress_holo_light
drawable yp_progressbarstyle
drawable yp_progressthumbstyle
drawable yp_tudou_encrypt_input_box
id RelativeLayout01
id action0
id action_container
id action_divider
id action_image
id action_text
id actions
id ad_more
id ad_page_holder
id adapter_image
id adv_img_close_imgview
id adv_img_hint_textview
id adv_img_imgview
id async
id attachmentLinkLayout
id auth_button
id automatic
id blocking
id bottom
id box_count
id button
id cancel_action
id captchaAnswer
id captcha_container
id center
id checkalipay
id checkbtn
id checkfb
id checkqq
id checksign
id checksina
id checkvk
id checkwx
id chronometer
id com_facebook_fragment_container
id com_facebook_login_activity_progress_bar
id content_view_per
id content_view_text1
id copyUrl
id cur_vidq
id current_time
id detail_play_load_name
id display_always
id divider
id editcheck
id end
id end_padder
id fl_interact
id forever
id full_holder_inner
id getbtn
id go_retry
id gofullscreen
id header_back
id hotPointView
id ib_detail_play_control
id ib_detail_play_full
id ib_user_play
id icon
id icon_group
id imageView
id imagesContainer
id imagesScrollView
id img_ad_layout
id info
id inline
id italic
id large
id layout_play_control
id layout_pop_top
id layout_title
id left
id li1
id line1
id line3
id linkHost
id linkTitle
id list
id ll_detail_container
id ll_detail_end
id ll_next_play
id ll_replay
id load_seekbar_container
id loading_info_seekbar
id loading_seekbar
id loading_tips
id logo_view
id media_actions
id my_ad_bottom
id my_ad_count
id my_ad_count_wrap
id my_ad_remove
id my_ad_volume
id name
id never_display
id newLoading_play
id noitfy_icon
id none
id normal
id notification_background
id notification_main_column
id notification_main_column_container
id notify_linearLayout1
id notify_linearLayout2
id notify_linearLayout3
id notify_processbar
id notify_speed
id notify_state
id notify_text
id open_graph
id page
id password_edit
id play_controller_header
id player_back
id player_holder_all
id player_view_all
id postContentLayout
id postSettingsLayout
id progress
id progressBar
id progress_bar
id progress_bar_parent
id result
id right
id right_icon
id right_side
id rl_restart
id root
id sb_detail_play_progress
id seek_loading_bg
id sendButton
id sendButtonLayout
id sendProgress
id shareText
id small
id socialize_image_view
id socialize_text_view
id space_bottom
id space_left
id space_middle
id space_right
id space_top
id standard
id start
id status_bar_latest_event_content
id surface_black
id surface_view
id surface_view_debug
id tag_transition_group
id text
id text2
id time
id title
id title_back
id title_bar
id title_logo
id top
id topBarLayout
id total_time
id tudou_dialog_cancel
id tudou_dialog_confirm
id tudou_dialog_sub_title
id tudou_dialog_title
id tudou_vertical_line
id tv_atonce_update
id tv_detail_play_title
id tv_dialog_content
id tv_dialog_noti_wifi
id tv_dialog_title
id tv_no_update
id tv_size
id tv_version
id umeng_back
id umeng_clear
id umeng_copy
id umeng_del
id umeng_image_edge
id umeng_menu_bottom
id umeng_menu_bottom2
id umeng_menu_center
id umeng_menu_center2
id umeng_share_btn
id umeng_share_icon
id umeng_socialize_follow
id umeng_socialize_follow_check
id umeng_socialize_share_bottom_area
id umeng_socialize_share_edittext
id umeng_socialize_share_titlebar
id umeng_socialize_share_word_num
id umeng_socialize_titlebar
id umeng_title
id umeng_web_title
id unknown
id view_restart
id vq0
id vq1
id vq2
id webView
id webview
integer cancel_button_image_alpha
integer status_bar_notification_info_maxnum
layout app_authadapter
layout app_shareadapter
layout app_styleadapter
layout com_facebook_activity_layout
layout com_facebook_login_fragment
layout custom_dialog
layout infodetail
layout notification_action
layout notification_action_tombstone
layout notification_media_action
layout notification_media_cancel_action
layout notification_template_big_media
layout notification_template_big_media_custom
layout notification_template_big_media_narrow
layout notification_template_big_media_narrow_custom
layout notification_template_custom_big
layout notification_template_icon_group
layout notification_template_lines_media
layout notification_template_media
layout notification_template_media_custom
layout notification_template_part_chronometer
layout notification_template_part_time
layout notify
layout notify_item
layout share_detail
layout socialize_share_menu_item
layout titlebar
layout umeng_auth
layout umeng_check
layout umeng_menu
layout umeng_share
layout umeng_socialize_activity_kakao_webview
layout umeng_socialize_oauth_dialog
layout umeng_socialize_share
layout vidqitem
layout vk_captcha_dialog
layout vk_open_auth_dialog
layout vk_share_dialog
layout yp_detail_bottom_play_control
layout yp_detail_loading_info_page
layout yp_detail_play_end_page
layout yp_detail_play_loading
layout yp_detail_play_title
layout yp_detail_retry
layout yp_player_ad_youku
layout yp_player_container
layout yp_player_view
layout yp_plugin_detail_play_interact
layout yp_tudou_encrypt_dialog
layout yp_youku_dialog_password_interact
raw aes
raw mediaplayer_configuration
raw shake_sound
string Player_error_f100
string Player_error_timeout
string WIFI_NOTI
string alert_dialog_cancel
string alert_dialog_ok
string app_name
string cancel
string choice_download_mode
string com_facebook_dialogloginactivity_ok_button
string com_facebook_image_download_unknown_error
string com_facebook_internet_permission_error_message
string com_facebook_internet_permission_error_title
string com_facebook_like_button_liked
string com_facebook_like_button_not_liked
string com_facebook_loading
string com_facebook_loginview_cancel_action
string com_facebook_loginview_log_in_button
string com_facebook_loginview_log_in_button_long
string com_facebook_loginview_log_out_action
string com_facebook_loginview_log_out_button
string com_facebook_loginview_logged_in_as
string com_facebook_loginview_logged_in_using_facebook
string com_facebook_requesterror_password_changed
string com_facebook_requesterror_permissions
string com_facebook_requesterror_reconnect
string com_facebook_send_button_text
string com_facebook_share_button_text
string com_facebook_tooltip_default
string complete
string confirm
string delete_my_tag_message
string delete_my_tag_title
string detail_cartoon
string detail_education
string detail_entertainment
string detail_memory
string detail_movie
string detail_music
string detail_special
string detail_tv
string detail_ugc
string detail_variety
string download
string download_add_failed
string download_add_more
string download_add_success
string download_cannot_ues_3g
string download_exist_finished
string download_exist_not_finished
string download_many_fail
string download_many_fail_no_space
string download_many_fail_timeout
string download_many_fail_unknown_error
string download_no_network
string download_no_sdcard
string download_no_space
string download_timeout
string download_unknown_error
string download_write_fail
string edite
string facebook_app_id
string flickr_content
string flickr_no_client
string flickr_no_content
string flickr_showword
string foursquare_content
string foursquare_no_client
string foursquare_showword
string high_pic
string kakao_content
string kakao_no_client
string kakao_no_content
string kakao_showword
string line_content
string line_no_client
string line_no_content
string line_showword
string linkedin_content
string linkedin_no_client
string linkedin_showword
string messenger_send_button_text
string no_copyright
string pause
string play_next
string player_error_dialog_password_required
string player_error_f101
string player_error_f102
string player_error_f105
string player_error_f105_see_others
string player_error_f106
string player_error_f107
string player_error_native
string player_error_no_network
string player_error_no_pay
string player_error_url_is_nul
string player_error_url_is_nul_tudou
string player_tip_loading
string player_tips_no_network
string player_tips_not_responding
string player_tips_use_3g
string player_webview_mail_app_not_found
string player_webview_refresh
string player_webview_tip
string player_webview_wrong_address
string playersdk_ad_descrip_play_youku
string playersdk_ad_descrip_second
string playersdk_ad_descrip_youku
string playersdk_ad_hint_tologin_cancel
string playersdk_ad_hint_tologin_des
string playersdk_ad_hint_tologin_ok
string playersdk_ad_skip
string pocket_content
string pocket_no_client
string pocket_showword
string pull_to_refresh_pull_label
string pull_to_refresh_refreshing_label
string pull_to_refresh_release_label
string pull_to_refresh_tap_label
string replay
string standard_pic
string status_bar_notification_info_overflow
string super_pic
string tips_no_cache
string tips_no_network
string tips_not_responding
string tudou_dialog_sub_title
string tudou_dialog_title
string tumblr_content
string tumblr_no_client
string tumblr_no_content
string tumblr_showword
string umeng_auth_title
string umeng_check_alipay
string umeng_check_fb
string umeng_check_qq
string umeng_check_sign
string umeng_check_sina
string umeng_check_title
string umeng_check_vk
string umeng_check_wx
string umeng_choose_style
string umeng_delauth_title
string umeng_example_home_btn_plus
string umeng_getinfo_title
string umeng_home_title
string umeng_home_update
string umeng_menu_title
string umeng_share_title
string umeng_sharebutton_copy
string umeng_sharebutton_copyurl
string umeng_socialize_back
string umeng_socialize_cancel_btn_str
string umeng_socialize_comment
string umeng_socialize_comment_detail
string umeng_socialize_content_hint
string umeng_socialize_female
string umeng_socialize_friends
string umeng_socialize_img_des
string umeng_socialize_laiwang_default_content
string umeng_socialize_login
string umeng_socialize_login_qq
string umeng_socialize_mail
string umeng_socialize_male
string umeng_socialize_msg_hor
string umeng_socialize_msg_min
string umeng_socialize_msg_sec
string umeng_socialize_near_At
string umeng_socialize_network_break_alert
string umeng_socialize_send
string umeng_socialize_send_btn_str
string umeng_socialize_share
string umeng_socialize_share_content
string umeng_socialize_sharetodouban
string umeng_socialize_sharetolinkin
string umeng_socialize_sharetorenren
string umeng_socialize_sharetosina
string umeng_socialize_sharetotencent
string umeng_socialize_sharetotwitter
string umeng_socialize_sina
string umeng_socialize_sms
string umeng_socialize_text_add_custom_platform
string umeng_socialize_text_alipay_key
string umeng_socialize_text_authorize
string umeng_socialize_text_choose_account
string umeng_socialize_text_comment_hint
string umeng_socialize_text_dingding_key
string umeng_socialize_text_douban_key
string umeng_socialize_text_dropbox_key
string umeng_socialize_text_evernote_key
string umeng_socialize_text_facebook_key
string umeng_socialize_text_facebookmessager_key
string umeng_socialize_text_flickr_key
string umeng_socialize_text_foursquare_key
string umeng_socialize_text_friend_list
string umeng_socialize_text_googleplus_key
string umeng_socialize_text_instagram_key
string umeng_socialize_text_kakao_key
string umeng_socialize_text_laiwang_dynamic_key
string umeng_socialize_text_laiwang_key
string umeng_socialize_text_laiwangdynamic_key
string umeng_socialize_text_line_key
string umeng_socialize_text_linkedin_key
string umeng_socialize_text_loading_message
string umeng_socialize_text_login_fail
string umeng_socialize_text_more_key
string umeng_socialize_text_pinterest_key
string umeng_socialize_text_pocket_key
string umeng_socialize_text_qq_key
string umeng_socialize_text_qq_zone_key
string umeng_socialize_text_renren_key
string umeng_socialize_text_sina_key
string umeng_socialize_text_tencent_key
string umeng_socialize_text_tencent_no_connection
string umeng_socialize_text_tencent_no_install
string umeng_socialize_text_tencent_oauth_login_fail
string umeng_socialize_text_tencent_version_no_match
string umeng_socialize_text_tumblr_key
string umeng_socialize_text_twitter_key
string umeng_socialize_text_ucenter
string umeng_socialize_text_unauthorize
string umeng_socialize_text_visitor
string umeng_socialize_text_vkontakte_key
string umeng_socialize_text_waitting
string umeng_socialize_text_waitting_message
string umeng_socialize_text_waitting_qq
string umeng_socialize_text_waitting_qzone
string umeng_socialize_text_waitting_redirect
string umeng_socialize_text_waitting_share
string umeng_socialize_text_waitting_weixin
string umeng_socialize_text_waitting_weixin_circle
string umeng_socialize_text_waitting_yixin
string umeng_socialize_text_waitting_yixin_circle
string umeng_socialize_text_weixin_circle_key
string umeng_socialize_text_weixin_fav_key
string umeng_socialize_text_weixin_key
string umeng_socialize_text_wenxin_fav
string umeng_socialize_text_whatsapp_key
string umeng_socialize_text_ydnote_key
string umeng_socialize_text_yixin_key
string umeng_socialize_text_yixincircle_key
string umeng_socialize_tip_blacklist
string umeng_socialize_tip_loginfailed
string umeng_socialize_ucenter_login_title_guide
string umeng_socialize_ucenter_login_title_platform
string umeng_update_content
string update_linkedin_app_cancel
string update_linkedin_app_download
string update_linkedin_app_message
string update_linkedin_app_title
string vk_enter_captcha_text
string vk_name
string vk_new_message_text
string vk_new_post_settings
string vk_retry
string vk_send
string vk_share
string wait
string whatsapp_content
string whatsapp_no_client
string whatsapp_no_content
string whatsapp_showword
string ynote_content
string ynote_no_client
string ynote_no_content
string ynote_showword
style ACPLDialog
style AppBaseTheme
style AppTheme
style Dialog
style Dialog_Fullscreen
style Font1_blue_2bb5fc
style Font1_gray_333333
style Font1_white
style Font2_black
style Font2_blue_29abe2
style Font2_blue_2bb5fc
style Font2_gray_333333
style Font2_gray_666666
style Font2_gray_999999
style Font2_white
style Font3_black
style Font3_blue_29abe2
style Font3_gray_333333
style Font3_gray_666666
style Font3_gray_8c8c8c
style Font3_gray_999999
style Font3_gray_e2e2e2
style Font3_red_ff5a5a
style Font3_white
style Font4_black
style Font4_blue_2bb5fc
style Font4_gray_333333
style Font4_gray_666666
style Font4_gray_909fa8
style Font4_gray_999999
style Font4_white
style Font5_black
style Font5_blue_2bb5fc
style Font5_white
style Font5_white_80
style Font6_gray_666666
style Font6_white
style Font6_white_80
style Font7_gray_333333
style Font7_white
style Font8_blue_2bb5fc
style FontA
style FontB
style FontC
style FontD
style FontE
style FontF
style FontG
style FontH
style FontI
style FontJ
style FontL
style LoadingDialog
style MessengerButton
style MessengerButtonText
style MessengerButtonText_Blue
style MessengerButtonText_Blue_Large
style MessengerButtonText_Blue_Small
style MessengerButtonText_White
style MessengerButtonText_White_Large
style MessengerButtonText_White_Small
style MessengerButton_Blue
style MessengerButton_Blue_Large
style MessengerButton_Blue_Small
style MessengerButton_White
style MessengerButton_White_Large
style MessengerButton_White_Small
style NotificationText
style NotificationTitle
style Notitle_Fullscreen
style OverflowButton
style StyleBarTitle
style TextAppearance_Compat_Notification
style TextAppearance_Compat_Notification_Info
style TextAppearance_Compat_Notification_Info_Media
style TextAppearance_Compat_Notification_Line2
style TextAppearance_Compat_Notification_Line2_Media
style TextAppearance_Compat_Notification_Media
style TextAppearance_Compat_Notification_Time
style TextAppearance_Compat_Notification_Time_Media
style TextAppearance_Compat_Notification_Title
style TextAppearance_Compat_Notification_Title_Media
style Theam_MyCustomDialogTheme
style Theme
style Theme_MyDialog
style Theme_Translucent
style Theme_UMDefault
style Theme_UMDialog
style VKAlertDialog
style VK_Transparent
style Widget
style Widget_Compat_NotificationActionContainer
style Widget_Compat_NotificationActionText
style Widget_Support_CoordinatorLayout
style YoukuDialog
style channel_rank_category_rank_text
style channelsubtitle
style com_facebook_button
style com_facebook_button_like
style com_facebook_button_send
style com_facebook_button_share
style com_facebook_loginview_default_style
style com_facebook_loginview_silver_style
style comment_code_default
style detail_bottom_control
style detail_cache_item_no
style detail_cache_item_normal_text
style detail_cache_item_selected_text
style detail_comment_btn
style detail_comment_btn_push
style detail_comment_input_hint
style detail_comment_item_user
style detail_comment_num
style detail_comment_submit
style detail_desc_item_no
style detail_desc_item_no_mine
style detail_intro_rate1
style detail_intro_rate2
style detail_intro_title
style detail_item_content
style detail_play_load
style detail_play_load_name
style detail_play_title
style detail_pop_control
style detail_pop_item
style detail_replay
style detail_title_item_no
style detail_titles
style dialogBtn
style dialogBtnFont
style dialogTitleFont
style dialog_btn_text
style dialog_fullscreen
style dialog_msg
style editTextActivityContent
style editTextActivityTitle
style edit_btn_text
style epiTextStyle
style epiTextStyleBase
style epiTextWithTitleStyle
style episode_pager_text
style filterFirstTitleFont
style filterItemFont
style filterItemSelectedFont
style filterSubTitleFont
style filterTitleFont
style gridStripeBottomFont
style gridStripeBottomFontNew
style gridStripeBottomFontRankFont
style gridStripeBottomRatingFont
style gridTitleFont
style historyPlayFont
style history_item_txt_first
style history_item_txt_second
style historycached
style historypoint
style homeTitleFont
style homegridTitleFont
style homegroupTitleFont
style homepage_item_title_first
style homepage_title_txt
style homepagegridremask
style homepagegridtext
style homepagegridtitle
style homepagetext
style homepagetitle
style lan_DialogWindowAnim
style login_btn
style login_code_default
style login_edit
style login_edit_wrong
style mycenter_Font
style mycenter_cat_grid_item_text
style mycenter_grid_item_count_font
style mycenter_grid_item_title_font
style mycenter_header_complete_text_Font
style mycenter_setting_cleartext_Font
style mycenter_setting_listtext_Font
style mycenter_setting_listtext_sub_Font
style mycenter_top_user_desc
style mycenter_top_user_name
style mycenter_upload_btn_Font
style mycenter_upload_detail_Font
style mycenter_upload_item_Font
style mycenter_upload_item_chinese_Font
style mycenter_upload_item_number_Font
style mycenter_upload_item_size_Font
style mycenter_upload_video_tip_Font
style mycenter_upload_video_uploadbtn_Font
style notitleDialog
style player_setting_text
style player_setting_text_title
style player_total_time_text
style register_btn
style scrshot_dlg_style
style snapshotDialogWindowAnim
style stripeMiddleFont
style subTitleFont
style toastFont
style toolbar_btn_txt
style tooltip_bubble_text
style tudou_encrypt_dialog
style umeng_socialize_action_bar_item_im
style umeng_socialize_action_bar_item_tv
style umeng_socialize_action_bar_itemlayout
style umeng_socialize_dialog_anim_fade
style umeng_socialize_dialog_animations
style umeng_socialize_divider
style umeng_socialize_edit_padding
style umeng_socialize_list_item
style umeng_socialize_popup_dialog
style umeng_socialize_popup_dialog_anim
style umeng_socialize_shareboard_animation
style wordpagechanneltitle
style wordpagegridtitle
style wordpageimagetitle
style wordpagerecommendtitle
style wordpagesubtitle
style wordpagesubtitle2
style ypYoukuDialog
style yp_normal_content
style yp_youku_dialog_txt_cancel
style yp_youku_dialog_txt_ok
styleable ActionBar title
styleable CoordinatorLayout keylines statusBarBackground
styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery
styleable FontFamilyFont android_font android_fontStyle android_fontWeight font fontStyle fontWeight
styleable PlayerNewLoading playerloadingSize
styleable board_column column
styleable com_facebook_like_view com_facebook_auxiliary_view_position com_facebook_foreground_color com_facebook_horizontal_alignment com_facebook_object_id com_facebook_object_type com_facebook_style
styleable com_facebook_login_view com_facebook_confirm_logout com_facebook_login_text com_facebook_logout_text com_facebook_tooltip_mode
styleable com_facebook_profile_picture_view com_facebook_is_cropped com_facebook_preset_size
xml filepaths
xml gdt_file_path