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"
|
2011-03-12 13:15:57 +01:00
|
|
|
android:orientation="vertical"
|
2010-01-02 20:30:20 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2011-03-12 13:15:57 +01:00
|
|
|
android:layout_weight="1"
|
2010-01-07 15:38:16 +01:00
|
|
|
>
|
2011-03-12 13:15:57 +01:00
|
|
|
<org.eehouse.android.xw4.BoardView
|
|
|
|
android:id="@+id/board_view"
|
|
|
|
android:layout_width="fill_parent"
|
2012-07-01 21:54:38 +02:00
|
|
|
android:layout_height="wrap_content"
|
2011-03-12 13:15:57 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
|
|
|
android:longClickable="true"
|
|
|
|
android:drawSelectorOnTop="false"/>
|
2010-06-25 17:14:18 +02:00
|
|
|
|
2011-08-31 15:37:33 +02:00
|
|
|
<LinearLayout android:id="@+id/exchange_buttons"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
>
|
|
|
|
<Button android:id="@+id/exchange_commit"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/button_trade_commit"
|
|
|
|
/>
|
|
|
|
<Button android:id="@+id/exchange_cancel"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/button_trade_cancel"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2011-11-04 01:24:56 +01:00
|
|
|
<HorizontalScrollView android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
>
|
|
|
|
<LinearLayout android:id="@+id/toolbar_horizontal"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
>
|
|
|
|
<ImageButton android:id="@+id/prevhint_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/prev_hint"
|
|
|
|
/>
|
|
|
|
<ImageButton android:id="@+id/nexthint_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/next_hint"
|
|
|
|
/>
|
|
|
|
<ImageButton android:id="@+id/shuffle_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/shuffle"
|
|
|
|
/>
|
|
|
|
<ImageButton android:id="@+id/zoom_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/zoom"
|
|
|
|
/>
|
|
|
|
<ImageButton android:id="@+id/undo_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/undo"
|
|
|
|
/>
|
2011-12-16 03:33:10 +01:00
|
|
|
<ImageButton android:id="@+id/values_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/values"
|
|
|
|
/>
|
2011-11-05 01:14:37 +01:00
|
|
|
<ImageButton android:id="@+id/flip_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/flip"
|
|
|
|
/>
|
|
|
|
<ImageButton android:id="@+id/dictlist_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/dicticon"
|
|
|
|
/>
|
2011-11-04 01:24:56 +01:00
|
|
|
<ImageButton android:id="@+id/chat_button_horizontal"
|
|
|
|
style="@style/toolbar_button"
|
|
|
|
android:src="@drawable/stat_notify_chat"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</HorizontalScrollView>
|
2010-01-02 20:30:20 +01:00
|
|
|
</LinearLayout>
|