2018-11-06 15:11:02 +00:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2016-06-22 17:35:04 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:id="@+id/inbox_refresh_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2016-06-22 17:35:04 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-04-06 12:01:09 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:paddingBottom="?attr/actionBarSize">
|
2018-11-19 17:13:35 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.PaddedLinearLayout
|
2016-06-22 17:35:04 +00:00
|
|
|
android:id="@+id/inbox_messages"
|
|
|
|
|
android:layout_width="match_parent"
|
2016-06-22 17:49:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
2016-06-22 17:35:04 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:divider="?android:listDivider"
|
|
|
|
|
android:showDividers="middle">
|
2018-11-19 17:13:35 +00:00
|
|
|
</com.habitrpg.android.habitica.ui.views.PaddedLinearLayout>
|
2018-11-06 15:11:02 +00:00
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|