mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-28 06:29:09 +01:00
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp">
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="10dp"
|
|
android:text="@string/halfmove">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/ed_cnt_halfmove"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:minEms="3"
|
|
android:inputType="number">
|
|
</EditText>
|
|
</TableRow>
|
|
<TableRow
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="10dp"
|
|
android:text="@string/fullmove">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/ed_cnt_fullmove"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:minEms="3"
|
|
android:inputType="number">
|
|
</EditText>
|
|
</TableRow>
|
|
</TableLayout>
|