SharedPreference로 데이터 저장
SharedPreference는 데이터양이 적을 때 사용는 api로 key와 value 구조로 데이터를 저장한다.
<!-- activity_mail.xml -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<EditText
android:id="@+id/email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="enter email"
android:inputType="textEmailAddress" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="enter password"
android:inputType="textPassword" />
<CheckBox
android:id="@+id/save_check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="save email" />
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="log in" />
</LinearLayout>
// MainActivity.java
public class MainActivity extends AppCompatActivity {
private EditText emailEditText;
private CheckBox saveCheckBox;
private SharedPreferences preferences; // 정보 저장 객체
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
emailEditText = findViewById(R.id.email); // 이메일
saveCheckBox = findViewById(R.id.save_check); // 비밀번호
// preference 객체 초기화
preferences = PreferenceManager.getDefaultSharedPreferences(this);
// 저장된 이메일을 불러와 복원
Boolean isChecked = preferences.getBoolean("save", false); // key와 value형태로 저장
saveCheckBox.setChecked(isChecked);
if (isChecked)
{ // 체크된 상태라면 "email"키에 ""값 저장
String email = preferences.getString("email", "");
emailEditText.setText(email);
}
}
protected void onDestroy() {
super.onDestroy();
// SharedPreferences의 수정 가능한 객체 얻기
SharedPreferences.Editor editor = preferences.edit();
// 저장할 데이터
editor.putBoolean("save", saveCheckBox.isChecked()); // "save"키에 isChecked()값 저장
editor.putString("email", emailEditText.getText().toString());
// 저장
editor.apply();
}
}
onDestroy()는 액티비티 종료 시 호출되는 콜백 메서드 이다. 액티비티 종료시 필요한 처리 (이메일 저장) 등을 할 수 있다.
저장 체크박스를 체크하고 앱을 다시 실행하면 저장된 이메일이 표시된다.
참고: https://kkangsnote.tistory.com/29
Author And Source
이 문제에 관하여(SharedPreference로 데이터 저장), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@bluesun147/SharedPreference로-데이터-저장저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)