droidfish/DroidFish/res/layout/edit_move_counters.xml

46 lines
1.1 KiB
XML
Raw Normal View History

2011-11-12 20:44:06 +01:00
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
2011-11-12 20:44:06 +01:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp">
<TableRow
2011-11-12 20:44:06 +01:00
android:layout_width="fill_parent"
android:layout_height="wrap_content">
2011-11-12 20:44:06 +01:00
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="10dp"
android:text="@string/halfmove">
2011-11-12 20:44:06 +01:00
</TextView>
2011-11-12 20:44:06 +01:00
<EditText
android:id="@+id/ed_cnt_halfmove"
2011-11-12 20:44:06 +01:00
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minEms="3"
2011-11-12 20:44:06 +01:00
android:inputType="number">
</EditText>
</TableRow>
<TableRow
2011-11-12 20:44:06 +01:00
android:layout_width="fill_parent"
android:layout_height="wrap_content">
2011-11-12 20:44:06 +01:00
<TextView
android:layout_width="wrap_content"
2011-11-12 20:44:06 +01:00
android:layout_height="wrap_content"
android:paddingRight="10dp"
android:text="@string/fullmove">
2011-11-12 20:44:06 +01:00
</TextView>
2011-11-12 20:44:06 +01:00
<EditText
android:id="@+id/ed_cnt_fullmove"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:minEms="3"
2011-11-12 20:44:06 +01:00
android:inputType="number">
</EditText>
</TableRow>
</TableLayout>