mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-28 06:29:09 +01:00
0cefaaa5f0
board activity.
55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/drawer_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<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">
|
|
</view>
|
|
<TextView
|
|
android:text=""
|
|
android:id="@+id/eb_status"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="true"
|
|
android:fontFamily="monospace"
|
|
android:typeface="monospace"
|
|
android:textSize="12sp">
|
|
</TextView>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:id="@+id/LinearLayout02"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<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>
|
|
<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>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
<include layout="@layout/left_drawer"/>
|
|
</android.support.v4.widget.DrawerLayout>
|