mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-03 00:43:10 +01:00
ddab55e064
interference between opening a drawer and long pressing a button.
118 lines
4.8 KiB
XML
118 lines
4.8 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="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_marginRight="2dp"
|
|
android:layout_weight="1"
|
|
android:layout_width="0dip"
|
|
android:layout_height="fill_parent"
|
|
android:paddingRight="1dp">
|
|
<include
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
layout="@layout/title">
|
|
</include>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="6dp">
|
|
<ImageButton
|
|
android:id="@+id/custom3Button"
|
|
android:contentDescription="@string/buttonDesc_custom3"
|
|
android:layout_width="36dp"
|
|
android:layout_height="32dp">
|
|
</ImageButton>
|
|
<ImageButton
|
|
android:id="@+id/custom2Button"
|
|
android:contentDescription="@string/buttonDesc_custom2"
|
|
android:layout_width="36dp"
|
|
android:layout_height="32dp">
|
|
</ImageButton>
|
|
<ImageButton
|
|
android:id="@+id/custom1Button"
|
|
android:contentDescription="@string/buttonDesc_custom1"
|
|
android:layout_width="36dp"
|
|
android:layout_height="32dp">
|
|
</ImageButton>
|
|
<ImageButton
|
|
android:id="@+id/modeButton"
|
|
android:contentDescription="@string/buttonDesc_mode"
|
|
android:layout_width="36dp"
|
|
android:layout_height="32dp">
|
|
</ImageButton>
|
|
<ImageButton
|
|
android:id="@+id/undoButton"
|
|
android:contentDescription="@string/buttonDesc_back"
|
|
android:layout_width="36dp"
|
|
android:layout_height="32dp">
|
|
</ImageButton>
|
|
<ImageButton
|
|
android:id="@+id/redoButton"
|
|
android:contentDescription="@string/buttonDesc_forward"
|
|
android:layout_width="36dp"
|
|
android:layout_height="32dp">
|
|
</ImageButton>
|
|
</LinearLayout>
|
|
<TextView
|
|
android:id="@+id/status"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="true"
|
|
android:fontFamily="monospace"
|
|
android:typeface="monospace"
|
|
android:textSize="12sp"/>
|
|
<RelativeLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<view
|
|
class="org.petero.droidfish.MyScrollView"
|
|
android:id="@+id/scrollViewBot"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/thinking"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="true"
|
|
android:fontFamily="monospace"
|
|
android:typeface="monospace"
|
|
android:textSize="12sp"/>
|
|
</view>
|
|
<ScrollView
|
|
android:id="@+id/scrollView"
|
|
android:layout_above="@+id/scrollViewBot"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<TextView
|
|
android:id="@+id/moveList"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="true"
|
|
android:fontFamily="monospace"
|
|
android:typeface="monospace"
|
|
android:textSize="12sp"/>
|
|
</ScrollView>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
<view
|
|
class="org.petero.droidfish.ChessBoardPlay"
|
|
android:id="@+id/chessboard"
|
|
android:layout_weight="0"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"/>
|
|
</LinearLayout>
|
|
<include layout="@layout/left_drawer"/>
|
|
<include layout="@layout/right_drawer"/>
|
|
</android.support.v4.widget.DrawerLayout>
|