34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:background="#faf0e6">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/top_layer"
|
|
android:background="#d2b48c"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
/>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler"
|
|
android:background="#ffdead"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintTop_toBottomOf="@id/top_layer"
|
|
app:layout_constraintBottom_toTopOf="@id/bottom_layer"
|
|
android:orientation="horizontal"
|
|
/>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/bottom_layer"
|
|
android:background="#d2b48c"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |