2012-06-06 19:16:52 +02:00
|
|
|
<?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
|
|
|
|
android:layout_width="match_parent"
|
2012-08-01 00:50:37 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-06-06 19:16:52 +02:00
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
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_marginRight="5dp"
|
|
|
|
android:text="@string/title" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/incident_title"
|
2012-07-30 19:38:24 +02:00
|
|
|
android:layout_width="0dp"
|
2012-06-06 19:16:52 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-07-30 19:38:24 +02:00
|
|
|
android:layout_marginLeft="5dp"
|
2012-06-06 19:16:52 +02:00
|
|
|
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_marginRight="5dp"
|
|
|
|
android:text="@string/description" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/incident_description"
|
2012-07-30 19:38:24 +02:00
|
|
|
android:layout_width="0dp"
|
2012-06-06 19:16:52 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-07-30 19:38:24 +02:00
|
|
|
android:layout_marginLeft="5dp"
|
2013-11-07 13:40:21 +01:00
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:lines="4" />
|
2012-06-06 19:16:52 +02:00
|
|
|
</TableRow>
|
|
|
|
</TableLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2012-08-01 00:50:37 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-06-06 19:16:52 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-06-06 20:34:09 +02:00
|
|
|
android:layout_gravity="center_horizontal"
|
2012-08-01 00:50:37 +02:00
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginRight="3dp"
|
|
|
|
android:layout_marginTop="20dp"
|
2012-06-06 20:34:09 +02:00
|
|
|
android:orientation="horizontal" >
|
2012-06-06 19:16:52 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/incident_create_button"
|
2012-08-01 00:50:37 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-06-06 19:16:52 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/create" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|