1
值這裏是我把值碼:sharedpreferences不會記得在安卓
if(soundima == 1){
soundima=0;
editor.putInt("sOn", soundima);
editor.commit();
}
else if(soundima == 0){
soundima=1;
editor.putInt("sOn", soundima);
editor.commit();
}
於是,當我退出程序,值不記得。我得到這個代碼的值:
editor = PreferenceManager.getDefaultSharedPreferences(this);
soundima = editor.getInt("sOn", 0);
你確定你的代碼去進入你的'if-else'語句的好處? –
是的,絕對可以.. – user3330053
你能告訴我們如何創建'編輯器'對象嗎? –