SharedPreferences Clear/Save

后端 未结 5 736
醉梦人生
醉梦人生 2020-12-09 02:57

Iam trying to make a checker and I want to save a value into SharedPreferences. But i\'am not sure if it works

This what I do to save the value is : *

5条回答
  •  情话喂你
    2020-12-09 03:10

    To clear SharedPreferences use this

    SharedPreferences preferences = getSharedPreferences("PREFERENCE", Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = preferences.edit();
    editor.clear(); 
    editor.commit();
    

    Hope this helped you.

提交回复
热议问题