OsmAnd/OsmAnd/res/layout/close_measurement_tool_dialog.xml

22 lines
802 B
XML
Raw Normal View History

2017-08-28 13:26:23 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="@dimen/content_padding">
2017-08-28 13:26:23 +02:00
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="@string/keep_showing_on_map"/>
<android.support.v7.widget.SwitchCompat
android:id="@+id/toggle_show_on_map"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2017-09-06 17:34:57 +02:00
android:layout_marginLeft="@dimen/bottom_sheet_content_margin"
android:layout_marginStart="@dimen/bottom_sheet_content_margin"/>
2017-08-28 13:26:23 +02:00
</LinearLayout>