stop menu button (or "action bar overflow") from being invisible on

tablet devices.
This commit is contained in:
Eric House 2013-09-07 00:31:55 -07:00
parent 4ed9078f3f
commit 1cf676e86b
3 changed files with 3 additions and 3 deletions

View file

@ -107,7 +107,6 @@
/>
<activity android:name="BoardActivity"
android:theme="@android:style/Theme.Light"
android:screenOrientation="portrait"
android:configChanges="keyboardHidden"
/>

View file

@ -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"

View file

@ -2120,9 +2120,9 @@ public class BoardActivity extends XWActivity
private void setBackgroundColor()
{
int back = CommonPrefs.get(this)
int back = CommonPrefs.get( this )
.otherColors[CommonPrefs.COLOR_BACKGRND];
m_view.getRootView().setBackgroundColor( back );
findViewById(R.id.board_root).setBackgroundColor( back );
}
private void setKeepScreenOn()