162 lines
5.9 KiB
XML
162 lines
5.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TableLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_marginRight="5dp"
|
|
android:layout_weight="9"
|
|
android:orientation="vertical"
|
|
android:stretchColumns="1" >
|
|
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp" >
|
|
|
|
<TextView
|
|
style="@android:style/TextAppearance.Medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="5dp"
|
|
android:text="@string/title" />
|
|
|
|
<EditText
|
|
android:id="@+id/incident_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp" >
|
|
|
|
<TextView
|
|
style="@android:style/TextAppearance.Medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="5dp"
|
|
android:text="@string/description" />
|
|
|
|
<EditText
|
|
android:id="@+id/incident_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp" >
|
|
|
|
<TextView
|
|
style="@android:style/TextAppearance.Medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="5dp"
|
|
android:text="@string/source" />
|
|
|
|
<Spinner
|
|
android:id="@+id/incident_source"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:entries="@array/incident_source" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp" >
|
|
|
|
<TextView
|
|
style="@android:style/TextAppearance.Medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="5dp"
|
|
android:text="@string/priority" />
|
|
|
|
<Spinner
|
|
android:id="@+id/incident_priority"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:entries="@array/incident_priority" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp" >
|
|
|
|
<TextView
|
|
style="@android:style/TextAppearance.Medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="5dp"
|
|
android:text="@string/status_label_str" />
|
|
|
|
<Spinner
|
|
android:id="@+id/incident_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:entries="@array/incident_status" />
|
|
</TableRow>
|
|
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp" >
|
|
|
|
<TextView
|
|
style="@android:style/TextAppearance.Medium"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="5dp"
|
|
android:text="@string/group_label_str" />
|
|
|
|
<Spinner
|
|
android:id="@+id/incident_group"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/loading_group"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
</TableRow>
|
|
</TableLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_weight="1"
|
|
android:orientation="horizontal" >
|
|
|
|
<Button
|
|
android:id="@+id/incident_create_button"
|
|
android:layout_width="100dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/create" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |