51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
|
<?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_marginLeft="5dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:text="@string/osb_comment_dialog_message" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/messageEditText"
|
||
|
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"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:text="@string/user_name" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/userNameEditText"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_marginRight="5dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="fill_parent" />
|
||
|
|
||
|
|
||
|
<TextView
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:text="@string/user_password" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/passwordEditText"
|
||
|
android:layout_marginLeft="5dp"
|
||
|
android:layout_marginRight="5dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:inputType="textPassword" />
|
||
|
</LinearLayout>
|