mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
fix so space opening up in landscape board layout is colored in
user-settable background color rather than white
This commit is contained in:
parent
550e637440
commit
0f617d359b
2 changed files with 1 additions and 2 deletions
|
@ -18,13 +18,13 @@
|
||||||
android:longClickable="true"
|
android:longClickable="true"
|
||||||
android:drawSelectorOnTop="false"
|
android:drawSelectorOnTop="false"
|
||||||
android:layout_gravity="center_vertical|center_horizontal"
|
android:layout_gravity="center_vertical|center_horizontal"
|
||||||
|
android:background="@android:color/transparent"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<LinearLayout android:id="@+id/exchange_buttons"
|
<LinearLayout android:id="@+id/exchange_buttons"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:background="#FF000000"
|
|
||||||
>
|
>
|
||||||
<Button android:id="@+id/exchange_commit"
|
<Button android:id="@+id/exchange_commit"
|
||||||
android:text="@string/button_trade_commit"
|
android:text="@string/button_trade_commit"
|
||||||
|
|
|
@ -178,7 +178,6 @@ public class BoardCanvas extends Canvas implements DrawCtx {
|
||||||
}
|
}
|
||||||
|
|
||||||
m_boundsScratch.set( 0, 0, bitmap.getWidth(), bitmap.getHeight() );
|
m_boundsScratch.set( 0, 0, bitmap.getWidth(), bitmap.getHeight() );
|
||||||
fillRect( m_boundsScratch, WHITE );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setJNIThread( JNIThread jniThread )
|
public void setJNIThread( JNIThread jniThread )
|
||||||
|
|
Loading…
Reference in a new issue