2018-03-11 18:09:35 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-04-04 09:38:27 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
2018-03-11 18:09:35 +00:00
|
|
|
|
2018-04-21 16:25:40 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:layout_height="match_parent">
|
2018-03-11 18:09:35 +00:00
|
|
|
|
2024-04-04 09:38:27 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/app_bar_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="?attr/actionBarSize" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-03-11 18:09:35 +00:00
|
|
|
|
2018-04-21 16:25:40 +00:00
|
|
|
<org.osmdroid.views.MapView
|
|
|
|
android:id="@+id/map"
|
|
|
|
android:layout_width="fill_parent"
|
2019-01-12 20:08:13 +00:00
|
|
|
android:layout_height="fill_parent"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:layout_below="@id/app_bar_layout" />
|
2018-04-21 16:25:40 +00:00
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2018-04-21 16:25:40 +00:00
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
2019-01-12 20:08:13 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
2018-04-21 16:25:40 +00:00
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:contentDescription="@string/action_unfix_from_location"
|
2024-04-04 09:38:27 +00:00
|
|
|
android:src="@drawable/ic_directions_24dp" />
|
2018-04-21 16:25:40 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
</layout>
|