티스토리 뷰
package com.example.nmg.pref;
import android.content.Context;
import android.content.SharedPreferences;
public class PreferenceUtil {
public static final String PREFERENCE_NAME = "wantName";
private static PreferenceUtil preferencemodule = null;
private static Context mContext;
private static SharedPreferences prefs;
private static SharedPreferences.Editor editor;
public static PreferenceUtil getInstance(Context context) {
mContext = context;
if (preferencemodule == null) {
preferencemodule = new PreferenceUtil();
}
if(prefs==null){
prefs = mContext.getSharedPreferences(PREFERENCE_NAME, Context.MODE_PRIVATE);
editor = prefs.edit();
}
return preferencemodule;
}
private int save(String key, int value) {editor.putInt(key, value);
editor.commit();
return value;
}
private String save(String key, String value) {
editor.putString(key, value);
editor.commit();
return value;
}
private long save(String key, long value) {
editor.putLong(key, value);
editor.commit();
return value;
}
private boolean save(String key, boolean value) {
editor.putBoolean(key, value);
editor.commit();
return value;
}
public String getId() { return prefs.getString("wantKey","default value"); }
public String setId(String 변수명) { return save("wantKey", 변수명); }
}
이렇게 하고
갖다 쓸땐
PreferenceUtil.getInstance(mContext).setId(editText.getText().toString());
String a = PreferenceUtil.getInstance(mContext).getId();
하면 깔끔하게 사용 가능
'android' 카테고리의 다른 글
안드로이드 앱 두번 눌러 종료하기 (0) | 2018.12.12 |
---|---|
안드로이드 브로드캐스트 사용하기. (0) | 2018.12.12 |
안드로이드 오레오 노티 뱃지 기능 (0) | 2018.11.02 |
노티 클릭 시 펜딩인텐트를 걸어서 백스택 만들기 (0) | 2018.10.02 |
드래그 해서 뷰 크기 조절하기 (0) | 2018.09.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- ubunut android
- Android
- text 부분 색 칠하기
- ubunut 설치 link
- 클래스형 코드
- 차번호 정규식
- 데이터베이스
- 구글 맵 경로 그리기
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- 함수형 코드
- 귀찮아;;
- not found adb
- rn
- 안드로이드
- react native state
- 차번호 정규표현식
- 자바
- MongoDB
- mac android
- https://hwan-shell.tistory.com/244
- not working adb
- insert
- spannableText
- not starting .bash_profile
- nosql
- 명령어
- 구글 맵 선그리기
- adb 환경변수
- mongo db
- React Native
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함