|
14
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
15
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
16
|
|
|
|
17
|
<ImageView
|
|
|
18
|
android:id="@+id/iv_back"
|
|
|
19
|
android:layout_width="wrap_content"
|
|
|
20
|
android:layout_height="match_parent"
|
|
|
21
|
android:contentDescription="@null"
|
|
|
22
|
android:paddingLeft="15dp"
|
|
|
23
|
android:paddingRight="15dp"
|
|
|
24
|
android:src="@drawable/icon_lvback1119"
|
|
|
25
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
26
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
27
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
28
|
|
|
|
29
|
<TextView
|
|
|
30
|
android:id="@+id/iv_title"
|
|
|
31
|
android:layout_width="match_parent"
|
|
|
32
|
android:layout_height="match_parent"
|
|
|
33
|
android:gravity="center"
|
|
|
34
|
android:textColor="#222222"
|
|
|
35
|
android:textSize="18sp"
|
|
|
36
|
tools:text="全部目的地" />
|
|
|
37
|
|
|
|
38
|
<View
|
|
|
39
|
android:layout_width="match_parent"
|
|
|
40
|
android:layout_height="0.5dp"
|
|
|
41
|
android:background="#dddddd"
|
|
|
42
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
43
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
44
|
app:layout_constraintRight_toRightOf="parent" />
|
|
|
45
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
46
|
|
|
|
47
|
<ListView
|
|
|
48
|
android:id="@+id/lv_search_list"
|
|
|
49
|
android:layout_width="match_parent"
|
|
|
50
|
android:layout_height="0dp"
|
|
|
51
|
android:background="@color/white"
|
|
|
52
|
android:cacheColorHint="@color/transparent"
|
|
|
53
|
android:fadingEdge="none"
|
|
|
54
|
android:listSelector="@color/transparent"
|
|
|
55
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
56
|
app:layout_constraintTop_toBottomOf="@+id/nav_bar" />
|
|
|
57
|
|
|
|
58
|
</androidx.constraintlayout.widget.ConstraintLayout>
|