OsmAnd/OsmAnd/res/layout/map_hud_quick_actions.xml

31 lines
1.2 KiB
XML
Raw Normal View History

2016-12-28 16:33:40 +01:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools">
2016-12-29 15:11:06 +01:00
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
2016-12-29 15:11:06 +01:00
android:padding="@dimen/map_button_margin">
<ImageButton
android:id="@+id/map_quick_actions_button"
android:layout_width="@dimen/map_button_size"
android:layout_height="@dimen/map_button_size"
2017-05-10 21:42:55 +02:00
android:contentDescription="@string/configure_screen_quick_action"
2016-12-29 15:11:06 +01:00
android:layout_gravity="bottom|right"
android:visibility="gone"
tools:visibility="visible"
tools:src="@drawable/ic_action_test_light"/>
</FrameLayout>
2016-12-28 16:33:40 +01:00
<net.osmand.plus.quickaction.QuickActionsWidget
android:id="@+id/quick_action_widget"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:visibility="visible"
android:visibility="gone"/>
</FrameLayout>