2014-06-20 18:37:06 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-06-23 02:42:50 +02:00
|
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="7dp"
|
|
|
|
android:paddingRight="7dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:stretchColumns="1">
|
2014-06-20 18:37:06 +02:00
|
|
|
|
2014-06-23 02:42:50 +02:00
|
|
|
<TableRow>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-08 22:38:11 +01:00
|
|
|
android:text="@string/shared_string_show_on_map" />
|
2014-06-23 02:42:50 +02:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/Visibility"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginRight="5dp" />
|
2014-06-23 02:42:50 +02:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
<TableRow
|
|
|
|
android:layout_width="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content">
|
2014-06-23 02:42:50 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:text="@string/osmo_edit_color"></TextView>
|
2014-06-23 02:42:50 +02:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/ColorSpinner"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginRight="5dp"></Spinner>
|
2014-06-23 02:42:50 +02:00
|
|
|
</TableRow>
|
|
|
|
|
|
|
|
</TableLayout>
|