32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.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">
|
|
|
|
<org.osmdroid.views.MapView android:id="@+id/map"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/ic_follow_me"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|end"
|
|
android:layout_marginTop="11dp"
|
|
android:background="#00ffffff"
|
|
android:contentDescription="@string/bt_follow_me_description"
|
|
android:cropToPadding="true"
|
|
android:src="@drawable/osm_ic_follow_me_on" />
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/start_stop_trace"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|start"
|
|
android:layout_margin="@dimen/fab_margin"
|
|
app:srcCompat="@android:drawable/ic_media_play" />
|
|
</android.support.design.widget.CoordinatorLayout>
|