Move a settings var to the settings class

Change-Id: I1331ad6dec3a9d64a77e314f8a1f4c29282df31b
main
Jean Chalard 2011-12-12 19:52:17 +09:00
parent f162ed7ec8
commit d567b230b0
2 changed files with 3 additions and 2 deletions

View File

@ -1086,8 +1086,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
@Override
public boolean onEvaluateFullscreenMode() {
return super.onEvaluateFullscreenMode()
&& mResources.getBoolean(R.bool.config_use_fullscreen_mode);
return super.onEvaluateFullscreenMode() && mSettingsValues.mUseFullScreenMode;
}
@Override

View File

@ -41,6 +41,7 @@ public class SettingsValues {
private final String mSymbolsExcludedFromWordSeparators;
public final String mWordSeparators;
public final CharSequence mHintToSaveText;
public final boolean mUseFullScreenMode;
// From preferences, in the same order as xml/prefs.xml:
public final boolean mAutoCap;
@ -94,6 +95,7 @@ public class SettingsValues {
mWordSeparators = createWordSeparators(mMagicSpaceStrippers, mMagicSpaceSwappers,
mSymbolsExcludedFromWordSeparators, res);
mHintToSaveText = context.getText(R.string.hint_add_to_dictionary);
mUseFullScreenMode = res.getBoolean(R.bool.config_use_fullscreen_mode);
// Get the settings preferences
mAutoCap = prefs.getBoolean(Settings.PREF_AUTO_CAP, true);