admin
2022-01-28 760aee20870a34e6130a1c12237c5b747e2b00bd
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
 
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
 
        <FrameLayout
            android:id="@+id/fl_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
 
            <com.lcjian.library.widget.RatioLayout
                android:id="@+id/rl_container"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                app:ratio="1">
 
                <SurfaceView
                    android:id="@+id/video_view"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" />
 
            </com.lcjian.library.widget.RatioLayout>
 
        </FrameLayout>
 
 
        <com.yeshi.video.player.common.VideoPlayerController
            android:id="@+id/vpc_funshion"
            android:layout_width="match_parent"
            android:layout_height="match_parent"></com.yeshi.video.player.common.VideoPlayerController>
 
        <FrameLayout
            android:id="@+id/fl_ad"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#000000"
            android:visibility="gone">
 
            <ProgressBar
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"></ProgressBar>
 
        </FrameLayout>
    </FrameLayout>
 
 
</LinearLayout>