2020-09-21 15:40:46 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-09-24 10:19:26 +03:00
|
|
|
<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"
|
2020-09-24 10:19:26 +03:00
|
|
|
android:id="@+id/stateView"
|
2020-09-21 15:40:46 +03:00
|
|
|
android:layout_width="match_parent"
|
2020-09-29 20:38:58 +03:00
|
|
|
android:layout_height="match_parent">
|
2020-09-21 15:40:46 +03:00
|
|
|
|
2020-09-24 10:19:26 +03:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/searchResultRecycler"
|
|
|
|
android:layout_width="match_parent"
|
2020-10-30 11:02:29 +03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2020-10-01 17:09:06 +03:00
|
|
|
android:overScrollMode="always"
|
2020-10-30 11:02:29 +03:00
|
|
|
tools:itemCount="2"
|
2020-10-01 17:09:06 +03:00
|
|
|
tools:listitem="@layout/item_search_result" />
|
2020-09-21 17:01:27 +03:00
|
|
|
|
2020-09-24 10:19:26 +03:00
|
|
|
</im.vector.app.core.platform.StateView>
|