mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-03 17:01:05 +01:00
63 lines
1.8 KiB
XML
63 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Halfmove clock">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/ed_cnt_halfmove"
|
|
android:background="@android:drawable/editbox_background"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:inputType="number">
|
|
</EditText>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_width="fill_parent"
|
|
android:text="Fullmove counter">
|
|
</TextView>
|
|
<EditText
|
|
android:id="@+id/ed_cnt_fullmove"
|
|
android:background="@android:drawable/editbox_background"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:inputType="number">
|
|
</EditText>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<Button
|
|
android:id="@+id/ed_cnt_cancel"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Cancel">
|
|
</Button>
|
|
<Button
|
|
android:id="@+id/ed_cnt_ok"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Ok">
|
|
</Button>
|
|
</LinearLayout>
|
|
</LinearLayout>
|