mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-28 06:29:09 +01:00
50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:baselineAligned="false">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_weight="1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<view
|
|
class="org.petero.droidfish.ChessBoardPlay"
|
|
android:id="@+id/loadfen_chessboard"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
</view>
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_weight="1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<Button
|
|
android:text="@android:string/ok"
|
|
android:id="@+id/loadfen_ok"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
</Button>
|
|
<Button
|
|
android:id="@+id/loadfen_cancel"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/cancel">
|
|
</Button>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:focusable="false">
|
|
</ListView>
|
|
</LinearLayout>
|