wpc
2018-11-26 aa82e9973b3d962c325d18ed9407b6b33c4fe554
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="app_background">#e2e2e2</color>
    <color name="black">#000000</color>
    <color name="blue">#FFFFFFFF</color>
    <color name="blue3">#FF067cf6</color>
    <color name="com_facebook_blue">#3B5998</color>
    <color name="com_facebook_button_background_color">#415dae</color>
    <color name="com_facebook_button_background_color_disabled">#bdc1c9</color>
    <color name="com_facebook_button_background_color_pressed">#2f477a</color>
    <color name="com_facebook_button_like_background_color_selected">#7c8fc8</color>
    <color name="com_facebook_button_login_silver_background_color">#f4f6f8</color>
    <color name="com_facebook_button_login_silver_background_color_pressed">#e9eaf0</color>
    <color name="com_facebook_button_send_background_color">#0084ff</color>
    <color name="com_facebook_button_send_background_color_pressed">#006fff</color>
    <color name="com_facebook_likeboxcountview_border_color">#6a7180</color>
    <color name="com_facebook_likeboxcountview_text_color">#6a7180</color>
    <color name="com_facebook_likeview_text_color">#6a7180</color>
    <color name="com_facebook_share_button_text_color">#FFFFFF</color>
    <color name="gray">#ff999999</color>
    <color name="gray1">#FF268ce2</color>
    <color name="player_controller_background">#bf000000</color>
    <color name="player_controller_background_half_alpha">#7f000000</color>
    <color name="player_gray">#ff888888</color>
    <color name="red">#FFe9372d</color>
    <color name="text_color_black">#000000</color>
    <color name="text_color_blue">#2bb5fc</color>
    <color name="text_color_blue_1">#29abe2</color>
    <color name="text_color_gray_1">#e2e2e2</color>
    <color name="text_color_gray_2">#909fa8</color>
    <color name="text_color_gray_3">#999999</color>
    <color name="text_color_gray_5">#8c8c8c</color>
    <color name="text_color_gray_7">#666666</color>
    <color name="text_color_gray_9">#333333</color>
    <color name="text_color_red_1">#ff5a5a</color>
    <color name="text_color_white">#ffffff</color>
    <color name="text_color_white_d">#ccffffff</color>
    <color name="translucent_background">#00000000</color>
    <color name="transparent">#00000000</color>
    <color name="tudou_dialog_button">#ff6600</color>
    <color name="tudou_dialog_line">#d9d9d9</color>
    <color name="tudou_dialog_sub_title">#898989</color>
    <color name="tudou_dialog_title">#3c3c3c</color>
    <color name="umeng_background">#D4E0E5</color>
    <color name="umeng_black">#000000</color>
    <color name="umeng_blue">#0086DC</color>
    <color name="umeng_divide">#C3C6C9</color>
    <color name="umeng_socialize_color_group">#2c3035</color>
    <color name="umeng_socialize_comments_bg">#F4F4F4</color>
    <color name="umeng_socialize_divider">#E6E6E6</color>
    <color name="umeng_socialize_edit_bg">#C4C4C4</color>
    <color name="umeng_socialize_grid_divider_line">#F8F8F8</color>
    <color name="umeng_socialize_list_item_bgcolor">#FFFFFF</color>
    <color name="umeng_socialize_list_item_textcolor">#333333</color>
    <color name="umeng_socialize_shareactivity">#D4E0E5</color>
    <color name="umeng_socialize_shareactivitydefault">#ffffff</color>
    <color name="umeng_socialize_text_friends_list">#959696</color>
    <color name="umeng_socialize_text_share_content">#666666</color>
    <color name="umeng_socialize_text_time">#999999</color>
    <color name="umeng_socialize_text_title">#464f61</color>
    <color name="umeng_socialize_text_ucenter">#595959</color>
    <color name="umeng_socialize_ucenter_bg">#EEEEEE</color>
    <color name="umeng_socialize_web_bg">#F4F4F4</color>
    <color name="umeng_text_color">#575A5C</color>
    <color name="umeng_white">#ffffff</color>
    <color name="vk_black">#000</color>
    <color name="vk_black_pressed">#1000</color>
    <color name="vk_clear">#0000</color>
    <color name="vk_color">#5585BC</color>
    <color name="vk_grey_color">#F0F2F5</color>
    <color name="vk_light_color">#A7C2DF</color>
    <color name="vk_share_blue_color">#338cc9</color>
    <color name="vk_share_gray_line">#e5e5e5</color>
    <color name="vk_share_link_color">#9e9e9e</color>
    <color name="vk_share_link_title_color">#5477a3</color>
    <color name="vk_share_top_blue_color">#527dad</color>
    <color name="vk_white">#fff</color>
    <color name="white">#FFFFFFFF</color>
    <color name="yp_ad_background_color_youku">#cc292929</color>
    <color name="yp_youku_dialog_cancel_normal">#fffafafa</color>
    <color name="yp_youku_dialog_cancel_pressed">#ffe7e7e7</color>
    <color name="yp_youku_dialog_ok_normal">#1500baff</color>
    <color name="yp_youku_dialog_ok_pressed">#33049dd5</color>
    <declare-styleable name="ActionBar"><attr format="string" localization="suggested" name="title"/></declare-styleable>
    <declare-styleable name="PlayerNewLoading"><attr format="string" name="playerloadingSize"/></declare-styleable>
    <declare-styleable name="board_column"><attr format="integer" localization="suggested" name="column"/></declare-styleable>
    <declare-styleable name="com_facebook_like_view"><attr format="color" name="com_facebook_foreground_color"/><attr format="string" name="com_facebook_object_id"/><attr name="com_facebook_object_type">
            
            <enum name="unknown" value="0"/>
            <enum name="open_graph" value="1"/>
            <enum name="page" value="2"/>
        </attr><attr name="com_facebook_style">
            
            <enum name="standard" value="0"/>
            <enum name="button" value="1"/>
            <enum name="box_count" value="2"/>
        </attr><attr name="com_facebook_auxiliary_view_position">
            
            <enum name="bottom" value="0"/>
            <enum name="inline" value="1"/>
            <enum name="top" value="2"/>
        </attr><attr name="com_facebook_horizontal_alignment">
            
            <enum name="center" value="0"/>
            <enum name="left" value="1"/>
            <enum name="right" value="2"/>
        </attr></declare-styleable>
    <declare-styleable name="com_facebook_login_view"><attr format="boolean" name="com_facebook_confirm_logout"/><attr format="string" name="com_facebook_login_text"/><attr format="string" name="com_facebook_logout_text"/><attr name="com_facebook_tooltip_mode">
            
            <enum name="automatic" value="0"/>
            <enum name="display_always" value="1"/>
            <enum name="never_display" value="2"/>
        </attr></declare-styleable>
    <declare-styleable name="com_facebook_profile_picture_view"><attr name="com_facebook_preset_size">
            
            <enum name="small" value="-2"/>
            <enum name="normal" value="-3"/>
            <enum name="large" value="-4"/>
        </attr><attr format="boolean" name="com_facebook_is_cropped"/></declare-styleable>
    <dimen name="actionbar_height">45dip</dimen>
    <dimen name="actionbar_item_height">45dip</dimen>
    <dimen name="actionbar_item_width">45dip</dimen>
    <dimen name="alphabet_size">12dip</dimen>
    <dimen name="body_padding_large">10dp</dimen>
    <dimen name="body_padding_medium">10dp</dimen>
    <dimen name="channel_main_tabindicator_height">40dp</dimen>
    <dimen name="channeltab_dividerpadding">10dp</dimen>
    <dimen name="channeltab_txt_textsize">14dp</dimen>
    <dimen name="com_facebook_likeboxcountview_border_radius">3dp</dimen>
    <dimen name="com_facebook_likeboxcountview_border_width">1dp</dimen>
    <dimen name="com_facebook_likeboxcountview_caret_height">3dp</dimen>
    <dimen name="com_facebook_likeboxcountview_caret_width">6dp</dimen>
    <dimen name="com_facebook_likeboxcountview_text_padding">6dp</dimen>
    <dimen name="com_facebook_likeboxcountview_text_size">11.0sp</dimen>
    <dimen name="com_facebook_likeview_edge_padding">2dp</dimen>
    <dimen name="com_facebook_likeview_internal_padding">6dp</dimen>
    <dimen name="com_facebook_likeview_text_size">11.0sp</dimen>
    <dimen name="com_facebook_profilepictureview_preset_size_large">180dp</dimen>
    <dimen name="com_facebook_profilepictureview_preset_size_normal">100dp</dimen>
    <dimen name="com_facebook_profilepictureview_preset_size_small">50dp</dimen>
    <dimen name="com_facebook_share_button_compound_drawable_padding">12dp</dimen>
    <dimen name="com_facebook_share_button_padding_bottom">12dp</dimen>
    <dimen name="com_facebook_share_button_padding_left">12dp</dimen>
    <dimen name="com_facebook_share_button_padding_right">16dp</dimen>
    <dimen name="com_facebook_share_button_padding_top">12dp</dimen>
    <dimen name="com_facebook_share_button_text_size">16.0sp</dimen>
    <dimen name="com_facebook_tooltip_horizontal_padding">10dp</dimen>
    <dimen name="detail_play_content_padding_bottom">6dp</dimen>
    <dimen name="detail_play_content_padding_top">6dp</dimen>
    <dimen name="detail_play_full_margin_right">10dp</dimen>
    <dimen name="detail_play_progress_margin_left">8dp</dimen>
    <dimen name="detail_play_progress_margin_right">8dp</dimen>
    <dimen name="detail_play_title_height">30dp</dimen>
    <dimen name="detail_play_title_margin_left_right">4.2dp</dimen>
    <dimen name="dialog_arrow_marginLeft">4dp</dimen>
    <dimen name="dialog_arrow_marginRight">20dp</dimen>
    <dimen name="dialog_firstItemBtn_marginTop">8dp</dimen>
    <dimen name="dialog_height">246dp</dimen>
    <dimen name="dialog_item_marginH">14dp</dimen>
    <dimen name="dialog_item_marginV">5dp</dimen>
    <dimen name="dialog_radioBtn_dimen">28dp</dimen>
    <dimen name="dialog_title_height">32dp</dimen>
    <dimen name="dialog_width">229dp</dimen>
    <dimen name="download_grid_item_add_height">47dp</dimen>
    <dimen name="download_grid_item_image_padding_right">3dp</dimen>
    <dimen name="fullscreen_pause_ad_container_height">500dp</dimen>
    <dimen name="fullscreen_pause_ad_container_width">600dp</dimen>
    <dimen name="fullscreen_player_episode_item_small_text_size">8sp</dimen>
    <dimen name="fullscreen_player_episode_item_text_size">10sp</dimen>
    <dimen name="fullscreen_player_setting_height">250dp</dimen>
    <dimen name="fullscreen_player_setting_width">373dp</dimen>
    <dimen name="fullscreen_punchbox_pause_ad_height">270dp</dimen>
    <dimen name="fullscreen_punchbox_pause_ad_width">405dp</dimen>
    <dimen name="fullscreen_youku_pause_ad_height">280dp</dimen>
    <dimen name="fullscreen_youku_pause_ad_width">390dp</dimen>
    <dimen name="gridview_item_tv_height">41dp</dimen>
    <dimen name="gridview_pading_horizontal">5dp</dimen>
    <dimen name="gridview_pading_top">8dp</dimen>
    <dimen name="gridview_spacing">8dp</dimen>
    <dimen name="history_item_txt_first_textsize">14dp</dimen>
    <dimen name="history_item_txt_second_textsize">10dp</dimen>
    <dimen name="history_text_point_margin_bottom">13dp</dimen>
    <dimen name="homepage_item_title_first">14dp</dimen>
    <dimen name="homepage_item_title_second">12dp</dimen>
    <dimen name="myyouku_item_line_margin_left">6dp</dimen>
    <dimen name="normal_dialog_btn_height">40dp</dimen>
    <dimen name="normal_dialog_btn_marginBottom">14dp</dimen>
    <dimen name="normal_dialog_btn_marginLeft">12dp</dimen>
    <dimen name="normal_dialog_btn_marginTop">30dp</dimen>
    <dimen name="normal_dialog_btn_width">96dp</dimen>
    <dimen name="normal_dialog_message_marginTop">40dp</dimen>
    <dimen name="normal_dialog_width">229dp</dimen>
    <dimen name="paytip_close_height">32dp</dimen>
    <dimen name="paytip_close_margin">8dp</dimen>
    <dimen name="paytip_close_width">37dp</dimen>
    <dimen name="paytip_full_arrow_width">26dp</dimen>
    <dimen name="paytip_full_height">54dp</dimen>
    <dimen name="paytip_full_margin_bottom">86dp</dimen>
    <dimen name="paytip_full_textsize">11dp</dimen>
    <dimen name="paytip_full_tip_width">130dp</dimen>
    <dimen name="paytip_full_width">191dp</dimen>
    <dimen name="paytip_small_margin_bottom">48dp</dimen>
    <dimen name="paytip_small_textsize">12dp</dimen>
    <dimen name="paytip_small_tip_width">48dp</dimen>
    <dimen name="player_ad_count_text_padding">6dp</dimen>
    <dimen name="player_ad_count_text_padding_youku">4dp</dimen>
    <dimen name="player_ad_count_text_size">18sp</dimen>
    <dimen name="player_ad_count_text_size_youku">14dp</dimen>
    <dimen name="player_ad_count_width_youku">23dp</dimen>
    <dimen name="player_ad_count_wrap_widht_youku">46dp</dimen>
    <dimen name="player_ad_go_full_margin_bottom">12dp</dimen>
    <dimen name="player_ad_go_full_margin_right">8dp</dimen>
    <dimen name="player_ad_go_full_padding">5dp</dimen>
    <dimen name="player_ad_go_full_width_youku">35dp</dimen>
    <dimen name="player_ad_head_padding">8dp</dimen>
    <dimen name="player_ad_more_height">30dp</dimen>
    <dimen name="player_ad_more_height_youku">30dp</dimen>
    <dimen name="player_ad_more_padding">12dp</dimen>
    <dimen name="player_ad_more_padding_youku">2dp</dimen>
    <dimen name="player_ad_more_width_youku">80dp</dimen>
    <dimen name="player_ad_skip_width_youku">69.5dp</dimen>
    <dimen name="player_ad_text_height_youku">32dp</dimen>
    <dimen name="plugin_detail_play_pause_pandding">0dp</dimen>
    <dimen name="shadow_height">1dp</dimen>
    <dimen name="speaker_image_padding">8dp</dimen>
    <dimen name="speaker_image_size">36dp</dimen>
    <dimen name="subtitle_height">40dp</dimen>
    <dimen name="subtitle_margin">8dp</dimen>
    <dimen name="text_size_1">9sp</dimen>
    <dimen name="text_size_2">11sp</dimen>
    <dimen name="text_size_3">12sp</dimen>
    <dimen name="text_size_4">13sp</dimen>
    <dimen name="text_size_5">14sp</dimen>
    <dimen name="text_size_6">15sp</dimen>
    <dimen name="text_size_7">18sp</dimen>
    <dimen name="text_size_8">25sp</dimen>
    <dimen name="text_size_a">8sp</dimen>
    <dimen name="text_size_b">10sp</dimen>
    <dimen name="text_size_c">12sp</dimen>
    <dimen name="text_size_d">14sp</dimen>
    <dimen name="text_size_e">18sp</dimen>
    <dimen name="text_size_f">22sp</dimen>
    <dimen name="text_size_g">29sp</dimen>
    <dimen name="text_size_h">32sp</dimen>
    <dimen name="text_size_i">36sp</dimen>
    <dimen name="text_size_j">16sp</dimen>
    <dimen name="text_size_l">20sp</dimen>
    <dimen name="text_size_large">18sp</dimen>
    <dimen name="text_size_medium">18sp</dimen>
    <dimen name="text_size_small">14sp</dimen>
    <dimen name="text_size_xlarge">18sp</dimen>
    <dimen name="titlebar">54dp</dimen>
    <dimen name="toolbar_btn_txt_textsize">12dp</dimen>
    <dimen name="tudou_dialog_height">175dp</dimen>
    <dimen name="tudou_dialog_width">300dp</dimen>
    <dimen name="umeng_socialize_pad_window_height">350dip</dimen>
    <dimen name="umeng_socialize_pad_window_width">580dip</dimen>
    <dimen name="vendor_image_size">100dp</dimen>
    <dimen name="vk_share_dialog_padding">10dp</dimen>
    <dimen name="vk_share_dialog_padding_top">6dp</dimen>
    <dimen name="vk_share_dialog_view_padding">5dp</dimen>
    <dimen name="vk_share_link_top_margin">2dp</dimen>
    <dimen name="vk_share_send_text_size">12sp</dimen>
    <dimen name="vk_share_settings_button_min_height">48dp</dimen>
    <dimen name="vk_share_title_link_host_size">15sp</dimen>
    <dimen name="vk_share_title_link_title_size">16sp</dimen>
    <dimen name="vk_share_title_text_size">18sp</dimen>
    <dimen name="vk_share_top_button_padding_left">1dp</dimen>
    <dimen name="vk_share_top_button_padding_right">14dp</dimen>
    <dimen name="vk_share_top_image_margin">6dp</dimen>
    <dimen name="vk_share_top_line_margin">8dp</dimen>
    <dimen name="vk_share_top_panel_height">48dp</dimen>
    <dimen name="vk_share_top_title_margin">5dp</dimen>
    <dimen name="vq_height">20dp</dimen>
    <dimen name="vq_width">38dp</dimen>
    <dimen name="wm_height">50dp</dimen>
    <dimen name="wm_width">50dp</dimen>
    <dimen name="yp_edittext_add_txt_linespacingextra">3dp</dimen>
    <dimen name="yp_image_ad_close_margin_right">1dp</dimen>
    <dimen name="yp_investigate_arrowright_width">26dp</dimen>
    <dimen name="yp_investigate_close_width">37dp</dimen>
    <dimen name="yp_investigate_height">33dp</dimen>
    <dimen name="yp_investigate_margin_bottom">60dp</dimen>
    <dimen name="yp_investigate_text_container_width">56dp</dimen>
    <dimen name="yp_investigate_text_margin_left">7dp</dimen>
    <dimen name="yp_investigate_text_size">14dp</dimen>
    <dimen name="yp_normal_content_textsize">17dp</dimen>
    <dimen name="yp_youku_dialog_bottom_height">43dp</dimen>
    <dimen name="yp_youku_dialog_height">148dp</dimen>
    <dimen name="yp_youku_dialog_txt_cancel_textsize">15dp</dimen>
    <dimen name="yp_youku_dialog_width">251dp</dimen>
    <drawable name="tab_indicator_normal">#ffffffff</drawable>
    <drawable name="tab_indicator_pressed_color">#fff0f0f0</drawable>
    <string name="Player_error_f100">连接服务器异常,请您观看其他视频。</string>
    <string name="Player_error_timeout">网络不太给力哦,如需观看,请重试。</string>
    <string name="WIFI_NOTI">检测到您当前处于非WIFI网络状态!\n建议您在WIFI环境下升级软件</string>
    <string name="alert_dialog_cancel">取消</string>
    <string name="alert_dialog_ok">确定</string>
    <string name="app_name">PlayerUI</string>
    <string name="cancel">取消</string>
    <string name="choice_download_mode">缓存默认设置</string>
    <string name="com_facebook_dialogloginactivity_ok_button">OK</string>
    <string name="com_facebook_image_download_unknown_error">Unexpected error while downloading an image.</string>
    <string name="com_facebook_internet_permission_error_message">WebView login requires INTERNET permission</string>
    <string name="com_facebook_internet_permission_error_title">AndroidManifest Error</string>
    <string name="com_facebook_like_button_liked">Liked</string>
    <string name="com_facebook_like_button_not_liked">Like</string>
    <string name="com_facebook_loading">Loading...</string>
    <string name="com_facebook_loginview_cancel_action">Cancel</string>
    <string name="com_facebook_loginview_log_in_button">Log in</string>
    <string name="com_facebook_loginview_log_in_button_long">Log in with Facebook</string>
    <string name="com_facebook_loginview_log_out_action">Log out</string>
    <string name="com_facebook_loginview_log_out_button">Log out</string>
    <string name="com_facebook_loginview_logged_in_as">Logged in as: %1$s</string>
    <string name="com_facebook_loginview_logged_in_using_facebook">Logged in using Facebook</string>
    <string name="com_facebook_requesterror_password_changed">Your Facebook password has changed. Please log into this app again to reconnect your Facebook account.</string>
    <string name="com_facebook_requesterror_permissions">This app doesn’t have permission to do this. To change permissions, try logging into the app again.</string>
    <string name="com_facebook_requesterror_reconnect">Please log into this app again to reconnect your Facebook account.</string>
    <string name="com_facebook_send_button_text">Send</string>
    <string name="com_facebook_share_button_text">Share</string>
    <string name="com_facebook_tooltip_default">New! You\'re in control - choose what info you want to share with apps.</string>
    <string name="complete">完成</string>
    <string name="confirm">确定</string>
    <string name="delete_my_tag_message">确认删除吗?</string>
    <string name="delete_my_tag_title">删除分类</string>
    <string name="detail_cartoon">动漫</string>
    <string name="detail_education">教育</string>
    <string name="detail_entertainment">娱乐</string>
    <string name="detail_memory">纪录片</string>
    <string name="detail_movie">电影</string>
    <string name="detail_music">音乐</string>
    <string name="detail_special">专辑</string>
    <string name="detail_tv">电视剧</string>
    <string name="detail_ugc">ugc</string>
    <string name="detail_variety">综艺</string>
    <string name="download">下载</string>
    <string name="download_add_failed">添加失败,请稍后再试</string>
    <string name="download_add_more">添加缓存更多剧集</string>
    <string name="download_add_success">添加缓存成功</string>
    <string name="download_cannot_ues_3g">已设置为2G/3G/4G下不允许缓存视频</string>
    <string name="download_exist_finished">该视频已缓存完成</string>
    <string name="download_exist_not_finished">该视频已在您的缓存列表中</string>
    <string name="download_many_fail">S个正缓存,F个暂无缓存版权</string>
    <string name="download_many_fail_no_space">S个正缓存,空间不足F个未缓存,请删些内容</string>
    <string name="download_many_fail_timeout">S个正缓存,F个因断网添加失败</string>
    <string name="download_many_fail_unknown_error">S个正缓存,F个不明原因失败</string>
    <string name="download_no_network">网络已断开,正在缓存的视频将在网络连接恢复后续传。</string>
    <string name="download_no_sdcard">木有发现存储设备,请插入SD卡试试</string>
    <string name="download_no_space">空间不足,请删除些内容再缓存</string>
    <string name="download_timeout">网络不给力,正在缓存的视频已暂停。</string>
    <string name="download_unknown_error">该视频暂不支持缓存</string>
    <string name="download_write_fail">储存本地视频信息失败</string>
    <string name="edite">编辑</string>
    <string name="facebook_app_id">1266254913438718</string>
    <string name="flickr_content">Flickr只支持图片分享</string>
    <string name="flickr_no_client">未安装Flickr客户端</string>
    <string name="flickr_no_content">请设置分享内容</string>
    <string name="flickr_showword">Flickr</string>
    <string name="foursquare_content">Foursquare只支持纯图片分享</string>
    <string name="foursquare_no_client">未安装Foursquare客户端</string>
    <string name="foursquare_showword">Foursquare</string>
    <string name="high_pic">高清  </string>
    <string name="kakao_content">Kakao Talk只支持图片、文本分享</string>
    <string name="kakao_no_client">未安装Kakao Talk客户端</string>
    <string name="kakao_no_content">请设置分享内容</string>
    <string name="kakao_showword">Kakao Talk</string>
    <string name="line_content">Line只支持文本,图片</string>
    <string name="line_no_client">未安装Line客户端</string>
    <string name="line_no_content">请设置分享内容</string>
    <string name="line_showword">LINE</string>
    <string name="linkedin_content">linked只支持纯文本分享</string>
    <string name="linkedin_no_client">未安装LinkedIn客户端</string>
    <string name="linkedin_showword">LinkedIn</string>
    <string name="messenger_send_button_text">Send</string>
    <string name="no_copyright">无版权播放</string>
    <string name="pause">暂停</string>
    <string name="play_next">下集</string>
    <string name="player_error_dialog_password_required">请输入视频密码</string>
    <string name="player_error_f101">抱歉,该视频只在中国大陆播放,请您观看其他视频。</string>
    <string name="player_error_f102">该视频被设为私密,请登录或至优酷网站联系上传者。</string>
    <string name="player_error_f105">该视频已加密,请输入密码。</string>
    <string name="player_error_f105_see_others">该视频已加密,暂无法播放,请您观看其他视频。</string>
    <string name="player_error_f106">抱歉,该视频内容不存在或无效,请您观看其他视频。</string>
    <string name="player_error_f107">对不起,您输入的密码错误,请重新输入。</string>
    <string name="player_error_native">本地文件已损坏</string>
    <string name="player_error_no_network">您的网络已断开,请联网后继续观看。</string>
    <string name="player_error_no_pay">暂不支持付费视频播放,请到主站观看</string>
    <string name="player_error_url_is_nul">抱歉,该视频格式暂不能在您手机上播放,您可以点击进入优酷网尝试观看</string>
    <string name="player_error_url_is_nul_tudou">抱歉,该视频格式暂不能在您手机上播放,请访问土豆网观看</string>
    <string name="player_tip_loading">即将为您播放</string>
    <string name="player_tips_no_network">当前无网络连接</string>
    <string name="player_tips_not_responding">网络不给力,请稍后再试。</string>
    <string name="player_tips_use_3g">当前使用2G/3G/4G网络</string>
    <string name="player_webview_mail_app_not_found">您的手机木有安装邮箱</string>
    <string name="player_webview_refresh">刷新</string>
    <string name="player_webview_tip">部分设备无法播放,可尝试跳转至其他浏览器播放</string>
    <string name="player_webview_wrong_address">地址错误</string>
    <string name="playersdk_ad_descrip_play_youku">进入观看</string>
    <string name="playersdk_ad_descrip_second">秒</string>
    <string name="playersdk_ad_descrip_youku">了解详情</string>
    <string name="playersdk_ad_hint_tologin_cancel">稍后再说</string>
    <string name="playersdk_ad_hint_tologin_des">登录升级视频观看体验!</string>
    <string name="playersdk_ad_hint_tologin_ok">马上登录</string>
    <string name="playersdk_ad_skip">跳过广告</string>
    <string name="pocket_content">pocket只支持网页链接分享</string>
    <string name="pocket_no_client">未安装pocket客户端</string>
    <string name="pocket_showword">Pocket</string>
    <string name="pull_to_refresh_pull_label" translatable="false">向下拉动可以刷新</string>
    <string name="pull_to_refresh_refreshing_label" translatable="false">加载中…</string>
    <string name="pull_to_refresh_release_label" translatable="false">松开可以刷新</string>
    <string name="pull_to_refresh_tap_label" translatable="false">点击刷新</string>
    <string name="replay">重播</string>
    <string name="standard_pic">标清</string>
    <string name="super_pic">超清</string>
    <string name="tips_no_cache">还未缓存任何视频</string>
    <string name="tips_no_network">当前无网络连接</string>
    <string name="tips_not_responding">网络不给力,请稍后再试。</string>
    <string name="tudou_dialog_sub_title">"请输入密码观看"</string>
    <string name="tudou_dialog_title">"该视频已加密"</string>
    <string name="tumblr_content">Tumblr只支持文本,图片,图文分享</string>
    <string name="tumblr_no_client">未安装Tumblr客户端</string>
    <string name="tumblr_no_content">请设置分享内容</string>
    <string name="tumblr_showword">Tumblr</string>
    <string name="umeng_auth_title">授权</string>
    <string name="umeng_check_alipay">检查支付宝</string>
    <string name="umeng_check_fb">检查facebook</string>
    <string name="umeng_check_qq">检查qq</string>
    <string name="umeng_check_sign">检查签名</string>
    <string name="umeng_check_sina">检查新浪</string>
    <string name="umeng_check_title">自检工具</string>
    <string name="umeng_check_vk">vkontakte</string>
    <string name="umeng_check_wx">检查微信</string>
    <string name="umeng_choose_style">选择分享类型</string>
    <string name="umeng_delauth_title">删除授权</string>
    <string name="umeng_example_home_btn_plus">社交分享</string>
    <string name="umeng_getinfo_title">获取用户信息</string>
    <string name="umeng_home_title">U-Share产品Demo</string>
    <string name="umeng_home_update">新版更新内容</string>
    <string name="umeng_menu_title">分享菜单模板</string>
    <string name="umeng_share_title">分享</string>
    <string name="umeng_sharebutton_copy">复制文本</string>
    <string name="umeng_sharebutton_copyurl">复制连接</string>
    <string name="umeng_socialize_back" translatable="false">返回</string>
    <string name="umeng_socialize_cancel_btn_str">取消</string>
    <string name="umeng_socialize_comment" translatable="false">评论</string>
    <string name="umeng_socialize_comment_detail" translatable="false">评论详情</string>
    <string name="umeng_socialize_content_hint">说点啥…</string>
    <string name="umeng_socialize_female">女</string>
    <string name="umeng_socialize_friends" translatable="false">关注的好友</string>
    <string name="umeng_socialize_img_des"/>
    <string name="umeng_socialize_laiwang_default_content">友盟社会化组件(SDK)让移动应用快速整合社交分享功能</string>
    <string name="umeng_socialize_login">登录</string>
    <string name="umeng_socialize_login_qq">QQ空间</string>
    <string name="umeng_socialize_mail">邮件</string>
    <string name="umeng_socialize_male">男</string>
    <string name="umeng_socialize_msg_hor" translatable="false">小时前</string>
    <string name="umeng_socialize_msg_min" translatable="false">分钟前</string>
    <string name="umeng_socialize_msg_sec" translatable="false">秒前</string>
    <string name="umeng_socialize_near_At" translatable="false">最近\@的好友</string>
    <string name="umeng_socialize_network_break_alert" translatable="false">请连接网络后再尝试!</string>
    <string name="umeng_socialize_send" translatable="false">发布</string>
    <string name="umeng_socialize_send_btn_str">发送</string>
    <string name="umeng_socialize_share">分享</string>
    <string name="umeng_socialize_share_content">友盟社会化组件(SDK)让移动应用快速整合社交分享功能,我们简化了社交平台的接入,为开发者提供坚实的基础服务。(一)支持各大主流社交平台, 
                                                (二)支持图片、文字、gif动图、音频、视频;@好友,关注官方微博等功能。
                                                (三)提供详尽的后台用户社交行为分析。www.umeng.com/social</string>
    <string name="umeng_socialize_sharetodouban">分享到豆瓣</string>
    <string name="umeng_socialize_sharetolinkin">分享到领英</string>
    <string name="umeng_socialize_sharetorenren">分享到人人网</string>
    <string name="umeng_socialize_sharetosina">分享到新浪微博</string>
    <string name="umeng_socialize_sharetotencent">分享到腾讯微博</string>
    <string name="umeng_socialize_sharetotwitter">分享到twitter</string>
    <string name="umeng_socialize_sina">新浪</string>
    <string name="umeng_socialize_sms">短信</string>
    <string name="umeng_socialize_text_add_custom_platform">请配置用户平台</string>
    <string name="umeng_socialize_text_alipay_key">支付宝</string>
    <string name="umeng_socialize_text_authorize">授权</string>
    <string name="umeng_socialize_text_choose_account">选择已有帐号登录</string>
    <string name="umeng_socialize_text_comment_hint">说点什么吧…</string>
    <string name="umeng_socialize_text_dingding_key">钉钉</string>
    <string name="umeng_socialize_text_douban_key">豆瓣网</string>
    <string name="umeng_socialize_text_dropbox_key">DropBox</string>
    <string name="umeng_socialize_text_evernote_key">印象笔记</string>
    <string name="umeng_socialize_text_facebook_key">Facebook</string>
    <string name="umeng_socialize_text_facebookmessager_key">Facebook Messager</string>
    <string name="umeng_socialize_text_flickr_key">Flickr</string>
    <string name="umeng_socialize_text_foursquare_key">Foursquare</string>
    <string name="umeng_socialize_text_friend_list">好友列表</string>
    <string name="umeng_socialize_text_googleplus_key">GooglePlus</string>
    <string name="umeng_socialize_text_instagram_key">Instagram</string>
    <string name="umeng_socialize_text_kakao_key">KakaoTalk</string>
    <string name="umeng_socialize_text_laiwang_dynamic_key">来往动态</string>
    <string name="umeng_socialize_text_laiwang_key">来往</string>
    <string name="umeng_socialize_text_laiwangdynamic_key">点点虫动态</string>
    <string name="umeng_socialize_text_line_key">LINE</string>
    <string name="umeng_socialize_text_linkedin_key">Linkedin</string>
    <string name="umeng_socialize_text_loading_message">载入中,请稍候...</string>
    <string name="umeng_socialize_text_login_fail">登录失败了,请重试</string>
    <string name="umeng_socialize_text_more_key">更多</string>
    <string name="umeng_socialize_text_pinterest_key">Pinterest</string>
    <string name="umeng_socialize_text_pocket_key">Pocket</string>
    <string name="umeng_socialize_text_qq_key">QQ</string>
    <string name="umeng_socialize_text_qq_zone_key">QQ空间</string>
    <string name="umeng_socialize_text_renren_key">人人网</string>
    <string name="umeng_socialize_text_sina_key">微博</string>
    <string name="umeng_socialize_text_tencent_key">腾讯微博</string>
    <string name="umeng_socialize_text_tencent_no_connection">无法连接到腾讯微博客户端</string>
    <string name="umeng_socialize_text_tencent_no_install">未安装腾讯微博客户端</string>
    <string name="umeng_socialize_text_tencent_oauth_login_fail">授权登录失败</string>
    <string name="umeng_socialize_text_tencent_version_no_match">版本不匹配,SSO只对微博客户端V3.8.1及以上的版本提供支持</string>
    <string name="umeng_socialize_text_tumblr_key">Tumblr</string>
    <string name="umeng_socialize_text_twitter_key">Twitter</string>
    <string name="umeng_socialize_text_ucenter">个人中心</string>
    <string name="umeng_socialize_text_unauthorize">未授权</string>
    <string name="umeng_socialize_text_visitor">游客</string>
    <string name="umeng_socialize_text_vkontakte_key">VKontakte</string>
    <string name="umeng_socialize_text_waitting">请稍候...</string>
    <string name="umeng_socialize_text_waitting_message">,请稍候...</string>
    <string name="umeng_socialize_text_waitting_qq">跳转QQ中,请稍候...</string>
    <string name="umeng_socialize_text_waitting_qzone">跳转QZone中,请稍候...</string>
    <string name="umeng_socialize_text_waitting_redirect">跳转</string>
    <string name="umeng_socialize_text_waitting_share">分享中…</string>
    <string name="umeng_socialize_text_waitting_weixin">跳转微信中,请稍候...</string>
    <string name="umeng_socialize_text_waitting_weixin_circle">跳转朋友圈中,请稍候...</string>
    <string name="umeng_socialize_text_waitting_yixin">跳转易信中,请稍候...</string>
    <string name="umeng_socialize_text_waitting_yixin_circle">跳转易信朋友圈中,请稍候...</string>
    <string name="umeng_socialize_text_weixin_circle_key">微信朋友圈</string>
    <string name="umeng_socialize_text_weixin_fav_key">微信收藏</string>
    <string name="umeng_socialize_text_weixin_key">微信</string>
    <string name="umeng_socialize_text_wenxin_fav">微信收藏</string>
    <string name="umeng_socialize_text_whatsapp_key">WhatsApp</string>
    <string name="umeng_socialize_text_ydnote_key">有道云笔记</string>
    <string name="umeng_socialize_text_yixin_key">易信</string>
    <string name="umeng_socialize_text_yixincircle_key">易信朋友圈</string>
    <string name="umeng_socialize_tip_blacklist" translatable="false">对不起,因为违反了用户协议您已被禁言.</string>
    <string name="umeng_socialize_tip_loginfailed" translatable="false">登录失败…</string>
    <string name="umeng_socialize_ucenter_login_title_guide" translatable="false">游客登录</string>
    <string name="umeng_socialize_ucenter_login_title_platform" translatable="false">登录帐号</string>
    <string name="umeng_update_content">版本号:6.4.4\n1.twitter不安装客户端也可以进行分享\n2.facebook不安装客户端也可以进行分享\n3.新浪精简版,修复部分rom不能唤起客户端问题\n4.增加新浪微博linkcard的功能\n5.修改微信精简版分享小程序的相关bug,以及对微信的版本做了适配兼容</string>
    <string name="update_linkedin_app_cancel">Cancel</string>
    <string name="update_linkedin_app_download">Download</string>
    <string name="update_linkedin_app_message">To connect with LinkedIn you need to update LinkedIn app. Would you like to do it?</string>
    <string name="update_linkedin_app_title">Update LinkedIn app</string>
    <string name="vk_enter_captcha_text">Enter captcha text here</string>
    <string name="vk_name">VK</string>
    <string name="vk_new_message_text">Enter your message..</string>
    <string name="vk_new_post_settings">Post settings</string>
    <string name="vk_retry">Retry</string>
    <string name="vk_send">SEND</string>
    <string name="vk_share">Share</string>
    <string name="wait">等待</string>
    <string name="whatsapp_content">有道云笔记只支持文本,图片</string>
    <string name="whatsapp_no_client">未安装有WhatsApp客户端</string>
    <string name="whatsapp_no_content">请设置分享内容</string>
    <string name="whatsapp_showword">WhatsApp</string>
    <string name="ynote_content">有道云笔记只支持文本,图片,图文分享</string>
    <string name="ynote_no_client">未安装有道云笔记客户端</string>
    <string name="ynote_no_content">请设置分享内容</string>
    <string name="ynote_showword">有道云笔记</string>
    <style name="ACPLDialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowContentOverlay">@null</item>
    </style>
    <style name="AppBaseTheme" parent="android:Theme.Light">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>
    <style name="Dialog" parent="android:style/Theme.Dialog">  
        <item name="android:background">#00000000</item>  
        <item name="android:windowBackground">@android:color/transparent</item>  
        <item name="android:windowNoTitle">true</item>  
        <item name="android:windowIsFloating">true</item>  
    </style>
    <style name="Dialog_Fullscreen">
 
        <!-- 边框 -->
        <item name="android:windowFrame">@null</item>
        <!-- 半透明 -->
        <item name="android:windowIsTranslucent">true</item>
        <!-- 背景透明 -->
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowFullscreen">true</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:backgroundDimEnabled">true</item>
        <item name="android:backgroundDimAmount">0.6</item>
    </style>
    <style name="Font1_blue_2bb5fc">
        <item name="android:textSize">@dimen/text_size_1</item>
        <item name="android:textColor">@color/text_color_blue</item>
    </style>
    <style name="Font1_gray_333333">
        <item name="android:textSize">@dimen/text_size_1</item>
        <item name="android:textColor">@color/text_color_gray_9</item>
    </style>
    <style name="Font1_white">
        <item name="android:textSize">@dimen/text_size_1</item>
        <item name="android:textColor">@color/text_color_white</item>
    </style>
    <style name="Font2_black">
        <item name="android:textSize">@dimen/text_size_2</item>
        <item name="android:textColor">@color/text_color_black</item>
    </style>
    <style name="Font2_blue_29abe2">
        <item name="android:textSize">@dimen/text_size_2</item>
        <item name="android:textColor">@color/text_color_blue_1</item>
    </style>
    <style name="Font2_blue_2bb5fc">
        <item name="android:textSize">@dimen/text_size_2</item>
        <item name="android:textColor">@color/text_color_blue</item>
    </style>
    <style name="Font2_gray_333333">
        <item name="android:textSize">@dimen/text_size_2</item>
        <item name="android:textColor">@color/text_color_gray_9</item>
    </style>
    <style name="Font2_gray_666666">
        <item name="android:textSize">@dimen/text_size_2</item>
        <item name="android:textColor">@color/text_color_gray_7</item>
    </style>
    <style name="Font2_gray_999999">
        <item name="android:textSize">@dimen/text_size_2</item>
        <item name="android:textColor">@color/text_color_gray_3</item>
    </style>
    <style name="Font2_white">
        <item name="android:textSize">@dimen/text_size_2</item>
        <item name="android:textColor">@color/text_color_white</item>
    </style>
    <style name="Font3_black">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_black</item>
    </style>
    <style name="Font3_blue_29abe2">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_blue_1</item>
    </style>
    <style name="Font3_gray_333333">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_gray_9</item>
    </style>
    <style name="Font3_gray_666666">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_gray_7</item>
    </style>
    <style name="Font3_gray_8c8c8c">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_gray_5</item>
    </style>
    <style name="Font3_gray_999999">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_gray_3</item>
    </style>
    <style name="Font3_gray_e2e2e2">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_gray_1</item>
    </style>
    <style name="Font3_red_ff5a5a">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_red_1</item>
    </style>
    <style name="Font3_white">
        <item name="android:textSize">@dimen/text_size_3</item>
        <item name="android:textColor">@color/text_color_white</item>
    </style>
    <style name="Font4_black">
        <item name="android:textSize">@dimen/text_size_4</item>
        <item name="android:textColor">@color/text_color_black</item>
    </style>
    <style name="Font4_blue_2bb5fc">
        <item name="android:textSize">@dimen/text_size_4</item>
        <item name="android:textColor">@color/text_color_blue</item>
    </style>
    <style name="Font4_gray_333333">
        <item name="android:textSize">@dimen/text_size_4</item>
        <item name="android:textColor">@color/text_color_gray_9</item>
    </style>
    <style name="Font4_gray_666666">
        <item name="android:textSize">@dimen/text_size_4</item>
        <item name="android:textColor">@color/text_color_gray_7</item>
    </style>
    <style name="Font4_gray_909fa8">
        <item name="android:textSize">@dimen/text_size_4</item>
        <item name="android:textColor">@color/text_color_gray_2</item>
    </style>
    <style name="Font4_gray_999999">
        <item name="android:textSize">@dimen/text_size_4</item>
        <item name="android:textColor">@color/text_color_gray_3</item>
    </style>
    <style name="Font4_white">
        <item name="android:textSize">@dimen/text_size_4</item>
        <item name="android:textColor">@color/text_color_white</item>
    </style>
    <style name="Font5_black">
        <item name="android:textSize">@dimen/text_size_5</item>
        <item name="android:textColor">@color/text_color_black</item>
    </style>
    <style name="Font5_blue_2bb5fc">
        <item name="android:textSize">@dimen/text_size_5</item>
        <item name="android:textColor">@color/text_color_blue</item>
    </style>
    <style name="Font5_white">
        <item name="android:textSize">@dimen/text_size_5</item>
        <item name="android:textColor">@color/text_color_white</item>
    </style>
    <style name="Font5_white_80">
        <item name="android:textSize">@dimen/text_size_5</item>
        <item name="android:textColor">@color/text_color_white_d</item>
    </style>
    <style name="Font6_gray_666666">
        <item name="android:textSize">@dimen/text_size_6</item>
        <item name="android:textColor">@color/text_color_gray_7</item>
    </style>
    <style name="Font6_white">
        <item name="android:textSize">@dimen/text_size_6</item>
        <item name="android:textColor">@color/text_color_white</item>
    </style>
    <style name="Font6_white_80">
        <item name="android:textSize">@dimen/text_size_6</item>
        <item name="android:textColor">@color/text_color_white_d</item>
    </style>
    <style name="Font7_gray_333333">
        <item name="android:textSize">@dimen/text_size_7</item>
        <item name="android:textColor">@color/text_color_gray_9</item>
    </style>
    <style name="Font7_white">
        <item name="android:textSize">@dimen/text_size_7</item>
        <item name="android:textColor">@color/text_color_white</item>
    </style>
    <style name="Font8_blue_2bb5fc">
        <item name="android:textSize">@dimen/text_size_8</item>
        <item name="android:textColor">@color/text_color_blue</item>
    </style>
    <style name="FontA">
        <item name="android:textSize">@dimen/text_size_a</item>
    </style>
    <style name="FontB">
        <item name="android:textSize">@dimen/text_size_b</item>
    </style>
    <style name="FontC">
        <item name="android:textSize">@dimen/text_size_c</item>
    </style>
    <style name="FontD">
        <item name="android:textSize">@dimen/text_size_d</item>
    </style>
    <style name="FontE">
        <item name="android:textSize">@dimen/text_size_e</item>
    </style>
    <style name="FontF">
        <item name="android:textSize">@dimen/text_size_f</item>
    </style>
    <style name="FontG">
        <item name="android:textSize">@dimen/text_size_g</item>
    </style>
    <style name="FontH">
        <item name="android:textSize">@dimen/text_size_h</item>
    </style>
    <style name="FontI">
        <item name="android:textSize">@dimen/text_size_i</item>
    </style>
    <style name="FontJ">
        <item name="android:textSize">@dimen/text_size_j</item>
    </style>
    <style name="FontL">
        <item name="android:textSize">@dimen/text_size_l</item>
    </style>
    <style name="LoadingDialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:backgroundDimEnabled">false</item>
    </style>
    <style name="MessengerButton">
    <item name="android:clickable">true</item>
  </style>
    <style name="MessengerButton.Blue">
    <item name="android:background">@drawable/messenger_button_blue_bg_selector</item>
  </style>
    <style name="MessengerButton.Blue.Large">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">44dp</item>
    <item name="android:layout_marginLeft">16dp</item>
    <item name="android:layout_marginRight">16dp</item>
  </style>
    <style name="MessengerButton.Blue.Small">
    <item name="android:layout_width">158dp</item>
    <item name="android:layout_height">36dp</item>
  </style>
    <style name="MessengerButton.White">
    <item name="android:background">@drawable/messenger_button_white_bg_selector</item>
  </style>
    <style name="MessengerButton.White.Large">
    <item name="android:layout_width">match_parent</item>
    <item name="android:layout_height">44dp</item>
    <item name="android:layout_marginLeft">16dp</item>
    <item name="android:layout_marginRight">16dp</item>
  </style>
    <style name="MessengerButton.White.Small">
    <item name="android:layout_width">158dp</item>
    <item name="android:layout_height">36dp</item>
  </style>
    <style name="MessengerButtonText">
    <item name="android:layout_width">wrap_content</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:layout_gravity">center</item>
    <item name="android:drawablePadding">4dp</item>
    <item name="android:gravity">center</item>
    <!--suppress NewApi -->
    <!-- <item name="android:textAllCaps">true</item> -->
    <item name="android:textSize">14sp</item>
    <item name="android:textStyle">bold</item>
  </style>
    <style name="MessengerButtonText.Blue">
    <item name="android:textColor">#ffffff</item>
  </style>
    <style name="MessengerButtonText.Blue.Large">
    <item name="android:drawableLeft">@drawable/messenger_bubble_large_white</item>
  </style>
    <style name="MessengerButtonText.Blue.Small">
    <item name="android:drawableLeft">@drawable/messenger_bubble_small_white</item>
  </style>
    <style name="MessengerButtonText.White">
    <item name="android:textColor">#0084ff</item>
  </style>
    <style name="MessengerButtonText.White.Large">
    <item name="android:drawableLeft">@drawable/messenger_bubble_large_blue</item>
  </style>
    <style name="MessengerButtonText.White.Small">
    <item name="android:drawableLeft">@drawable/messenger_bubble_small_blue</item>
  </style>
    <style name="NotificationText">
        <item name="android:textColor">@color/white</item>
    </style>
    <style name="NotificationTitle">
        <item name="android:textColor">@color/white</item>
        <item name="android:textStyle">bold</item>
    </style>
    <style name="Notitle_Fullscreen">
        <item name="android:windowFullscreen">true</item>
        <item name="android:windowNoTitle">true</item>
    </style>
    <style name="OverflowButton">
        <item name="android:src">@android:drawable/ic_menu_view</item>
    </style>
    <style name="StyleBarTitle">
        <item name="android:layout_weight">1</item>
        <item name="android:gravity">center_horizontal</item>
        <item name="android:textSize">18sp</item>
        <item name="android:textStyle">bold</item>
        <item name="android:textColor">#FFFFFF</item>
        <item name="android:shadowColor">#000000</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">0</item>
        <item name="android:shadowRadius">5</item>
        <item name="android:background">@null</item>
    </style>
    <style name="Theam.MyCustomDialogTheme" parent="android:Theme">
        <!--
        <item name="dialogTitleIconsDecorLayout">@layout/dialog_title_icons</item>
        <item name="dialogTitleDecorLayout">@layout/dialog_title</item>
        -->
        <!--
       <item name="dialogCustomTitleDecorLayout">@layout/dialog_custom_title</item>
       <item name="buttonStyle">@style/dialogBtn</item>
        -->
    </style>
    <style name="Theme" parent="android:Theme"/>
    <style name="Theme.MyDialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowBackground">@color/transparent</item>
    </style>
    <style name="Theme.Translucent" parent="android:style/Theme.Translucent">
 
        <!-- <item name="android:windowBackground">@drawable/translucent_background</item> -->
        <item name="android:windowNoTitle">true</item>
        <item name="android:colorForeground">#fff</item>
    </style>
    <style name="Theme.UMDefault" parent="android:style/Theme.NoTitleBar"/>
    <style name="Theme.UMDialog" parent="android:style/Theme.Dialog">
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
    </style>
    <style name="VK.Transparent" parent="android:Theme">
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowContentOverlay">@null</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowIsFloating">true</item>
    </style>
    <style name="VKAlertDialog">
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowContentOverlay">@null</item>
    </style>
    <style name="Widget"/>
    <style name="YoukuDialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:backgroundDimEnabled">false</item>
    </style>
    <style name="channel_rank_category_rank_text">
        <item name="android:textSize">42sp</item>
        <item name="android:textStyle">bold</item>
        <item name="android:textColor">#cccccc</item>
    </style>
    <style name="channelsubtitle">
        <item name="android:textSize">13sp</item>
        <item name="android:textColor">#ffffff</item>
        <item name="android:shadowRadius">0</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#000000</item>
    </style>
    <style name="com_facebook_button" parent="@android:style/Widget.Button">
        <item name="android:background">@drawable/com_facebook_button_background</item>
        <item name="android:drawablePadding">6dp</item>
        <item name="android:gravity">center</item>
        <item name="android:paddingBottom">5dp</item>
        <item name="android:paddingLeft">8dp</item>
        <item name="android:paddingRight">8dp</item>
        <item name="android:paddingTop">5dp</item>
        <item name="android:textColor">#ffffff</item>
        <item name="android:textSize">14.0dp</item>
    </style>
    <style name="com_facebook_button_like" parent="com_facebook_button">
        <item name="android:background">@drawable/com_facebook_button_like_background</item>
    </style>
    <style name="com_facebook_button_send" parent="com_facebook_button">
        <item name="android:background">@drawable/com_facebook_button_send_background</item>
        <item name="android:drawableLeft">@drawable/com_facebook_button_send_icon</item>
        <item name="android:text">@string/com_facebook_send_button_text</item>
    </style>
    <style name="com_facebook_button_share" parent="com_facebook_button">
        <item name="android:drawableLeft">@drawable/com_facebook_button_icon</item>
        <item name="android:text">@string/com_facebook_share_button_text</item>
    </style>
    <style name="com_facebook_loginview_default_style" parent="com_facebook_button">
        <item name="android:drawableLeft">@drawable/com_facebook_button_icon</item>
    </style>
    <style name="com_facebook_loginview_silver_style" parent="com_facebook_loginview_default_style">
        <item name="android:background">@drawable/com_facebook_button_login_silver_background</item>
        <item name="android:drawableLeft">@null</item>
        <item name="android:textColor">#4b5164</item>
    </style>
    <style name="comment_code_default" parent="FontB">
        <item name="android:textColor">#1b96d6</item>
    </style>
    <style name="detail_bottom_control" parent="FontD">
        <item name="android:textColor">#ffffffff</item>
    </style>
    <style name="detail_cache_item_no" parent="FontD">
        <item name="android:textColor">#a1a2a2</item>
    </style>
    <style name="detail_cache_item_normal_text">
        <item name="android:textSize">14sp</item>
        <item name="android:textColor">#ff666666</item>
        <item name="android:shadowColor">#ffffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowRadius">3</item>
    </style>
    <style name="detail_cache_item_selected_text">
        <item name="android:textColor">#ff999999</item>
        <item name="android:shadowColor">#ffffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowRadius">3</item>
    </style>
    <style name="detail_comment_btn" parent="FontC">
        <item name="android:textColor">#333333</item>
    </style>
    <style name="detail_comment_btn_push" parent="FontD">
        <item name="android:textColor">#000000</item>
    </style>
    <style name="detail_comment_input_hint" parent="FontA">
        <item name="android:textColor">#cccccc</item>
    </style>
    <style name="detail_comment_item_user" parent="FontA">
        <item name="android:textColor">#999999</item>
    </style>
    <style name="detail_comment_num" parent="FontD">
        <item name="android:textColor">#999999</item>
    </style>
    <style name="detail_comment_submit" parent="FontB">
        <item name="android:textColor">#999999</item>
    </style>
    <style name="detail_desc_item_no" parent="FontH">
        <item name="android:textColor">#a1a2a2</item>
    </style>
    <style name="detail_desc_item_no_mine" parent="FontE">
        <item name="android:textColor">#2bb5fc</item>
    </style>
    <style name="detail_intro_rate1" parent="FontE">
        <item name="android:textColor">#fffe5502</item>
    </style>
    <style name="detail_intro_rate2" parent="FontC">
        <item name="android:textColor">#fffe8300</item>
    </style>
    <style name="detail_intro_title" parent="FontE">
         <item name="android:textColor">#333333</item>
    </style>
    <style name="detail_item_content" parent="FontD">
        <item name="android:textColor">#666666</item>
    </style>
    <style name="detail_play_load" parent="FontE">
        <item name="android:textColor">#ffffffff</item>
    </style>
    <style name="detail_play_load_name" parent="FontD">
        <item name="android:textColor">#ffffffff</item>
    </style>
    <style name="detail_play_title" parent="FontB">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="detail_pop_control" parent="FontE">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="detail_pop_item" parent="FontC">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="detail_replay" parent="FontF">
        <item name="android:textColor">#ffffffff</item>
    </style>
    <style name="detail_title_item_no" parent="FontD">
        <item name="android:textColor">#2bb5fc</item>
    </style>
    <style name="detail_titles" parent="FontC">
        <item name="android:textColor">#333333</item>
    </style>
    <style name="dialogBtn" parent="@android:style/Widget.Button">
        <item name="android:background">@android:drawable/btn_default</item>
        <item name="android:textColor">@android:color/primary_text_light</item>
    </style>
    <style name="dialogBtnFont">
        <item name="android:textSize">14sp</item>
        <item name="android:textColor">#000000</item>
    </style>
    <style name="dialogTitleFont" parent="FontC">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="dialog_btn_text">
        <item name="android:textSize">16sp</item>
    </style>
    <style name="dialog_fullscreen">
 
        <!-- <item name="android:windowFullscreen">true</item> -->
        <item name="android:windowNoTitle">true</item>
        <item name="android:windowBackground">@android:color/transparent</item>
    </style>
    <style name="dialog_msg">
        <item name="android:textSize">18sp</item>
        <item name="android:textColor">#666666</item>
    </style>
    <style name="editTextActivityContent" parent="FontD">
        <item name="android:textColor">#999999</item>
    </style>
    <style name="editTextActivityTitle">
        <item name="android:textSize">18sp</item>
        <item name="android:textColor">#666666</item>
    </style>
    <style name="edit_btn_text" parent="FontC">
        <item name="android:textColor">#999999</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
    </style>
    <style name="epiTextStyle" parent="epiTextStyleBase">
        <item name="android:textColor">#cccccc</item>
        <item name="android:shadowColor">#222222</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:textStyle">bold</item>
        <item name="android:textSize">@dimen/fullscreen_player_episode_item_text_size</item>
    </style>
    <style name="epiTextStyleBase">
        <item name="android:shadowColor">#000</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowRadius">0.001</item>
        <item name="android:textColor">#cccccc</item>
    </style>
    <style name="epiTextWithTitleStyle" parent="epiTextStyleBase">
        <item name="android:textSize">@dimen/fullscreen_player_episode_item_small_text_size</item>
    </style>
    <style name="episode_pager_text">
        <item name="android:textColor">#cccccc</item>
        <item name="android:gravity">center</item>
        <item name="android:textSize">@dimen/fullscreen_player_episode_item_small_text_size</item>
    </style>
    <style name="filterFirstTitleFont">
        <item name="android:textSize">14sp</item>
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="filterItemFont">
        <item name="android:textSize">18sp</item>
        <item name="android:textColor">#f99999</item>
    </style>
    <style name="filterItemSelectedFont">
        <item name="android:textSize">18sp</item>
        <item name="android:textColor">#2bb5fc</item>
    </style>
    <style name="filterSubTitleFont">
        <item name="android:textSize">12sp</item>
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="filterTitleFont">
        <item name="android:textSize">24sp</item>
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="gridStripeBottomFont">
        <item name="android:textSize">10sp</item>
        <item name="android:textColor">#cccccc</item>
    </style>
    <style name="gridStripeBottomFontNew">
        <item name="android:textSize">11sp</item>
        <item name="android:textColor">#999999</item>
    </style>
    <style name="gridStripeBottomFontRankFont">
        <item name="android:textSize">12sp</item>
        <item name="android:textColor">#2ab49c</item>
    </style>
    <style name="gridStripeBottomRatingFont">
        <item name="android:textSize">14sp</item>
        <item name="android:textColor">#cccccc</item>
    </style>
    <style name="gridTitleFont">
        <item name="android:textSize">13sp</item>
        <item name="android:textColor">#666666</item>
    </style>
    <style name="historyPlayFont" parent="FontD">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="history_item_txt_first">
        <item name="android:textSize">@dimen/history_item_txt_first_textsize</item>
    </style>
    <style name="history_item_txt_second">
        <item name="android:textColor">#ffffffff</item>
        <item name="android:textSize">@dimen/history_item_txt_second_textsize</item>
    </style>
    <style name="historycached" parent="FontB">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="historypoint" parent="FontB">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="homeTitleFont">
        <item name="android:textSize">20sp</item>
        <item name="android:textColor">#333333</item>
    </style>
    <style name="homegridTitleFont">
        <item name="android:textSize">20sp</item>
        <item name="android:textColor">#666666</item>
    </style>
    <style name="homegroupTitleFont">
        <item name="android:textSize">24sp</item>
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="homepage_item_title_first">
        <item name="android:textColor">#ff444444</item>
        <item name="android:textSize">@dimen/homepage_item_title_first</item>
    </style>
    <style name="homepage_title_txt">
        <item name="android:textColor">#ff333333</item>
        <item name="android:shadowColor">#ffffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:textSize">@dimen/channeltab_txt_textsize</item>
    </style>
    <style name="homepagegridremask" parent="FontB">
        <item name="android:textColor">#666666</item>
    </style>
    <style name="homepagegridtext" parent="FontC">
        <item name="android:textColor">#000000</item>
    </style>
    <style name="homepagegridtitle" parent="FontD">
        <item name="android:textColor">#515151</item>
    </style>
    <style name="homepagetext" parent="FontA">
        <item name="android:textColor">#999999</item>
    </style>
    <style name="homepagetitle" parent="FontD">
        <item name="android:textColor">#333333</item>
    </style>
    <style mce_bogus="1" name="lan_DialogWindowAnim" parent="android:Animation">
        <item name="android:windowExitAnimation">@anim/shake_umeng_socialize_dlg_alpha</item>
    </style>
    <style name="login_btn" parent="FontF">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="login_code_default" parent="FontD">
        <item name="android:textColor">#1b96d6</item>
    </style>
    <style name="login_edit" parent="FontC">
        <item name="android:textColor">#333333</item>
    </style>
    <style name="login_edit_wrong" parent="FontB">
        <item name="android:textColor">#ff0000</item>
    </style>
    <style name="mycenter_Font">
        <item name="android:textSize">12sp</item>
    </style>
    <style name="mycenter_cat_grid_item_text" parent="FontC">
        <item name="android:textColor">#666666</item>
    </style>
    <style name="mycenter_grid_item_count_font" parent="FontD">
        <item name="android:textColor">#666666</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#ffffff</item>
    </style>
    <style name="mycenter_grid_item_title_font" parent="mycenter_Font">
        <item name="android:textColor">#666666</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#ffffff</item>
    </style>
    <style name="mycenter_header_complete_text_Font" parent="FontC">
        <item name="android:textColor">#666666</item>
        <item name="android:shadowColor">#ffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">0</item>
        <item name="android:shadowRadius">1</item>
    </style>
    <style name="mycenter_setting_cleartext_Font" parent="mycenter_Font">
        <item name="android:textColor">#ffffff</item>
    </style>
    <style name="mycenter_setting_listtext_Font">
        <item name="android:textSize">12sp</item>
        <item name="android:textColor">#666666</item>
        <item name="android:shadowColor">#ffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">0</item>
        <item name="android:shadowRadius">1</item>
    </style>
    <style name="mycenter_setting_listtext_sub_Font">
        <item name="android:textSize">12sp</item>
        <item name="android:textColor">#cccccc</item>
        <item name="android:shadowColor">#ffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">0</item>
        <item name="android:shadowRadius">1</item>
    </style>
    <style name="mycenter_top_user_desc" parent="FontD">
        <item name="android:textColor">#999999</item>
        <item name="android:shadowColor">#ffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">0</item>
        <item name="android:shadowRadius">1</item>
    </style>
    <style name="mycenter_top_user_name" parent="FontC">
        <item name="android:textColor">#666666</item>
        <item name="android:shadowColor">#ffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">0</item>
        <item name="android:shadowRadius">1</item>
    </style>
    <style name="mycenter_upload_btn_Font" parent="FontB"/>
    <style name="mycenter_upload_detail_Font" parent="FontC">
        <item name="android:textColor">#666666</item>
    </style>
    <style name="mycenter_upload_item_Font">
        <item name="android:textColor">#ccffffff</item>
    </style>
    <style name="mycenter_upload_item_chinese_Font" parent="mycenter_upload_item_Font">
        <item name="android:textSize">24sp</item>
        <item name="android:textStyle">bold</item>
    </style>
    <style name="mycenter_upload_item_number_Font" parent="mycenter_upload_item_Font">
        <item name="android:textSize">24sp</item>
        <item name="android:textStyle">bold</item>
    </style>
    <style name="mycenter_upload_item_size_Font" parent="mycenter_upload_item_Font">
        <item name="android:textSize">11sp</item>
    </style>
    <style name="mycenter_upload_video_tip_Font" parent="mycenter_Font">
        <item name="android:textColor">#cccccc</item>
    </style>
    <style name="mycenter_upload_video_uploadbtn_Font" parent="mycenter_Font">
        <item name="android:textColor">#999999</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#ffffff</item>
    </style>
    <style name="notitleDialog">
 
        <!-- 边框 -->
        <item name="android:windowFrame">@null</item>
        <!-- 半透明 -->
        <item name="android:windowIsTranslucent">true</item>
        <!-- 无标题 -->
        <item name="android:windowNoTitle">true</item>
        <!-- 背景透明 -->
        <item name="android:windowBackground">@android:color/transparent</item>
        <!-- 模糊 -->
        <item name="android:backgroundDimEnabled">false</item>
    </style>
    <style name="player_setting_text">
        <item name="android:textColor">#ffffff</item>
        <item name="android:gravity">center</item>
    </style>
    <style name="player_setting_text_title">
        <item name="android:textColor">#cccccc</item>
        <item name="android:gravity">center</item>
    </style>
    <style name="player_total_time_text">
        <item name="android:textColor">#8d8d8d</item>
        <item name="android:gravity">center</item>
    </style>
    <style name="register_btn" parent="FontF">
        <item name="android:textColor">#898c8d</item>
    </style>
    <style name="scrshot_dlg_style" parent="@android:style/Theme.Dialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:background">@android:color/transparent</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:backgroundDimEnabled">true</item>
        <item name="android:backgroundDimAmount">0.6</item>
    </style>
    <style mce_bogus="1" name="snapshotDialogWindowAnim" parent="android:Animation">
        <item name="android:windowEnterAnimation">@anim/shake_umeng_socialize_scrshot_dlg</item>
        <item name="android:windowExitAnimation">@anim/shake_umeng_socialize_dlg_alpha</item>
    </style>
    <style name="stripeMiddleFont" parent="FontC">
        <item name="android:textColor">#ffffff</item>
         <item name="android:shadowColor">#000000</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowRadius">1</item>
    </style>
    <style name="subTitleFont" parent="FontD">
        <item name="android:textColor">#666666</item>
    </style>
    <style name="toastFont">
        <item name="android:textSize">14sp</item>
        <item name="android:textColor">#000000</item>
    </style>
    <style name="toolbar_btn_txt">
        <item name="android:textColor">#ff666666</item>
        <item name="android:shadowColor">#ffffffff</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:textSize">@dimen/toolbar_btn_txt_textsize</item>
    </style>
    <style name="tooltip_bubble_text">
        <item name="android:textColor">@android:color/white</item>
        <item name="android:gravity">left</item>
        <item name="android:textSize">12sp</item>
        <item name="android:shadowDy">-1</item>
        <item name="android:shadowRadius">0.25</item>
        <item name="android:shadowColor">#40000000</item>
    </style>
    <style name="tudou_encrypt_dialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:windowNoTitle">true</item> 
    </style>
    <style name="umeng_socialize_action_bar_item_im">
        <item name="android:layout_width">25dp</item>
        <item name="android:layout_height">25dp</item>
        <item name="android:scaleType">fitCenter</item>
        <item name="android:layout_centerVertical">true</item>
    </style>
    <style name="umeng_socialize_action_bar_item_tv">
        <item name="android:layout_width">wrap_content</item>
        <item name="android:layout_height">fill_parent</item>
        <item name="android:layout_marginLeft">5dp</item>
        <item name="android:text">999</item>
        <item name="android:gravity">center</item>
        <item name="android:textColor">#ffffff</item>
        <item name="android:textSize">12sp</item>
        <item name="android:textStyle">bold</item>
    </style>
    <style name="umeng_socialize_action_bar_itemlayout">
        <item name="android:layout_height">fill_parent</item>
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_weight">1</item>
        <item name="android:paddingLeft">4dp</item>
        <item name="android:paddingTop">4dp</item>
        <item name="android:paddingRight">4dp</item>
        <item name="android:gravity">center_vertical</item>
    </style>
    <style name="umeng_socialize_dialog_anim_fade">
        <item name="android:windowEnterAnimation">@anim/umeng_socialize_fade_in</item>
        <item name="android:windowExitAnimation">@anim/umeng_socialize_fade_out</item>
    </style>
    <style name="umeng_socialize_dialog_animations">
        <item name="android:windowEnterAnimation">@anim/umeng_socialize_slide_in_from_bottom</item>
        <item name="android:windowExitAnimation">@anim/umeng_socialize_slide_out_from_bottom</item>
    </style>
    <style name="umeng_socialize_divider">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">1dp</item>
        <item name="android:background">@color/umeng_socialize_divider</item>
    </style>
    <style name="umeng_socialize_edit_padding">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">fill_parent</item>
        <item name="android:background">@color/umeng_socialize_list_item_bgcolor</item>
        <item name="android:layout_marginLeft">6dp</item>
        <item name="android:layout_marginRight">6dp</item>
        <item name="android:layout_marginTop">6dp</item>
        <item name="android:layout_marginBottom">6dp</item>
    </style>
    <style name="umeng_socialize_list_item">
        <item name="android:layout_width">fill_parent</item>
        <item name="android:layout_height">55dp</item>
        <item name="android:background">@color/umeng_socialize_list_item_bgcolor</item>
        <item name="android:paddingBottom">5dp</item>
        <item name="android:paddingTop">5dp</item>
    </style>
    <style name="umeng_socialize_popup_dialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:background">@android:color/transparent</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:backgroundDimEnabled">true</item>
        <item name="android:backgroundDimAmount">0.6</item>
    </style>
    <style name="umeng_socialize_popup_dialog_anim" parent="@style/umeng_socialize_popup_dialog">
        <item name="android:windowAnimationStyle">@style/umeng_socialize_dialog_animations</item>
    </style>
    <style name="umeng_socialize_shareboard_animation">
        <item name="android:windowEnterAnimation">@anim/umeng_socialize_shareboard_animation_in
        </item>
        <item name="android:windowExitAnimation">@anim/umeng_socialize_shareboard_animation_out
        </item>
    </style>
    <style name="wordpagechanneltitle" parent="FontD">
        <item name="android:textColor">#ffffff</item>
        <item name="android:shadowRadius">0</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#000000</item>
        <item name="android:textStyle">bold</item>
    </style>
    <style name="wordpagegridtitle" parent="FontC">
        <item name="android:textColor">#666666</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#ffffff</item>
    </style>
    <style name="wordpageimagetitle" parent="FontL">
        <item name="android:textColor">#ffffff</item>
        <item name="android:shadowRadius">6</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#000000</item>
    </style>
    <style name="wordpagerecommendtitle" parent="FontC">
        <item name="android:textColor">#ffffff</item>
        <item name="android:shadowRadius">6</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#000000</item>
    </style>
    <style name="wordpagesubtitle" parent="FontD">
        <item name="android:textColor">#666666</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#ffffff</item>
    </style>
    <style name="wordpagesubtitle2" parent="FontD">
        <item name="android:textColor">#ffffff</item>
        <item name="android:shadowRadius">1</item>
        <item name="android:shadowDx">0</item>
        <item name="android:shadowDy">1</item>
        <item name="android:shadowColor">#000000</item>
    </style>
    <style name="ypYoukuDialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowFrame">@null</item>
        <item name="android:windowIsFloating">true</item>
        <item name="android:windowIsTranslucent">true</item>
        <item name="android:windowNoTitle">true</item>
        <item name="android:background">@color/transparent</item>
        <item name="android:windowBackground">@android:color/transparent</item>
        <item name="android:backgroundDimEnabled">true</item>
    </style>
    <style name="yp_normal_content">
        <item name="android:gravity">center</item>
        <item name="android:includeFontPadding">false</item>
        <item name="android:textColor">#ff626262</item>
        <item name="android:lineSpacingExtra">@dimen/yp_edittext_add_txt_linespacingextra</item>
        <item name="android:textSize">@dimen/yp_normal_content_textsize</item>
    </style>
    <style name="yp_youku_dialog_txt_cancel">
        <item name="android:gravity">center</item>
        <item name="android:includeFontPadding">false</item>
        <item name="android:textColor">#ff747474</item>
        <item name="android:textSize">@dimen/yp_youku_dialog_txt_cancel_textsize</item>
    </style>
    <style name="yp_youku_dialog_txt_ok">
        <item name="android:gravity">center</item>
        <item name="android:includeFontPadding">false</item>
        <item name="android:textColor">#ff0177ae</item>
        <item name="android:textSize">@dimen/yp_youku_dialog_txt_cancel_textsize</item>
    </style>
</resources>