JLChen
2021-11-25 5dc625a64cf58d798929f22c3073cd06b837f87a
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
<?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:background="@android:color/white"
    android:orientation="vertical">
 
    <RelativeLayout
        android:id="@+id/rl_lp_topView"
        android:layout_width="match_parent"
        android:background="@color/lpsdk_app_bg"
        android:layout_height="44dp">
 
        <RelativeLayout
            android:id="@+id/ll_lp_btn_back"
            android:layout_width="44dp"
            android:layout_height="44dp">
            <ImageView
                android:layout_width="20dp"
                android:layout_height="20dp"
                android:layout_centerInParent="true"
                android:src="@drawable/ic_esvideo_on_back"/>
 
        </RelativeLayout>
 
        <TextView
            android:id="@+id/tv_lp_title"
            android:layout_width="match_parent"
            android:layout_height="25dp"
            android:layout_marginTop="10dp"
            android:layout_marginLeft="50dp"
            android:layout_marginRight="50dp"
            android:gravity="center"
            android:textColor="@color/lpsdk_textColor"
            android:textSize="18sp"
            android:text="室内机"
            ></TextView>
 
    </RelativeLayout>
 
 
    <LinearLayout
        android:id="@+id/ll_video_lp_rendering"
        android:layout_width="wrap_content"
        android:layout_height="210dp"
        android:background="@android:color/black">
        <TextureView
            android:id="@+id/video_lp_rendering"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>
    </LinearLayout>
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
        <TextureView
            android:id="@+id/video_lp_rendering2"
            android:layout_width="1dp"
            android:layout_height="1dp"/>
 
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="98dp"
            android:layout_alignParentTop="true"
            android:layout_marginTop="66dp">
 
            <RelativeLayout
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent">
                <ImageView
                    android:id="@+id/iv_lp_screenshot"
                    android:layout_width="66dp"
                    android:layout_height="66dp"
                    android:scaleType="fitCenter"
                    android:background="@drawable/btn_click_lp_screenshot"
                    android:layout_centerHorizontal="true"
                    ></ImageView>
                <TextView
                    android:id="@+id/tv_lp_screenshot"
                    android:layout_width="match_parent"
                    android:layout_height="20dp"
                    android:text="@string/lp_screenshotStr"
                    android:gravity="center"
                    android:textColor="@color/lpsdk_textColor"
                    android:textSize="14sp"
                    android:layout_alignParentBottom="true"
                    ></TextView>
 
            </RelativeLayout>
 
            <RelativeLayout
                android:id="@+id/rl_lp_unlock"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="match_parent">
                <ImageView
                    android:id="@+id/iv_lp_unlock"
                    android:layout_width="66dp"
                    android:layout_height="66dp"
                    android:scaleType="fitCenter"
                    android:background="@drawable/btn_click_lp_unlock"
                    android:layout_centerHorizontal="true"
                    ></ImageView>
                <TextView
                    android:id="@+id/tv_lp_unlock"
                    android:layout_width="match_parent"
                    android:layout_height="20dp"
                    android:text="@string/lp_unlockStr"
                    android:gravity="center"
                    android:textColor="@color/lpsdk_textColor"
                    android:textSize="14sp"
                    android:layout_alignParentBottom="true"
                    ></TextView>
            </RelativeLayout>
 
 
        </LinearLayout>
    </RelativeLayout>
</LinearLayout>