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
<?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="wrap_content"
    android:orientation="vertical">
 
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="@dimen/px_20"
 
        android:orientation="vertical">
 
        <View
            android:layout_width="@dimen/px_1"
            android:layout_height="@dimen/px_40"
            android:layout_marginLeft="@dimen/px_15"
            android:background="@color/lc_demo_color_f18d00"></View>
 
        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:gravity="center_vertical">
 
            <View
                android:layout_width="@dimen/px_30"
                android:layout_height="@dimen/px_30"
                android:background="@drawable/lc_demo_point"></View>
 
            <TextView
                android:id="@+id/tv_time"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/px_15"
                android:text="00:52:00"
                android:textColor="@color/lc_demo_color_f18d00"
                android:textSize="@dimen/px_26"></TextView>
        </LinearLayout>
 
        <View
            android:layout_width="@dimen/px_1"
            android:layout_height="@dimen/px_20"
            android:layout_marginLeft="@dimen/px_15"
            android:background="@color/lc_demo_color_f18d00"></View>
    </LinearLayout>
 
    <android.support.v7.widget.RecyclerView
        android:id="@+id/rcv_record"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"></android.support.v7.widget.RecyclerView>
</LinearLayout>