반응형 SharedPreferences1 SharedPreferences 사용법 간단한 읽고, 쓰기 //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); } } //쓰기 pub.. 2021. 11. 29. 이전 1 다음 반응형