element-android/vector/src/main/res/layout/fragment_search.xml

17 lines
690 B
XML
Raw Normal View History

2020-09-21 15:40:46 +03:00
<?xml version="1.0" encoding="utf-8"?>
<im.vector.app.core.platform.StateView xmlns:android="http://schemas.android.com/apk/res/android"
2020-10-01 17:09:06 +03:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/stateView"
2020-09-21 15:40:46 +03:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2020-09-21 15:40:46 +03:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/searchResultRecycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
2020-10-01 17:09:06 +03:00
android:overScrollMode="always"
tools:itemCount="2"
2020-10-01 17:09:06 +03:00
tools:listitem="@layout/item_search_result" />
</im.vector.app.core.platform.StateView>