-데이터 저장하는 법-
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();
'■ Android > Tip' 카테고리의 다른 글
[Android] NestedScrollView 사용법 ("이중 스크롤" 가능) (0) | 2019.10.21 |
---|---|
[Android] Toolbar(=?액션바) 없애기 (0) | 2019.10.20 |
FragmentPagerAdapter, FragmentStatePagerAdapter (0) | 2019.09.19 |
[Android] 단축키(Shortcut Key) (0) | 2019.07.21 |
Firebase에서 Database에 필드별 정렬 (0) | 2019.07.20 |