habitica-android/Habitica/res/layout/fragment_inbox_message_list.xml

21 lines
988 B
XML
Raw Normal View History

2017-06-20 09:30:58 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2016-06-22 17:35:04 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2017-06-20 09:30:58 +00:00
android:orientation="vertical"
2016-06-22 17:35:04 +00:00
android:layout_width="match_parent"
2018-11-08 10:29:15 +00:00
android:layout_height="match_parent"
android:fitsSystemWindows="true">
2018-11-06 15:11:02 +00:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
2016-06-22 17:35:04 +00:00
android:layout_width="match_parent"
2017-06-20 09:30:58 +00:00
android:layout_height="0dp"
android:layout_weight="1">
<com.habitrpg.android.habitica.ui.helpers.RecyclerViewEmptySupport
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2018-11-06 15:11:02 +00:00
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
2017-06-20 09:30:58 +00:00
<com.habitrpg.android.habitica.ui.views.social.ChatBarView
2017-11-15 17:08:19 +00:00
android:id="@+id/chatBarView"
2017-06-20 09:30:58 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
2017-06-20 09:30:58 +00:00
</LinearLayout>