Dantotsu/app/src/main/res/layout/activity_search.xml
2023-10-17 18:42:43 -05:00

19 lines
No EOL
712 B
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".media.SearchActivity">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/searchRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:paddingBottom="128dp"
tools:itemCount="1"
tools:listitem="@layout/item_search_header" />
</FrameLayout>