admin
2022-04-21 bd6f6a75b22ecfa4b636d3f7fe3e1acaf867678e
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
<?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">
 
    <View
        android:id="@+id/view_status_bar"
        android:layout_width="match_parent"
        android:layout_height="20dp"
        android:background="@color/black"></View>
 
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
        <FrameLayout
            android:id="@+id/fl_videos"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        </FrameLayout>
 
 
        <FrameLayout
            android:id="@+id/fl_cover"
            android:layout_width="match_parent"
            android:layout_height="match_parent"></FrameLayout>
 
 
    </FrameLayout>
 
 
</LinearLayout>