20 lines
922 B
XML
20 lines
922 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/bg_CC596F80"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/re_select_direction"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/add_direction_margin_left"
|
|
android:layout_marginTop="@dimen/add_direction_margin_top"
|
|
android:layout_marginRight="@dimen/add_direction_margin_right"/>
|
|
<ImageView
|
|
android:id="@+id/im_back"
|
|
android:background="@mipmap/btn_cancel"
|
|
android:layout_width="@dimen/round_button_width"
|
|
android:layout_height="@dimen/round_button_width"
|
|
android:layout_margin="@dimen/btn_back_margin_top"/>
|
|
</RelativeLayout>
|