mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<android.support.design.widget.CoordinatorLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:id="@+id/coordinatorLayout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
style="@style/SectionTitle"
|
||
|
|
android:id="@+id/titleTextView"
|
||
|
|
android:background="@color/brand_100"
|
||
|
|
android:textColor="@android:color/white"/>
|
||
|
|
<android.support.v7.widget.RecyclerView
|
||
|
|
android:id="@+id/recyclerView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:scrollbarSize="3dp"
|
||
|
|
android:scrollbarThumbVertical="@color/md_grey_500"
|
||
|
|
android:scrollbars="vertical" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</android.support.design.widget.CoordinatorLayout>
|