2010-01-02 20:30:20 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-06-26 05:14:15 +02:00
|
|
|
android:orientation="horizontal"
|
2010-01-02 20:30:20 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2010-01-07 15:38:16 +01:00
|
|
|
>
|
2010-01-02 20:30:20 +01:00
|
|
|
|
2010-06-26 05:14:15 +02:00
|
|
|
<LinearLayout android:orientation="vertical"
|
2010-06-25 17:14:18 +02:00
|
|
|
android:layout_width="fill_parent"
|
2010-06-26 05:14:15 +02:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
2010-06-25 17:14:18 +02:00
|
|
|
>
|
2010-06-26 05:14:15 +02:00
|
|
|
<org.eehouse.android.xw4.BoardView
|
|
|
|
android:id="@+id/board_view"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
|
|
|
android:longClickable="true"
|
|
|
|
android:drawSelectorOnTop="false"/>
|
|
|
|
|
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
>
|
|
|
|
<Button style="@style/toolbar_button"
|
|
|
|
android:text="1"
|
|
|
|
/>
|
|
|
|
<Button style="@style/toolbar_button"
|
|
|
|
android:text="2"
|
|
|
|
/>
|
|
|
|
<Button style="@style/toolbar_button"
|
|
|
|
android:text="3"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2010-06-25 17:14:18 +02:00
|
|
|
|
2010-06-26 05:14:15 +02:00
|
|
|
<LinearLayout android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
>
|
2010-06-25 17:14:18 +02:00
|
|
|
<Button style="@style/toolbar_button"
|
|
|
|
android:text="1"
|
|
|
|
/>
|
|
|
|
<Button style="@style/toolbar_button"
|
|
|
|
android:text="2"
|
|
|
|
/>
|
|
|
|
<Button style="@style/toolbar_button"
|
|
|
|
android:text="3"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2010-01-02 20:30:20 +01:00
|
|
|
</LinearLayout>
|