set background color of board root view from prefs on creation and

whenever pref color might have changed.
This commit is contained in:
Andy2 2011-06-03 23:35:06 -07:00 committed by Andy2
parent 9cc2dfca34
commit d0f0fa04ce

View file

@ -293,6 +293,7 @@ public class BoardActivity extends XWActivity
if ( m_path.charAt(0) == '/' ) {
m_path = m_path.substring( 1 );
}
setBackgroundColor();
} // onCreate
@Override
@ -334,6 +335,7 @@ public class BoardActivity extends XWActivity
if ( null != m_jniThread ) {
m_jniThread.handle( JNIThread.JNICmd.CMD_PREFS_CHANGE );
}
setBackgroundColor();
}
}
}
@ -1272,4 +1274,11 @@ public class BoardActivity extends XWActivity
m_toolbar.update( Toolbar.BUTTON_CHAT, m_gsi.gameIsConnected );
}
private void setBackgroundColor()
{
int back = CommonPrefs.get(this)
.otherColors[CommonPrefs.COLOR_BACKGRND];
m_view.getRootView().setBackgroundColor( back );
}
} // class BoardActivity