mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-14 16:17:51 +01:00
- SeekBarPreference now uses Android system style (textAppearanceLarge) instead of custom attribute values. - The dialog for filename has now the same visual style as the other dialogs. - Added colons to the rest of the dialog labels. - Added some padding to select_game.xml.
79 lines
2.1 KiB
XML
79 lines
2.1 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="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="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="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> |