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"
|
2013-09-07 09:31:55 +02:00
|
|
|
android:id="@+id/board_root"
|
2014-07-22 17:11: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
|
|
|
>
|
2014-07-22 17:11:15 +02:00
|
|
|
<LinearLayout android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
>
|
|
|
|
<org.eehouse.android.xw4.BoardView
|
|
|
|
android:id="@+id/board_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
|
|
|
android:longClickable="true"
|
|
|
|
android:drawSelectorOnTop="false"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
/>
|
2010-06-25 17:14:18 +02:00
|
|
|
|
2014-07-22 17:11:15 +02:00
|
|
|
<LinearLayout android:id="@+id/exchange_buttons"
|
2011-11-04 01:24:56 +01:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-22 17:11:15 +02:00
|
|
|
android:visibility="gone"
|
2011-11-04 01:24:56 +01:00
|
|
|
>
|
2014-07-22 17:11:15 +02:00
|
|
|
<Button android:id="@+id/exchange_commit"
|
|
|
|
android:text="@string/button_trade_commit"
|
|
|
|
style="@style/evenly_spaced_horizontal"
|
|
|
|
/>
|
|
|
|
<Button android:id="@+id/exchange_cancel"
|
|
|
|
android:text="@string/button_trade_cancel"
|
|
|
|
style="@style/evenly_spaced_horizontal"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-07-23 04:38:32 +02:00
|
|
|
<!-- toolbar goes inside me -->
|
|
|
|
<HorizontalScrollView android:id="@+id/tbar_parent_hor"
|
|
|
|
android:orientation="horizontal"
|
2014-07-22 17:11:15 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2014-07-23 04:38:32 +02:00
|
|
|
/>
|
2014-07-22 17:11:15 +02:00
|
|
|
</LinearLayout>
|
2012-07-02 16:39:06 +02:00
|
|
|
|
2014-07-23 04:38:32 +02:00
|
|
|
<!-- toolbar goes inside me -->
|
|
|
|
<ScrollView android:id="@+id/tbar_parent_vert"
|
2014-07-22 17:11:15 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-07-23 04:38:32 +02:00
|
|
|
/>
|
2010-01-02 20:30:20 +01:00
|
|
|
</LinearLayout>
|