24 lines
1.2 KiB
XML
24 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"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
<FrameLayout
|
||
|
android:id="@+id/section_header_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:layout_constraintBottom_toTopOf="@+id/clock_preview_card_list_demo"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
<include layout="@layout/section_header" />
|
||
|
</FrameLayout>
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/clock_preview_card_list_demo"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/section_header_container"
|
||
|
android:clipToPadding="false" />
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|