New flag for the internal settings
Change-Id: I81e69a6cda833a0d2c59a73388321ed11e0bd5b3main
parent
2040090b46
commit
e55785e682
|
@ -44,7 +44,7 @@ import com.android.inputmethodcommon.InputMethodSettingsFragment;
|
||||||
|
|
||||||
public class Settings extends InputMethodSettingsFragment
|
public class Settings extends InputMethodSettingsFragment
|
||||||
implements SharedPreferences.OnSharedPreferenceChangeListener {
|
implements SharedPreferences.OnSharedPreferenceChangeListener {
|
||||||
public static final boolean ENABLE_EXPERIMENTAL_SETTINGS = false;
|
public static final boolean ENABLE_INTERNAL_SETTINGS = ProductionFlag.IS_INTERNAL;
|
||||||
|
|
||||||
// In the same order as xml/prefs.xml
|
// In the same order as xml/prefs.xml
|
||||||
public static final String PREF_GENERAL_SETTINGS = "general_settings";
|
public static final String PREF_GENERAL_SETTINGS = "general_settings";
|
||||||
|
@ -220,7 +220,7 @@ public class Settings extends InputMethodSettingsFragment
|
||||||
|
|
||||||
final boolean showUsabilityStudyModeOption =
|
final boolean showUsabilityStudyModeOption =
|
||||||
res.getBoolean(R.bool.config_enable_usability_study_mode_option)
|
res.getBoolean(R.bool.config_enable_usability_study_mode_option)
|
||||||
|| ProductionFlag.IS_EXPERIMENTAL || ENABLE_EXPERIMENTAL_SETTINGS;
|
|| ProductionFlag.IS_EXPERIMENTAL || ENABLE_INTERNAL_SETTINGS;
|
||||||
final Preference usabilityStudyPref = findPreference(PREF_USABILITY_STUDY_MODE);
|
final Preference usabilityStudyPref = findPreference(PREF_USABILITY_STUDY_MODE);
|
||||||
if (!showUsabilityStudyModeOption) {
|
if (!showUsabilityStudyModeOption) {
|
||||||
if (usabilityStudyPref != null) {
|
if (usabilityStudyPref != null) {
|
||||||
|
|
|
@ -22,4 +22,5 @@ public final class ProductionFlag {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final boolean IS_EXPERIMENTAL = false;
|
public static final boolean IS_EXPERIMENTAL = false;
|
||||||
|
public static final boolean IS_INTERNAL = false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue