am e55785e6: New flag for the internal settings
* commit 'e55785e682351f5379427b50cb6001b540024ced': New flag for the internal settingsmain
commit
c8f08b83cf
|
@ -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