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"
|
2017-10-03 12:34:08 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="?dialogPreferredPadding"
|
|
|
|
android:paddingRight="?dialogPreferredPadding">
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
2017-10-03 12:34:08 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osb_comment_dialog_message"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<EditText
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/message_field"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="fill_parent"
|
2017-10-03 12:34:08 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
android:minLines="1"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
2017-10-03 12:34:08 +02:00
|
|
|
android:id="@+id/userNameEditTextLabel"
|
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="wrap_content"
|
2017-10-03 12:34:08 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osb_comment_dialog_author"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<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_width="fill_parent"
|
2017-10-03 12:34:08 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="NoName"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
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"
|
2017-10-03 12:34:08 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osb_author_dialog_password"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<EditText
|
2016-02-24 16:53:22 +01:00
|
|
|
android:id="@+id/password_field"
|
2014-06-25 10:58:16 +02:00
|
|
|
android:layout_width="fill_parent"
|
2017-10-03 12:34:08 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textPassword"/>
|
2014-06-25 10:58:16 +02:00
|
|
|
</LinearLayout>
|