44 lines
No EOL
1.5 KiB
XML
44 lines
No EOL
1.5 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/map_hud_controls"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom">
|
|
|
|
<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_remove_dark" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:layout_marginStart="@dimen/map_button_spacing"
|
|
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_remove_dark" />
|
|
|
|
<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_remove_dark" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |