mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-05 01:35:50 +01:00
41 lines
1.2 KiB
XML
41 lines
1.2 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="fill_parent"
|
||
|
android:layout_height="fill_parent">
|
||
|
<view
|
||
|
class="org.petero.droidfish.activities.ChessBoardEdit"
|
||
|
android:id="@+id/eb_chessboard"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"/>
|
||
|
<TextView
|
||
|
android:text=""
|
||
|
android:id="@+id/eb_status"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:includeFontPadding="true"
|
||
|
android:typeface="monospace"
|
||
|
android:textSize="10dip"/>
|
||
|
<LinearLayout
|
||
|
android:orientation="horizontal"
|
||
|
android:id="@+id/LinearLayout02"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
<Button
|
||
|
android:text="Cancel"
|
||
|
android:id="@+id/eb_cancel"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1">
|
||
|
</Button>
|
||
|
<Button
|
||
|
android:text="Ok"
|
||
|
android:id="@+id/eb_ok"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1">
|
||
|
</Button>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|