2017-04-20 13:33:33 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2017-11-14 20:04:38 +00:00
|
|
|
android:id="@+id/refreshLayout"
|
2017-05-15 09:07:17 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1">
|
2019-01-08 18:26:36 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-04-20 13:33:33 +00:00
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
2017-05-15 09:07:17 +00:00
|
|
|
android:layout_height="match_parent" />
|
2018-11-06 15:11:02 +00:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2017-05-15 09:07:17 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.social.ChatBarView
|
2017-11-15 17:08:19 +00:00
|
|
|
android:id="@+id/chatBarView"
|
2017-04-20 13:33:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-05-15 09:07:17 +00:00
|
|
|
android:layout_height="wrap_content" />
|
2017-04-20 08:28:32 +00:00
|
|
|
</LinearLayout>
|