mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-28 06:29:09 +01:00
77 lines
2.9 KiB
XML
77 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<TableLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:stretchColumns="1"
|
|
android:padding="10dp">
|
|
<TableRow>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:paddingRight="10dp"
|
|
android:text="@string/comment_before">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/ed_comments_pre"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:minLines="2"
|
|
android:inputType="textMultiLine">
|
|
</EditText>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/comment_move">
|
|
</TextView>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
<EditText
|
|
android:id="@+id/ed_comments_move"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:lines="1"
|
|
android:minEms="3"
|
|
android:inputType="text"
|
|
android:enabled="false">
|
|
</EditText>
|
|
<EditText
|
|
android:id="@+id/ed_comments_nag"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:lines="1"
|
|
android:minEms="3"
|
|
android:inputType="text">
|
|
</EditText>
|
|
</LinearLayout>
|
|
</TableRow>
|
|
<TableRow>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="@string/comment_after">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/ed_comments_post"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:minLines="5"
|
|
android:inputType="textMultiLine">
|
|
</EditText>
|
|
</TableRow>
|
|
</TableLayout>
|
|
</ScrollView>
|