2010-06-05 23:17:08 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-08-21 16:48:27 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:text="@string/osb_comment_dialog_message" />
|
|
|
|
|
|
|
|
<EditText
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/message_field"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:minLines="1"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:inputType="textMultiLine" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_marginLeft="5dp"
|
2015-11-15 19:32:19 +01:00
|
|
|
android:id="@+id/userNameEditTextLabel"
|
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:text="@string/osb_comment_dialog_author" />
|
|
|
|
|
|
|
|
<EditText
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/user_name_field"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:text="NoName" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_height="wrap_content"
|
2015-11-15 19:32:19 +01:00
|
|
|
android:id="@+id/passwordEditTextLabel"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:text="@string/osb_author_dialog_password" />
|
|
|
|
|
|
|
|
<EditText
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/password_field"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp"
|
|
|
|
android:layout_height="wrap_content"
|
2014-06-25 10:58:16 +02:00
|
|
|
android:layout_width="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:inputType="textPassword" />
|
2014-06-25 10:58:16 +02:00
|
|
|
</LinearLayout>
|