OsmAnd/OsmAnd/res/layout/fav_group_edit.xml

56 lines
1.7 KiB
XML
Raw Normal View History

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"
android:stretchColumns="1">
2014-06-20 18:37:06 +02:00
2014-06-23 02:42:50 +02:00
<TableRow>
2015-09-11 16:15:52 +02:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2017-01-08 08:37:37 +01:00
android:text="@string/shared_string_name" />
2015-09-11 16:15:52 +02:00
<EditText
android:id="@+id/nameEditText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp" />
</TableRow>
<TableRow>
2014-06-23 02:42:50 +02:00
<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"
android:layout_marginRight="5dp" />
2014-06-23 02:42:50 +02:00
</TableRow>
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content">
2014-06-23 02:42:50 +02:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
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"
android:layout_marginRight="5dp"></Spinner>
2014-06-23 02:42:50 +02:00
</TableRow>
</TableLayout>