styles.xml
3.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="alivc_info_seekbar" parent="@android:style/Widget.SeekBar">
<item name="android:paddingStart">@dimen/rmrb_dp8</item>
<item name="android:paddingEnd">@dimen/rmrb_dp8</item>
<item name="android:paddingTop">@dimen/rmrb_dp10</item>
<item name="android:paddingBottom">@dimen/rmrb_dp10</item>
<item name="android:thumbOffset">@dimen/rmrb_dp4</item>
<item name="android:splitTrack">false</item>
<item name="android:max">100</item>
</style>
<style name="alivc_info_zoom_verticaseekbar" parent="@android:style/Widget.SeekBar">
<item name="android:paddingStart">@dimen/rmrb_dp8</item>
<item name="android:paddingEnd">@dimen/rmrb_dp8</item>
<item name="android:paddingTop">@dimen/rmrb_dp12</item>
<item name="android:paddingBottom">@dimen/rmrb_dp6</item>
<item name="android:thumbOffset">@dimen/rmrb_dp4</item>
<item name="android:splitTrack">false</item>
<item name="android:max">100</item>
</style>
<style name="alivc_info_seekbar_drag" parent="@android:style/Widget.SeekBar">
<item name="android:paddingStart">@dimen/rmrb_dp0</item>
<item name="android:paddingEnd">@dimen/rmrb_dp0</item>
<item name="android:paddingTop">@dimen/rmrb_dp10</item>
<item name="android:paddingBottom">@dimen/rmrb_dp10</item>
<item name="android:thumbOffset">@dimen/rmrb_dp4</item>
<item name="android:splitTrack">false</item>
<item name="android:max">100</item>
</style>
<style name="style_window_seekbar" parent="@android:style/Widget.SeekBar">
<item name="android:paddingStart">@dimen/rmrb_dp0</item>
<item name="android:paddingEnd">@dimen/rmrb_dp0</item>
<item name="android:thumbOffset">@dimen/rmrb_dp0</item>
<item name="android:splitTrack">false</item>
<item name="android:max">100</item>
</style>
<!-- 播放器View自定义属性 -->
<declare-styleable name="VideoAndLivePlayerView">
<attr name="playResourceType">
<!-- 普通视频 -->
<enum name="NORMAL" value="0" />
<!-- 回放视频 -->
<enum name="REVIEW" value="1" />
<!-- 预告视频 -->
<enum name="PREVIEW" value="2" />
<!-- 直播 -->
<enum name="LIVE" value="3" />
<!-- 图文详情页 -->
<enum name="DETAIL" value="4" />
</attr>
</declare-styleable>
<!--加载框-->
<declare-styleable name="ProgressWheel">
<attr name="matProg_progressIndeterminate" format="boolean" />
<attr name="matProg_barColor" format="color" />
<attr name="matProg_rimColor" format="color" />
<attr name="matProg_rimWidth" format="dimension" />
<attr name="matProg_spinSpeed" format="float" />
<attr name="matProg_barSpinCycleTime" format="integer" />
<attr name="matProg_circleRadius" format="dimension" />
<attr name="matProg_fillRadius" format="boolean" />
<attr name="matProg_barWidth" format="dimension" />
<attr name="matProg_linearProgress" format="boolean" />
</declare-styleable>
<declare-styleable name="VideoDurationBgStyle">
<attr name="need_video_duration_bg" format="boolean" />
</declare-styleable>
</resources>