hxb
2022-11-22 b3513b1713bb979d0a69c5a8c4ddcd038f184e6e
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
<?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="@color/lc_demo_color_ffffff"
    android:orientation="vertical">
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/px_140">
 
        <FrameLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent">
 
            <LinearLayout
                android:id="@+id/ll_back"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_centerVertical="true"
                android:paddingLeft="@dimen/px_20"
                android:paddingRight="@dimen/px_20">
 
                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:src="@mipmap/lc_demo_nav_back"></ImageView>
            </LinearLayout>
 
            <LinearLayout
                android:visibility="gone"
                android:id="@+id/ll_all"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_alignParentRight="true"
                android:gravity="center"
                android:paddingLeft="@dimen/px_20"
                android:paddingRight="@dimen/px_20">
 
                <TextView
                    android:id="@+id/tv_all"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/lc_demo_device_delete_choose_all"
                    android:textColor="@color/lc_demo_color_f18d00"
                    android:textSize="@dimen/px_32"></TextView>
            </LinearLayout>
 
        </FrameLayout>
 
        <LinearLayout
            android:layout_width="@dimen/px_360"
            android:layout_height="@dimen/px_65"
            android:layout_centerInParent="true"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="@dimen/px_30"
            android:background="@drawable/lc_demo_border_100r_shape">
 
            <TextView
                android:id="@+id/tv_cloud_record"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@drawable/lc_demo_bg_selector"
                android:gravity="center"
                android:text="@string/lc_demo_device_cloud_video"
                android:textColor="@drawable/lc_demo_txt_color_selector"
                android:textSize="@dimen/px_28"></TextView>
 
            <TextView
                android:id="@+id/tv_local_record"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@drawable/lc_demo_bg_selector"
                android:gravity="center"
                android:text="@string/lc_demo_device_local_video"
                android:textColor="@drawable/lc_demo_txt_color_selector"
                android:textSize="@dimen/px_28"></TextView>
        </LinearLayout>
 
        <LinearLayout
            android:id="@+id/ll_edit"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentRight="true"
            android:gravity="center"
            android:paddingLeft="@dimen/px_20"
            android:paddingRight="@dimen/px_20">
 
            <TextView
                android:id="@+id/tv_edit"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/lc_demo_device_record_edit"
                android:textColor="@color/lc_demo_color_f18d00"
                android:textSize="@dimen/px_32"></TextView>
        </LinearLayout>
    </RelativeLayout>
 
    <View
        android:layout_width="match_parent"
        android:layout_height="@dimen/px_1"
        android:background="@color/lc_demo_color_2c2c2c"></View>
 
    <FrameLayout
        android:id="@+id/fr_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></FrameLayout>
</LinearLayout>