2015-06-20 18:46:04 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
2015-07-11 13:28:14 +00:00
|
|
|
|
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-06-20 18:46:04 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-06-29 14:04:03 +00:00
|
|
|
android:id="@+id/relativeLayoutView"
|
2015-06-20 18:46:04 +00:00
|
|
|
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"
|
2015-07-11 13:28:14 +00:00
|
|
|
android:scrollbars="vertical" />
|
2015-06-20 18:46:04 +00:00
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
|
android:id="@+id/fab"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-06-29 14:04:03 +00:00
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
|
android:layout_marginRight="16dp"
|
2015-07-11 13:28:14 +00:00
|
|
|
app:backgroundTint="@color/brand"
|
2015-06-29 14:04:03 +00:00
|
|
|
app:fabSize="normal"
|
2015-07-11 13:28:14 +00:00
|
|
|
android:layout_alignBottom="@id/recyclerView"
|
|
|
|
|
android:layout_alignParentRight="true" />
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
2015-06-20 18:46:04 +00:00
|
|
|
|