64 lines
No EOL
1.9 KiB
XML
64 lines
No EOL
1.9 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="7dp"
|
|
android:paddingRight="7dp"
|
|
android:stretchColumns="1" >
|
|
|
|
<TableRow>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_group_name" />
|
|
|
|
<EditText
|
|
android:id="@+id/Name"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="3dp" />
|
|
</TableRow>
|
|
|
|
<TableRow>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_group_description" />
|
|
|
|
<EditText
|
|
android:id="@+id/Description"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:lines="3"
|
|
android:paddingLeft="3dp" />
|
|
</TableRow>
|
|
<TableRow>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_expire_group" />
|
|
|
|
<Spinner
|
|
android:id="@+id/ExpireGroup"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="3dp" />
|
|
</TableRow>
|
|
<TableRow>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_group_policy" />
|
|
|
|
<EditText
|
|
android:id="@+id/Policy"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:lines="2"
|
|
android:paddingLeft="3dp" />
|
|
</TableRow>
|
|
|
|
|
|
|
|
</TableLayout> |