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

48 lines
2.1 KiB
XML
Raw Normal View History

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"
2019-06-13 08:54:47 +00:00
android:layout_height="match_parent">
2020-08-26 14:29:37 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/opt_out_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingHorizontal="32dp"
android:paddingVertical="12dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/pms_disabled"
android:gravity="center"
style="@style/Subheader1"
android:textColor="@color/gray_50"
android:layout_marginBottom="4dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/pms_disabled_description"
android:gravity="center"
style="@style/Body3" />
</LinearLayout>
2019-06-13 08:54:47 +00:00
<LinearLayout
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"
2020-08-26 14:29:37 +00:00
android:showDividers="middle" />
</LinearLayout>
2018-11-06 15:11:02 +00:00
</androidx.core.widget.NestedScrollView>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>