-데이터 저장하는 법-

SharedPreferences sharepref = getSharedPreferences("저장할 파일 이름만", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharepref.edit();
editor.clear();  //한번 싹
editor.putString("email", email);  //적을거
editor.commit();   //반영

 

 

-데이터 읽어오는 법-

-월래-

SharedPreferences sharepref = getSharedPreferences("저장할 파일 이름만", Context.MODE_PRIVATE);

String email = sharepref.getString("email", null);

-사용할려는데 Activity가 아니라면-

SharedPreferences sharepref = this.getActivity().getSharedPreferences("저장할 파일 이름만", Context.MODE_PRIVATE);

String email = sharepref.getString("email", null);

 

 

-특정 키값 삭제하는 법-

SharedPreferences sharepref = getSharedPreferences("저장할 파일 이름만", Context.MODE_PRIVATE);

SharedPreferences.Editor editor =sharepref.edit();

editor.remove("email");

editor.commit();

 

 

-SharedPreferences 그냥 안에 있는 데이터 한번 싹 삭제하는 법-

SharedPreferences sharepref = getSharedPreferences("저장할 파일 이름만", Context.MODE_PRIVATE);

SharedPreferences.Editor editor =sharepref.edit();

editor.clear();

editor.commit();