Remove "Key popup dismiss delay" when "Popup on keypress" is suppressed
bug: 6714783 Change-Id: Idf674e8e1af80642f2c53f7ae5c03e21c9e04292
This commit is contained in:
parent
7368009799
commit
9f78eed456
1 changed files with 28 additions and 23 deletions
|
@ -143,28 +143,25 @@ public class Settings extends InputMethodSettingsFragment
|
||||||
generalSettings.removePreference(mVoicePreference);
|
generalSettings.removePreference(mVoicePreference);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!VibratorUtils.getInstance(context).hasVibrator()) {
|
|
||||||
final PreferenceGroup advancedSettings =
|
final PreferenceGroup advancedSettings =
|
||||||
(PreferenceGroup) findPreference(PREF_ADVANCED_SETTINGS);
|
(PreferenceGroup) findPreference(PREF_ADVANCED_SETTINGS);
|
||||||
|
if (!VibratorUtils.getInstance(context).hasVibrator()) {
|
||||||
generalSettings.removePreference(findPreference(PREF_VIBRATE_ON));
|
generalSettings.removePreference(findPreference(PREF_VIBRATE_ON));
|
||||||
if (null != advancedSettings) { // Theoretically advancedSettings cannot be null
|
if (null != advancedSettings) { // Theoretically advancedSettings cannot be null
|
||||||
advancedSettings.removePreference(findPreference(PREF_VIBRATION_DURATION_SETTINGS));
|
advancedSettings.removePreference(findPreference(PREF_VIBRATION_DURATION_SETTINGS));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final boolean showPopupOption = res.getBoolean(
|
final boolean showKeyPreviewPopupOption = res.getBoolean(
|
||||||
R.bool.config_enable_show_popup_on_keypress_option);
|
R.bool.config_enable_show_popup_on_keypress_option);
|
||||||
if (!showPopupOption) {
|
|
||||||
generalSettings.removePreference(findPreference(PREF_POPUP_ON));
|
|
||||||
}
|
|
||||||
|
|
||||||
final CheckBoxPreference includeOtherImesInLanguageSwitchList =
|
|
||||||
(CheckBoxPreference)findPreference(PREF_INCLUDE_OTHER_IMES_IN_LANGUAGE_SWITCH_LIST);
|
|
||||||
includeOtherImesInLanguageSwitchList.setEnabled(
|
|
||||||
!SettingsValues.isLanguageSwitchKeySupressed(prefs));
|
|
||||||
|
|
||||||
mKeyPreviewPopupDismissDelay =
|
mKeyPreviewPopupDismissDelay =
|
||||||
(ListPreference)findPreference(PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY);
|
(ListPreference) findPreference(PREF_KEY_PREVIEW_POPUP_DISMISS_DELAY);
|
||||||
|
if (!showKeyPreviewPopupOption) {
|
||||||
|
generalSettings.removePreference(findPreference(PREF_POPUP_ON));
|
||||||
|
if (null != advancedSettings) { // Theoretically advancedSettings cannot be null
|
||||||
|
advancedSettings.removePreference(mKeyPreviewPopupDismissDelay);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
final String[] entries = new String[] {
|
final String[] entries = new String[] {
|
||||||
res.getString(R.string.key_preview_popup_dismiss_no_delay),
|
res.getString(R.string.key_preview_popup_dismiss_no_delay),
|
||||||
res.getString(R.string.key_preview_popup_dismiss_default_delay),
|
res.getString(R.string.key_preview_popup_dismiss_default_delay),
|
||||||
|
@ -179,6 +176,12 @@ public class Settings extends InputMethodSettingsFragment
|
||||||
}
|
}
|
||||||
mKeyPreviewPopupDismissDelay.setEnabled(
|
mKeyPreviewPopupDismissDelay.setEnabled(
|
||||||
SettingsValues.isKeyPreviewPopupEnabled(prefs, res));
|
SettingsValues.isKeyPreviewPopupEnabled(prefs, res));
|
||||||
|
}
|
||||||
|
|
||||||
|
final CheckBoxPreference includeOtherImesInLanguageSwitchList =
|
||||||
|
(CheckBoxPreference)findPreference(PREF_INCLUDE_OTHER_IMES_IN_LANGUAGE_SWITCH_LIST);
|
||||||
|
includeOtherImesInLanguageSwitchList.setEnabled(
|
||||||
|
!SettingsValues.isLanguageSwitchKeySupressed(prefs));
|
||||||
|
|
||||||
final PreferenceScreen dictionaryLink =
|
final PreferenceScreen dictionaryLink =
|
||||||
(PreferenceScreen) findPreference(PREF_CONFIGURE_DICTIONARIES_KEY);
|
(PreferenceScreen) findPreference(PREF_CONFIGURE_DICTIONARIES_KEY);
|
||||||
|
@ -305,7 +308,9 @@ public class Settings extends InputMethodSettingsFragment
|
||||||
|
|
||||||
private void updateKeyPreviewPopupDelaySummary() {
|
private void updateKeyPreviewPopupDelaySummary() {
|
||||||
final ListPreference lp = mKeyPreviewPopupDismissDelay;
|
final ListPreference lp = mKeyPreviewPopupDismissDelay;
|
||||||
lp.setSummary(lp.getEntries()[lp.findIndexOfValue(lp.getValue())]);
|
final CharSequence[] entries = lp.getEntries();
|
||||||
|
if (entries == null || entries.length <= 0) return;
|
||||||
|
lp.setSummary(entries[lp.findIndexOfValue(lp.getValue())]);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateVoiceModeSummary() {
|
private void updateVoiceModeSummary() {
|
||||||
|
|
Loading…
Reference in a new issue