admin
2020-07-16 b5e008514ffa376154fee55423779a4f21c9f1b7
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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
 
        <include layout="@layout/item_status_bar" />
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:background="@color/white"
            android:gravity="center_vertical"
            android:orientation="horizontal">
 
            <TextView
                android:id="@+id/tv_top_bar_left"
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_gravity="center_vertical"
                android:drawableLeft="@drawable/ic_back"
                android:drawablePadding="3dp"
                android:gravity="center"
                android:padding="8dp"
                android:textColor="@color/text_black_1" />
 
            <TextView
                android:id="@+id/tv_top_bar_left2"
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_gravity="center"
                android:layout_marginLeft="6dp"
                android:gravity="center"
                android:paddingTop="8dp"
                android:paddingRight="8dp"
                android:paddingBottom="8dp"
                android:textColor="@color/text_black_1"
                android:visibility="visible" />
 
 
            <Button
                android:id="@+id/tv_top_bar_middle1"
                style="?android:attr/borderlessButtonStyle"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:gravity="center"
                android:layout_weight="1"
                android:background="@color/white"
                android:ellipsize="end"
                android:maxLines="1"
                android:textColor="@color/text_black_1"
                android:textSize="18sp"
                android:visibility="gone" />
 
 
            <ImageView
                android:id="@+id/iv_top_bar_right"
                android:layout_width="66dp"
                android:layout_height="wrap_content"
                android:padding="5dp"
                android:src="@drawable/ic_des_top_right"
                android:visibility="visible" />
        </LinearLayout>
 
 
        <View
            android:layout_width="match_parent"
            android:layout_height="1px"
            android:background="@color/trends_goods_bg" />
 
        <ProgressBar
            android:id="@+id/myProgressBar"
            style="?android:attr/progressBarStyleHorizontal"
            android:layout_width="match_parent"
            android:layout_height="2dp"
            android:background="@color/main_text_color" />
 
        <FrameLayout
            android:id="@+id/fl_webview"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"></FrameLayout>
 
    </LinearLayout>
 
    <View
        android:id="@+id/v_cover_web"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:alpha="0.1"
        android:background="@color/black"
        android:visibility="gone" />
    <!--全屏布局-->
    <FrameLayout
        android:id="@+id/fl_full_video"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone" />
</FrameLayout>