57 lines
1.7 KiB
XML
57 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="3dp"
|
|
android:paddingRight="3dp"
|
|
android:stretchColumns="1">
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/favourites_edit_dialog_name" />
|
|
|
|
<EditText
|
|
android:id="@+id/Name"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="3dp"
|
|
android:selectAllOnFocus="true" />
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_group_description" />
|
|
|
|
<EditText
|
|
android:id="@+id/descr"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:completionThreshold="1"
|
|
android:inputType="textCapWords"
|
|
android:paddingLeft="3dp"
|
|
android:selectAllOnFocus="true" />
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/favourites_edit_dialog_category" />
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/Category"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:completionThreshold="1"
|
|
android:inputType="textCapWords"
|
|
android:paddingLeft="3dp"
|
|
android:selectAllOnFocus="true" />
|
|
</TableRow>
|
|
</TableLayout>
|