am babc71ee: Merge "[AD1] Add an option to read an arbitrary dictionary."
* commit 'babc71ee30e1e119dff3a2272a0de3aa793ecda6': [AD1] Add an option to read an arbitrary dictionary.main
commit
a8abd4df97
|
@ -375,6 +375,8 @@
|
||||||
<string name="prefs_keypress_vibration_duration_settings">Keypress vibration duration settings</string>
|
<string name="prefs_keypress_vibration_duration_settings">Keypress vibration duration settings</string>
|
||||||
<!-- Title of the settings for keypress sound volume -->
|
<!-- Title of the settings for keypress sound volume -->
|
||||||
<string name="prefs_keypress_sound_volume_settings">Keypress sound volume settings</string>
|
<string name="prefs_keypress_sound_volume_settings">Keypress sound volume settings</string>
|
||||||
|
<!-- Title of the settings for reading an external dictionary file -->
|
||||||
|
<string name="prefs_read_external_dictionary">Read external dictionary file</string>
|
||||||
|
|
||||||
<!-- Title of the button to revert to the default value of the device in the settings dialog [CHAR LIMIT=15] -->
|
<!-- Title of the button to revert to the default value of the device in the settings dialog [CHAR LIMIT=15] -->
|
||||||
<string name="button_default">Default</string>
|
<string name="button_default">Default</string>
|
||||||
|
|
|
@ -23,8 +23,7 @@
|
||||||
android:title="@string/prefs_enable_log"
|
android:title="@string/prefs_enable_log"
|
||||||
android:summary="@string/prefs_description_log"
|
android:summary="@string/prefs_description_log"
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:defaultValue="false"
|
android:defaultValue="false" />
|
||||||
/>
|
|
||||||
|
|
||||||
<ListPreference
|
<ListPreference
|
||||||
android:key="pref_keyboard_layout_20110916"
|
android:key="pref_keyboard_layout_20110916"
|
||||||
|
@ -32,26 +31,27 @@
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:entryValues="@array/keyboard_layout_modes_values"
|
android:entryValues="@array/keyboard_layout_modes_values"
|
||||||
android:entries="@array/keyboard_layout_modes"
|
android:entries="@array/keyboard_layout_modes"
|
||||||
android:defaultValue="@string/config_default_keyboard_theme_index"
|
android:defaultValue="@string/config_default_keyboard_theme_index" />
|
||||||
/>
|
|
||||||
|
|
||||||
<CheckBoxPreference
|
<CheckBoxPreference
|
||||||
android:key="debug_mode"
|
android:key="debug_mode"
|
||||||
android:title="@string/prefs_debug_mode"
|
android:title="@string/prefs_debug_mode"
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:defaultValue="false"
|
android:defaultValue="false" />
|
||||||
/>
|
|
||||||
|
|
||||||
<CheckBoxPreference
|
<CheckBoxPreference
|
||||||
android:key="force_non_distinct_multitouch"
|
android:key="force_non_distinct_multitouch"
|
||||||
android:title="@string/prefs_force_non_distinct_multitouch"
|
android:title="@string/prefs_force_non_distinct_multitouch"
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:defaultValue="false"
|
android:defaultValue="false" />
|
||||||
/>
|
|
||||||
|
|
||||||
<CheckBoxPreference
|
<CheckBoxPreference
|
||||||
android:key="usability_study_mode"
|
android:key="usability_study_mode"
|
||||||
android:title="@string/prefs_usability_study_mode"
|
android:title="@string/prefs_usability_study_mode"
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
android:defaultValue="false" />
|
android:defaultValue="false" />
|
||||||
|
|
||||||
|
<PreferenceScreen
|
||||||
|
android:key="read_external_dictionary"
|
||||||
|
android:title="@string/prefs_read_external_dictionary" />
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
||||||
|
|
|
@ -25,6 +25,7 @@ import android.os.Process;
|
||||||
import android.preference.CheckBoxPreference;
|
import android.preference.CheckBoxPreference;
|
||||||
import android.preference.Preference;
|
import android.preference.Preference;
|
||||||
import android.preference.PreferenceFragment;
|
import android.preference.PreferenceFragment;
|
||||||
|
import android.preference.PreferenceScreen;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import com.android.inputmethod.keyboard.KeyboardSwitcher;
|
import com.android.inputmethod.keyboard.KeyboardSwitcher;
|
||||||
|
@ -38,6 +39,7 @@ public final class DebugSettings extends PreferenceFragment
|
||||||
public static final String PREF_FORCE_NON_DISTINCT_MULTITOUCH = "force_non_distinct_multitouch";
|
public static final String PREF_FORCE_NON_DISTINCT_MULTITOUCH = "force_non_distinct_multitouch";
|
||||||
public static final String PREF_USABILITY_STUDY_MODE = "usability_study_mode";
|
public static final String PREF_USABILITY_STUDY_MODE = "usability_study_mode";
|
||||||
public static final String PREF_STATISTICS_LOGGING = "enable_logging";
|
public static final String PREF_STATISTICS_LOGGING = "enable_logging";
|
||||||
|
private static final String PREF_READ_EXTERNAL_DICTIONARY = "read_external_dictionary";
|
||||||
private static final boolean SHOW_STATISTICS_LOGGING = false;
|
private static final boolean SHOW_STATISTICS_LOGGING = false;
|
||||||
|
|
||||||
private boolean mServiceNeedsRestart = false;
|
private boolean mServiceNeedsRestart = false;
|
||||||
|
@ -66,6 +68,19 @@ public final class DebugSettings extends PreferenceFragment
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PreferenceScreen readExternalDictionary =
|
||||||
|
(PreferenceScreen) findPreference(PREF_READ_EXTERNAL_DICTIONARY);
|
||||||
|
if (null != readExternalDictionary) {
|
||||||
|
readExternalDictionary.setOnPreferenceClickListener(
|
||||||
|
new Preference.OnPreferenceClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onPreferenceClick(final Preference arg0) {
|
||||||
|
// TODO: actually read the dictionary
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
mServiceNeedsRestart = false;
|
mServiceNeedsRestart = false;
|
||||||
mDebugMode = (CheckBoxPreference) findPreference(PREF_DEBUG_MODE);
|
mDebugMode = (CheckBoxPreference) findPreference(PREF_DEBUG_MODE);
|
||||||
updateDebugMode();
|
updateDebugMode();
|
||||||
|
|
Loading…
Reference in New Issue