|
@@ -1,4 +1,20 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ tools:context=".MainActivity">
|
|
|
+ <com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
+ android:layout_margin="10dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:contentDescription="PRESS"
|
|
|
+ android:src="@drawable/icons8menufilled24"
|
|
|
+ android:layout_gravity="top"
|
|
|
+ android:elevation="16dp"
|
|
|
+ android:backgroundTint="#2A2E43"/>
|
|
|
+
|
|
|
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:map="http://schemas.android.com/apk/res-auto"
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
@@ -6,4 +22,8 @@
|
|
|
android:name="com.google.android.gms.maps.SupportMapFragment"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
- tools:context=".MapsActivity" />
|
|
|
+ tools:context=".MapsActivity" >
|
|
|
+
|
|
|
+</fragment>
|
|
|
+
|
|
|
+</androidx.coordinatorlayout.widget.CoordinatorLayout>
|