81 lines
No EOL
2.7 KiB
XML
81 lines
No EOL
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_transparent">
|
|
|
|
<ImageButton
|
|
android:id="@+id/back_button"
|
|
android:layout_width="@dimen/map_button_size"
|
|
android:layout_height="@dimen/map_button_size"
|
|
android:layout_gravity="start"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:layout_marginTop="@dimen/map_button_spacing"
|
|
android:background="@drawable/btn_circle"
|
|
android:contentDescription="@string/shared_string_collapse"
|
|
android:scaleType="center"
|
|
tools:src="@drawable/ic_action_test_light" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:orientation="vertical"
|
|
tools:visibility="visible">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/fab_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right"
|
|
android:layout_marginBottom="@dimen/map_button_margin"
|
|
android:layout_marginLeft="@dimen/content_padding"
|
|
android:layout_marginRight="@dimen/content_padding">
|
|
|
|
<ImageButton
|
|
android:id="@+id/map_my_location_button"
|
|
android:layout_width="@dimen/map_button_size"
|
|
android:layout_height="@dimen/map_button_size"
|
|
android:layout_gravity="bottom"
|
|
android:background="@drawable/btn_circle"
|
|
android:contentDescription="@string/shared_string_my_location"
|
|
tools:src="@drawable/ic_action_test_light" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/map_button_spacing"
|
|
android:orientation="vertical">
|
|
|
|
<ImageButton
|
|
android:id="@+id/map_zoom_in_button"
|
|
android:layout_width="@dimen/map_button_size"
|
|
android:layout_height="@dimen/map_button_size"
|
|
android:background="@drawable/btn_circle"
|
|
android:contentDescription="@string/zoomIn"
|
|
tools:src="@drawable/ic_action_test_light" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/map_zoom_out_button"
|
|
android:layout_width="@dimen/map_button_size"
|
|
android:layout_height="@dimen/map_button_size"
|
|
android:layout_marginTop="@dimen/map_button_spacing"
|
|
android:background="@drawable/btn_circle"
|
|
android:contentDescription="@string/zoomOut"
|
|
tools:src="@drawable/ic_action_test_light" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<net.osmand.plus.LockableViewPager
|
|
android:id="@+id/pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:layout_gravity="bottom" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |