|
101
|
|
android:textColor="@color/hintColor"
|
|
102
|
|
android:textSize="14sp"
|
|
103
|
|
android:gravity="center"
|
|
104
|
|
android:visibility="gone"
|
|
105
|
|
android:layout_marginLeft="5dp"
|
|
106
|
|
android:id="@+id/item_collect_descriptionTR"
|
|
107
|
|
android:layout_alignTop="@+id/textView16"
|
|
108
|
|
android:layout_toRightOf="@+id/textView16"
|
|
109
|
|
android:layout_toEndOf="@+id/textView16" />
|
|
110
|
|
|
|
111
|
|
</RelativeLayout>
|
|
|
5
|
android:layout_height="wrap_content"
|
|
|
6
|
android:background="@color/bg_row"
|
|
|
7
|
android:orientation="vertical">
|
|
|
8
|
|
|
|
9
|
<LinearLayout
|
|
|
10
|
android:id="@+id/item"
|
|
|
11
|
android:layout_width="match_parent"
|
|
|
12
|
android:layout_height="wrap_content">
|
|
|
13
|
|
|
|
14
|
<ImageView
|
|
|
15
|
android:layout_width="45dp"
|
|
|
16
|
android:layout_height="45dp"
|
|
|
17
|
android:layout_marginLeft="8dp"
|
|
|
18
|
android:layout_marginTop="16dp"
|
|
|
19
|
android:layout_marginBottom="16dp"
|
|
|
20
|
android:src="@drawable/icon_listzhan76" />
|
|
|
21
|
|
|
|
22
|
<LinearLayout
|
|
|
23
|
android:layout_width="match_parent"
|
|
|
24
|
android:layout_height="match_parent"
|
|
|
25
|
android:layout_marginRight="15dp"
|
|
|
26
|
android:orientation="vertical">
|
|
|
27
|
|
|
|
28
|
<TextView
|
|
|
29
|
android:id="@+id/name"
|
|
|
30
|
android:layout_width="match_parent"
|
|
|
31
|
android:layout_height="wrap_content"
|
|
|
32
|
android:layout_marginLeft="10dp"
|
|
|
33
|
android:layout_marginTop="18dp"
|
|
|
34
|
android:maxLines="1"
|
|
|
35
|
tools:text="名称"
|
|
|
36
|
android:textColor="@color/ui_65"
|
|
|
37
|
android:textSize="15sp" />
|
|
|
38
|
|
|
|
39
|
<TextView
|
|
|
40
|
android:id="@+id/address"
|
|
|
41
|
android:layout_width="wrap_content"
|
|
|
42
|
android:layout_height="wrap_content"
|
|
|
43
|
android:layout_marginLeft="10dp"
|
|
|
44
|
android:layout_marginTop="5dp"
|
|
|
45
|
android:ellipsize="end"
|
|
|
46
|
android:maxEms="35"
|
|
|
47
|
android:singleLine="true"
|
|
|
48
|
tools:text="地址"
|
|
|
49
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
50
|
android:textColor="@color/hintColor"
|
|
|
51
|
android:textSize="13sp" />
|
|
|
52
|
</LinearLayout>
|
|
|
53
|
</LinearLayout>
|
|
|
54
|
|
|
|
55
|
<View
|
|
|
56
|
android:layout_width="match_parent"
|
|
|
57
|
android:layout_height="1dp"
|
|
|
58
|
android:background="@color/lineColor" />
|
|
|
59
|
</LinearLayout>
|