2020-03-11 18:13:44 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-02-17 10:38:33 -05:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-03-11 18:13:44 -07:00
|
|
|
android:layout_width="match_parent"
|
2022-02-17 10:38:33 -05:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
2022-08-23 20:05:19 -04:00
|
|
|
<org.osmdroid.views.MapView
|
|
|
|
|
android:id="@+id/map"
|
2022-02-17 10:38:33 -05:00
|
|
|
android:layout_width="match_parent"
|
2022-08-24 12:16:57 -04:00
|
|
|
android:layout_height="match_parent" />
|
2022-02-17 10:38:33 -05:00
|
|
|
|
2022-08-30 17:25:11 -03:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
|
android:id="@+id/mapStyleButton"
|
|
|
|
|
android:layout_width="48sp"
|
|
|
|
|
android:layout_height="56sp"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:backgroundTint="@color/colorAdvancedBackground"
|
|
|
|
|
android:contentDescription="@string/style_selection"
|
|
|
|
|
app:icon="@drawable/ic_twotone_layers_24"
|
|
|
|
|
app:iconGravity="textStart"
|
|
|
|
|
app:iconPadding="0dp"
|
2022-09-06 18:31:14 -03:00
|
|
|
app:iconTint="@color/unselectedColor"
|
2022-08-30 17:25:11 -03:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
2022-08-24 12:16:57 -04:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
|
android:id="@+id/fab_style_toggle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
|
android:backgroundTint="@color/design_default_color_secondary"
|
|
|
|
|
android:contentDescription="@string/style_selection"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2022-08-30 17:25:11 -03:00
|
|
|
android:visibility="gone"
|
2022-08-24 12:16:57 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
tools:background="@color/design_default_color_secondary" />
|
2022-02-17 10:38:33 -05:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|