64 lines
2.4 KiB
XML
64 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
layout_width="match_parent"
|
|
layout_height="match_parent">
|
|
<LinearLayout
|
|
orientation="vertical"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content">
|
|
<TextView
|
|
id="@+id/tv_title"
|
|
background="#f5f3f6"
|
|
padding="16dp"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
text="Title"
|
|
style="@style/2132017849"/>
|
|
<View
|
|
layout_gravity="bottom"
|
|
style="@style/2132018228"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
id="@+id/recycler_view"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"/>
|
|
<RelativeLayout
|
|
id="@+id/layout_bottom_detail"
|
|
padding="16dp"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content">
|
|
<TextView
|
|
id="@+id/tv_bottom_title"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content"
|
|
text="Title"
|
|
layout_alignParentLeft="true"
|
|
style="@style/2132017873"/>
|
|
<ImageView
|
|
id="@+id/img_date"
|
|
layout_width="25dp"
|
|
layout_height="25dp"
|
|
layout_marginTop="8dp"
|
|
src="@drawable/calendar"
|
|
layout_below="@+id/tv_bottom_title"
|
|
layout_alignLeft="@+id/tv_bottom_title"/>
|
|
<TextView
|
|
id="@+id/tv_bottom_detail_1"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
text="Start date"
|
|
layout_alignTop="@+id/img_date"
|
|
layout_marginStart="16dp"
|
|
layout_toEndOf="@+id/img_date"
|
|
style="@style/2132017873"/>
|
|
<TextView
|
|
id="@+id/tv_bottom_detail_2"
|
|
layout_width="wrap_content"
|
|
layout_height="wrap_content"
|
|
text="Detail"
|
|
layout_below="@+id/tv_bottom_detail_1"
|
|
layout_alignLeft="@+id/tv_bottom_detail_1"
|
|
style="@style/2132017664"/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|