34 lines
No EOL
1.3 KiB
XML
34 lines
No EOL
1.3 KiB
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:orientation="vertical">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/custom_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?android:attr/actionBarSize"
|
|
android:background="@color/actionbar_light_color"/>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/recycler_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/custom_toolbar"
|
|
android:background="?attr/ctx_menu_info_view_bg"
|
|
android:clipToPadding="false"
|
|
android:paddingTop="16dp"/>
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/fabButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_margin="16dp"
|
|
android:src="@drawable/map_quick_action"
|
|
app:backgroundTint="@color/dashboard_blue"/>
|
|
|
|
</RelativeLayout> |