packages/apps/ThemePicker/res/layout/fragment_clock_custom_picke...

24 lines
1.2 KiB
XML
Raw Normal View History

2025-08-25 08:38:42 +08:00
<?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>