admin
2021-07-20 27bd1f81221b8c8e8047118a64c2beb7bc214bbb
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
 
    <LinearLayout
        android:visibility="gone"
        android:id="@+id/ll_other"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
 
        <FrameLayout
            android:id="@+id/fragment_video_play_container1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#000000">
 
            <FrameLayout
                android:id="@+id/fragment_video_play_container"
                android:layout_width="match_parent"
                android:layout_height="match_parent"></FrameLayout>
 
            <FrameLayout
                android:id="@+id/fl_video_play_background"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
 
                <ImageView
                    android:id="@+id/iv_video_play_background"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="centerCrop" />
 
                <ImageView
                    android:id="@+id/iv_play_loading"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:scaleType="centerCrop"
                    android:src="@drawable/ic_gif_loading"
                    android:visibility="gone" />
 
 
                <FrameLayout
                    android:id="@+id/fl_banner"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="bottom"
                    android:background="@color/white"></FrameLayout>
 
                <LinearLayout
                    android:id="@+id/ll_download_so"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:orientation="vertical"
                    android:visibility="gone">
 
                    <TextView
                        android:id="@+id/textView4"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:drawableLeft="@drawable/ic_download_so"
                        android:drawablePadding="5dp"
                        android:gravity="center"
                        android:paddingLeft="25dp"
                        android:paddingRight="25dp"
                        android:text="正在下载播放插件"
                        android:textColor="@color/white" />
 
                    <SeekBar
                        android:id="@+id/seekbar_load_so"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:progressDrawable="@drawable/progress_drawable2"
                        android:thumb="@null" />
 
                    <TextView
                        android:id="@+id/tv_progrerss"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:layout_marginLeft="15dp"
                        android:text="9%"
                        android:textColor="@color/white" />
                </LinearLayout>
 
                <ImageView
                    android:id="@+id/iv_select_play"
                    android:layout_width="80dp"
                    android:layout_height="80dp"
                    android:layout_gravity="center"
                    android:src="@drawable/ic_select_play" />
            </FrameLayout>
 
            <TextView
                android:id="@+id/iv_back"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                android:layout_marginTop="5dp"
                android:drawableLeft="@drawable/ic_back_two"
                android:drawablePadding="5dp"
                android:gravity="center"
                android:src="@drawable/ic_back_two"
                android:textColor="@color/white" />
        </FrameLayout>
 
        <FrameLayout
            android:id="@+id/fl_video_detail"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_below="@id/fragment_video_play_container1"
            android:layout_weight="1">
 
            <FrameLayout
                android:id="@+id/fragment_video_detail_container"
                android:layout_width="match_parent"
                android:layout_height="match_parent"></FrameLayout>
 
            <FrameLayout
                android:id="@+id/fragment_video_episode_container"
                android:layout_width="match_parent"
                android:layout_height="match_parent"></FrameLayout>
 
            <ImageView
                android:id="@+id/iv_download_failure"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginTop="30dp"
                android:src="@drawable/download_failure"
                android:visibility="gone" />
        </FrameLayout>
    </LinearLayout>
 
    <FrameLayout
        android:id="@+id/fl_pptv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="visible"></FrameLayout>
 
</LinearLayout>