Automated import from //branches/donutburger/...@140473,140473

main
Amith Yamasani 2009-03-24 17:43:19 -07:00 committed by The Android Open Source Project
parent 264b19a685
commit 5ff5160ff8
2 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@
<CheckBoxPreference
android:key="vibrate_on"
android:title="@string/vibrate_on_keypress"
android:defaultValue="true"
android:persistent="true"
/>

View File

@ -982,7 +982,7 @@ public class LatinIME extends InputMethodService
// Get the settings preferences
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
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);
String predictionBasic = getString(R.string.prediction_basic);
String mode = sp.getString(PREF_PREDICTION, predictionBasic);