2021-12-28 01:37:07 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-01 01:47:36 +05:30
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-12-28 01:37:07 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-06-03 00:40:16 +05:30
|
|
|
tools:context=".fragments.SearchFragment">
|
2021-12-28 01:37:07 +05:30
|
|
|
|
2022-08-01 01:47:36 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/suggestions_recycler"
|
2022-05-09 22:10:51 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-08-01 01:47:36 +05:30
|
|
|
android:layout_marginVertical="10dp" />
|
2021-12-28 01:37:07 +05:30
|
|
|
|
2022-08-01 01:47:36 +05:30
|
|
|
</FrameLayout>
|