2011-08-22 01:52:00 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-05-17 20:01:40 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingBottom="@dimen/dialog_content_bottom_margin"
|
|
|
|
android:paddingLeft="@dimen/dialog_content_margin"
|
|
|
|
android:paddingRight="@dimen/dialog_content_margin"
|
|
|
|
android:paddingTop="@dimen/dialog_content_bottom_margin">
|
2015-02-11 14:18:22 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-17 20:01:40 +02:00
|
|
|
android:orientation="vertical">
|
2014-12-25 17:46:34 +01:00
|
|
|
|
|
|
|
<TextView
|
2015-02-11 14:18:22 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/dialog_elements_vertical_margin"
|
2017-01-08 08:37:37 +01:00
|
|
|
android:text="@string/shared_string_name"/>
|
2014-12-25 17:46:34 +01:00
|
|
|
|
|
|
|
<EditText
|
2015-02-11 14:18:22 +01:00
|
|
|
android:id="@+id/Name"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-10 23:06:11 +02:00
|
|
|
android:inputType="textCapSentences"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:selectAllOnFocus="true"/>
|
|
|
|
|
|
|
|
<TextView
|
2016-03-01 18:31:54 +01:00
|
|
|
android:id="@+id/TextButton"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/dialog_elements_vertical_margin"
|
|
|
|
android:text="@string/favourites_edit_dialog_category"/>
|
|
|
|
|
2015-07-24 11:09:50 +02:00
|
|
|
<net.osmand.plus.widgets.AutoCompleteTextViewEx
|
2015-02-11 14:18:22 +01:00
|
|
|
android:id="@+id/Category"
|
|
|
|
android:layout_width="fill_parent"
|
2015-07-24 11:09:50 +02:00
|
|
|
android:layout_height="wrap_content"/>
|
2015-02-11 14:18:22 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="@dimen/dialog_elements_vertical_margin"
|
|
|
|
android:text="@string/osmo_group_description"/>
|
|
|
|
|
|
|
|
<EditText
|
2015-09-24 18:18:10 +02:00
|
|
|
android:id="@+id/description"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-17 20:01:40 +02:00
|
|
|
android:inputType="textMultiLine|textCapSentences"
|
2015-05-18 16:53:55 +02:00
|
|
|
android:minLines="2"
|
2015-02-11 14:18:22 +01:00
|
|
|
android:selectAllOnFocus="true"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-05-19 18:26:07 +02:00
|
|
|
</ScrollView>
|