반응형
간단한 읽고, 쓰기
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 | //load private SharedPreferences appData; protected void onCreate(Bundle savedInstanceState) { appData = getSharedPreferences( "map" , MODE_PRIVATE); } //읽기 public void btnReadClick(View view) { String value = appData.getString( "walkthrough" , "" ); //""인 기본 값 if (value.equals( "" )) { intent = new Intent(getApplicationContext(), OnBoardingActivity. class ); startActivity(intent); } } //쓰기 public void btnWriteClick(View view) { SharedPreferences.Editor editor = appData.edit(); editor.putString( "walkthrough" , "test" ); editor.apply(); Toast.makeText( this , "설정값 초기화" , Toast.LENGTH_SHORT).show(); } |
getString이외에 getInt, getBoolean도 있음.
반응형
'Android' 카테고리의 다른 글
android floating Action bar & Bottom Navigation View(2) (3) | 2022.07.22 |
---|---|
android floating Action bar & Bottom Navigation View(1) (1) | 2022.07.16 |
LinearLayout (6) | 2021.11.29 |
WebView로 cookie 데이터 저장 (0) | 2021.08.09 |
[error] java.net.ConnectException: Failed to connect to /192.168.18.13:44354 (246) | 2021.08.06 |
댓글