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"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp">
|
|
<ImageView
|
|
android:id="@+id/imgBack"
|
|
android:layout_width="48dp"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/ic_back"/>
|
|
<TextView
|
|
android:gravity="center"
|
|
android:id="@+id/tvTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/title_diy_user_history"
|
|
android:layout_centerInParent="true"/>
|
|
</RelativeLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_marginRight="6dp"/>
|
|
</LinearLayout>
|