26 lines
991 B
XML
26 lines
991 B
XML
<?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"
|
|
android:fitsSystemWindows="true"
|
|
tools:context="cpm.com.gskmtorange.storeinmap.StoreRouteActivity">
|
|
|
|
<include layout="@layout/content_store_route" />
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/fab_cancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|center"
|
|
android:layout_margin="8dp"
|
|
android:src="@mipmap/cancel"
|
|
app:fabSize="mini"
|
|
android:scaleType="center"
|
|
app:backgroundTint="@color/colorAccent" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|