mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-01 19:57:11 +01:00
stop menu button (or "action bar overflow") from being invisible on
tablet devices.
This commit is contained in:
parent
4ed9078f3f
commit
1cf676e86b
3 changed files with 3 additions and 3 deletions
|
@ -107,7 +107,6 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<activity android:name="BoardActivity"
|
<activity android:name="BoardActivity"
|
||||||
android:theme="@android:style/Theme.Light"
|
|
||||||
android:screenOrientation="portrait"
|
android:screenOrientation="portrait"
|
||||||
android:configChanges="keyboardHidden"
|
android:configChanges="keyboardHidden"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/board_root"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="fill_parent"
|
||||||
|
|
|
@ -2120,9 +2120,9 @@ public class BoardActivity extends XWActivity
|
||||||
|
|
||||||
private void setBackgroundColor()
|
private void setBackgroundColor()
|
||||||
{
|
{
|
||||||
int back = CommonPrefs.get(this)
|
int back = CommonPrefs.get( this )
|
||||||
.otherColors[CommonPrefs.COLOR_BACKGRND];
|
.otherColors[CommonPrefs.COLOR_BACKGRND];
|
||||||
m_view.getRootView().setBackgroundColor( back );
|
findViewById(R.id.board_root).setBackgroundColor( back );
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setKeepScreenOn()
|
private void setKeepScreenOn()
|
||||||
|
|
Loading…
Add table
Reference in a new issue