mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-22 07:28:16 +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"
|
||||
android:theme="@android:style/Theme.Light"
|
||||
android:screenOrientation="portrait"
|
||||
android:configChanges="keyboardHidden"
|
||||
/>
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/board_root"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
|
|
|
@ -2122,7 +2122,7 @@ public class BoardActivity extends XWActivity
|
|||
{
|
||||
int back = CommonPrefs.get( this )
|
||||
.otherColors[CommonPrefs.COLOR_BACKGRND];
|
||||
m_view.getRootView().setBackgroundColor( back );
|
||||
findViewById(R.id.board_root).setBackgroundColor( back );
|
||||
}
|
||||
|
||||
private void setKeepScreenOn()
|
||||
|
|
Loading…
Reference in a new issue