Merge branch 'feature_dots'
This commit is contained in:
commit
8b38178a7a
1 changed files with 41 additions and 24 deletions
|
@ -1,27 +1,44 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<TableLayout
|
<LinearLayout
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="fill_parent" android:stretchColumns="1">
|
android:layout_height="fill_parent"
|
||||||
<TableRow>
|
android:orientation="vertical">
|
||||||
<TextView android:id="@+id/TextView" android:layout_marginLeft="5dp"
|
<TextView android:layout_marginLeft="5dp"
|
||||||
android:layout_height="wrap_content" android:text="@string/osb_comment_dialog_message"></TextView>
|
android:layout_height="wrap_content"
|
||||||
<EditText android:text="" android:id="@+id/BugMessage" android:minLines="3" android:layout_marginLeft="5dp" android:layout_marginRight="5dp"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content" ></EditText>
|
android:text="@string/osb_comment_dialog_message"/>
|
||||||
</TableRow>
|
<EditText android:id="@+id/BugMessage"
|
||||||
<TableRow>
|
android:minLines="1"
|
||||||
<TextView android:id="@+id/TextView" android:layout_marginLeft="5dp"
|
android:layout_marginLeft="5dp"
|
||||||
android:layout_height="wrap_content" android:text="@string/osb_comment_dialog_author"></TextView>
|
android:layout_marginRight="5dp"
|
||||||
<EditText android:id="@+id/AuthorName" android:layout_marginLeft="5dp" android:layout_marginRight="5dp"
|
android:layout_height="wrap_content"
|
||||||
android:layout_height="wrap_content" android:text="NoName"></EditText>
|
android:layout_width="fill_parent"
|
||||||
</TableRow>
|
android:inputType="textMultiLine"/>
|
||||||
<TableRow>
|
|
||||||
<TextView android:id="@+id/TextView" android:layout_marginLeft="5dp"
|
|
||||||
android:layout_height="wrap_content" android:text="@string/osb_author_dialog_password"></TextView>
|
|
||||||
<EditText android:id="@+id/Password" android:layout_marginLeft="5dp" android:layout_marginRight="5dp"
|
|
||||||
android:layout_height="wrap_content" android:text="" android:inputType="textPassword"></EditText>
|
|
||||||
</TableRow>
|
|
||||||
|
|
||||||
|
|
||||||
|
<TextView android:layout_marginLeft="5dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:text="@string/osb_comment_dialog_author"/>
|
||||||
|
<EditText android:id="@+id/AuthorName"
|
||||||
|
android:layout_marginLeft="5dp"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:text="NoName"/>
|
||||||
|
|
||||||
</TableLayout>
|
|
||||||
|
<TextView android:layout_marginLeft="5dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:text="@string/osb_author_dialog_password"/>
|
||||||
|
<EditText android:id="@+id/Password"
|
||||||
|
android:layout_marginLeft="5dp"
|
||||||
|
android:layout_marginRight="5dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:inputType="textPassword"/>
|
||||||
|
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
Loading…
Reference in a new issue