我已經在我的首選項頁面實現了一個OnPreferenceChangeListener
兩個優先對象(擴展PreferenceActivity
)
但自從喜好值不更新後的變化,偏好值不會改變 - Android電子
SharedPreferences sharedPreferences = getSharedPreferences("myCustomSharedPrefs",
Activity.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putInt(preference.getKey(), Integer.parseInt(newValue.toString()));
editor.commit();
哪裏preference
是變化的偏好和newValue
是新的價值...
我缺少什麼:
我甚至嘗試使用?
感謝
好的,趕上...謝謝! – SagiLow 2013-04-05 16:10:46