2015-08-21 16:48:27 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
2015-11-15 19:53:19 +01:00
|
|
|
android:id="@+id/messageEditTextLabel"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:text="@string/osb_comment_dialog_message"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/messageEditText"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-08-21 16:48:27 +02:00
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:minLines="1"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
|
2015-09-04 17:03:49 +02:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/closeChangeSetCheckBox"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/close_changeset"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/user_name"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/userNameEditText"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:layout_width="fill_parent"
|
2015-08-21 16:48:27 +02:00
|
|
|
android:layout_height="wrap_content"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/user_password"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/passwordEditText"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-08-21 16:48:27 +02:00
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
2015-09-04 17:03:49 +02:00
|
|
|
android:inputType="textPassword"/>
|
2015-08-21 16:48:27 +02:00
|
|
|
</LinearLayout>
|