activity_show_location.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3    xmlns:tools="http://schemas.android.com/tools"
 4    android:layout_width="match_parent"
 5    android:layout_height="match_parent"
 6    tools:context=".ui.ShowLocationActivity">
 7
 8    <include layout="@layout/toolbar" />
 9
10    <org.osmdroid.views.MapView android:id="@+id/map"
11        android:layout_width="fill_parent"
12        android:layout_height="fill_parent"/>
13
14    <android.support.design.widget.FloatingActionButton
15        android:id="@+id/fab"
16        android:layout_width="wrap_content"
17        android:layout_height="wrap_content"
18        android:layout_gravity="end|bottom"
19        android:src="?attr/icon_directions"
20        android:tint="@color/white"
21        android:layout_alignParentEnd="true"
22        android:contentDescription="@string/action_unfix_from_location"
23        android:layout_margin="16dp"
24        android:layout_alignParentBottom="true"/>
25</RelativeLayout>