panlili2024
2024-11-12 69afac92a320033297d71e901e3c5b65e690f0b2
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="70dp"
    android:minHeight="70dp"
    android:orientation="vertical"
    android:background="@drawable/hdl_item_selector_effect"
    >
 
 
    <LinearLayout
        android:id="@+id/ll_device"
        android:layout_width="55dp"
        android:layout_height="55dp"
        android:background="@drawable/hdl_shape_item_select"
        android:layout_marginLeft="10dp"
 
        android:layout_centerVertical="true">
 
        <ImageView
            android:id="@+id/im_device"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:visibility="visible"
            />
 
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_toRightOf="@+id/ll_device"
        android:layout_toLeftOf="@+id/iv_device_arrow"
        android:layout_marginLeft="10dp"
        android:orientation="vertical">
        <TextView
            android:id="@+id/tv_device"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="回路"
            android:gravity="center|left"
            android:textColor="@color/black"
            android:textSize="@dimen/ts_16"/>
        <TextView
            android:id="@+id/tv_device_message"
            android:layout_width="match_parent"
            android:layout_height="35dp"
            android:gravity="top|left"
            android:textColor="@color/gray_85"
            android:textSize="@dimen/ts_14"
            android:text=""/>
 
 
    </LinearLayout>
 
 
    <ImageView
        android:id="@+id/iv_device_arrow"
        android:layout_width="15dp"
        android:layout_height="15dp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@mipmap/arrow_more"
        android:layout_marginRight="10dp"/>
 
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_alignParentBottom="true"
        android:background="@color/default_bg_2"
        />
</RelativeLayout>