2010-06-05 23:17:08 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<TableLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
2010-08-02 22:59:28 +02:00
|
|
|
android:layout_height="fill_parent" android:stretchColumns="1">
|
2010-06-09 10:54:24 +02:00
|
|
|
<TableRow>
|
2010-06-05 23:17:08 +02:00
|
|
|
<TextView android:id="@+id/TextView" android:layout_marginLeft="5dp"
|
2010-06-19 18:56:52 +02:00
|
|
|
android:layout_height="wrap_content" android:text="@string/osb_comment_dialog_message"></TextView>
|
2011-04-28 00:53:45 +02:00
|
|
|
<EditText android:text="" android:id="@+id/BugMessage" android:minLines="3" android:layout_marginLeft="5dp" android:layout_marginRight="5dp"
|
2010-08-02 22:59:28 +02:00
|
|
|
android:layout_height="wrap_content" ></EditText>
|
2010-06-05 23:17:08 +02:00
|
|
|
</TableRow>
|
2010-06-09 10:54:24 +02:00
|
|
|
<TableRow>
|
2010-06-19 18:56:52 +02:00
|
|
|
<TextView android:id="@+id/TextView" android:layout_marginLeft="5dp"
|
|
|
|
android:layout_height="wrap_content" android:text="@string/osb_comment_dialog_author"></TextView>
|
|
|
|
<EditText android:id="@+id/AuthorName" android:layout_marginLeft="5dp" android:layout_marginRight="5dp"
|
2010-08-02 22:59:28 +02:00
|
|
|
android:layout_height="wrap_content" android:text="NoName"></EditText>
|
2010-06-05 23:17:08 +02:00
|
|
|
</TableRow>
|
2010-06-09 10:54:24 +02:00
|
|
|
|
2010-06-05 23:17:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
</TableLayout>
|