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
<?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="66dp"
    android:gravity="center_vertical"
              android:orientation="horizontal"
              android:paddingLeft="16dp"
    android:background="@drawable/route_item_select_bg"
              android:paddingRight="16dp">
<CheckBox
    android:layout_width="0dp"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:layout_toLeftOf="@+id/tv_title"
/>
    <TextView
        android:id="@+id/tv_title"
        android:layout_width="0dp"
        android:layout_weight="2"
        android:layout_height="wrap_content"
        android:textColor="@android:color/white"
        android:text="sdf"
        android:padding="@dimen/ui_margin_5dp"
        android:textSize="17sp"/>
 
<!--    <View
        android:layout_width="match_parent"
        android:layout_height="0.2dp"
        android:layout_alignParentBottom="true"
        android:background="#c9c9c9"/>-->
    <ImageView
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/tv_title"
        android:background="@color/color_0ab0ef"
        android:id="@+id/iv_delete"
        android:src="@drawable/ic_arrow_back_white_24dp"/>
</LinearLayout>