Automated import from //branches/donutburger/...@140473,140473
parent
264b19a685
commit
5ff5160ff8
|
@ -21,7 +21,6 @@
|
||||||
<CheckBoxPreference
|
<CheckBoxPreference
|
||||||
android:key="vibrate_on"
|
android:key="vibrate_on"
|
||||||
android:title="@string/vibrate_on_keypress"
|
android:title="@string/vibrate_on_keypress"
|
||||||
android:defaultValue="true"
|
|
||||||
android:persistent="true"
|
android:persistent="true"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
|
@ -982,7 +982,7 @@ public class LatinIME extends InputMethodService
|
||||||
// Get the settings preferences
|
// Get the settings preferences
|
||||||
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
|
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
|
||||||
mProximityCorrection = sp.getBoolean(PREF_PROXIMITY_CORRECTION, true);
|
mProximityCorrection = sp.getBoolean(PREF_PROXIMITY_CORRECTION, true);
|
||||||
mVibrateOn = sp.getBoolean(PREF_VIBRATE_ON, true);
|
mVibrateOn = sp.getBoolean(PREF_VIBRATE_ON, false);
|
||||||
mSoundOn = sp.getBoolean(PREF_SOUND_ON, false);
|
mSoundOn = sp.getBoolean(PREF_SOUND_ON, false);
|
||||||
String predictionBasic = getString(R.string.prediction_basic);
|
String predictionBasic = getString(R.string.prediction_basic);
|
||||||
String mode = sp.getString(PREF_PREDICTION, predictionBasic);
|
String mode = sp.getString(PREF_PREDICTION, predictionBasic);
|
||||||
|
|
Loading…
Reference in New Issue