mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-30 02:30:38 +00:00
25 lines
1,003 B
XML
25 lines
1,003 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
|
||
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
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"/>
|
||
|
|
|
||
|
|
<android.support.design.widget.FloatingActionButton
|
||
|
|
android:id="@+id/fab"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignParentRight="true"
|
||
|
|
android:layout_alignBottom="@id/recyclerView"
|
||
|
|
android:layout_marginBottom="32dp"
|
||
|
|
android:layout_marginRight="20dp"/>
|
||
|
|
|
||
|
|
</RelativeLayout>
|