33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white">
|
|
<RelativeLayout
|
|
android:id="@+id/rl_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp">
|
|
<include
|
|
android:id="@+id/included_title"
|
|
layout="@layout/include_activity_back_layout" />
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:id="@+id/rl_search"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_40"
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginRight="@dimen/dp_15"
|
|
android:layout_marginTop="@dimen/dp_10">
|
|
<include
|
|
android:id="@+id/include_search"
|
|
layout="@layout/include_search_round_layout"/>
|
|
</RelativeLayout>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_citys"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="@dimen/dp_15"
|
|
app:layoutManager="me.rosuh.filepicker.widget.PosLinearLayoutManager"/>
|
|
</LinearLayout> |