mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-24 11:52:35 +01:00
46 lines
1.5 KiB
XML
46 lines
1.5 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">
|
|
<include
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
layout="@layout/title">
|
|
</include>
|
|
<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="@android:string/ok"
|
|
android:id="@+id/eb_ok"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
</Button>
|
|
<Button
|
|
android:text="@string/cancel"
|
|
android:id="@+id/eb_cancel"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1">
|
|
</Button>
|
|
</LinearLayout>
|
|
</LinearLayout>
|