Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to set checkbox preference value? Without the use of Editor

For example i dont to use code like that

SharedPreferences.Editor geted = prefs.edit();
geted.putBoolean("checkBox_Schedule", true);
geted.commit();

because then in order to see the changes I have to restart the activity in order to refresh the UI.

share|improve this question
use a static variable to save value – Deepak Swami Aug 9 '12 at 8:46
Please refer this link it should be very useful to you.... bogotobogo.com/Android/android16Preferences.php – Ramkumar Aug 9 '12 at 8:53
@DeepakSwami please be more specific – mkounal Aug 9 '12 at 9:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.