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

20 lines
932 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"
2017-06-20 09:30:58 +00:00
android:layout_height="match_parent">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/refresh_layout"
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" />
</android.support.v4.widget.SwipeRefreshLayout>
<com.habitrpg.android.habitica.ui.views.social.ChatBarView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"/>
</LinearLayout>