mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
ad2fce6519
Toolbar and call it from BoardActivity to produce a working hint button. Am using text labels instead of icons for now.
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<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_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1"
|
|
>
|
|
<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:id="@+id/toolbar_horizontal"
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/toolbar_vertical"
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|