mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
||
|
|
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">
|
||
|
|
|
||
|
|
<android.support.v4.widget.NestedScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/SectionTitle"
|
||
|
|
android:text="@string/sidebar.inbox"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||
|
|
|
||
|
|
<android.support.v7.widget.CardView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/CardView.Default">
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/inbox_messages"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="40dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:divider="?android:listDivider"
|
||
|
|
android:showDividers="middle">
|
||
|
|
</LinearLayout>
|
||
|
|
</android.support.v7.widget.CardView>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</android.support.v4.widget.NestedScrollView>
|
||
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|