반응형
1. 데이터 저장하기.
private fun saveData(height: Int, weight: Int)
{
val pref = PreferenceManager.getDefaultSharedPreferences(this)
val editor = pref.edit()
editor.putInt("KEY_HEIGHT", height)
.putInt("KEY_WEIGHT", weight)
.apply()
}
2. 데이터 불러 오기.
private fun loadData() {
val pref = PreferenceManager.getDefaultSharedPreferences(this)
val height = pref.getInt("KEY_HEIGHT", 0)
val weight = pref.getInt("KEY_WEIGHT", 0)
if(height != 0 && weight != 0) {
heightEditText.setText(height.toString())
weightEditText.setText(weight.toString())
}
}
.apply()
}
반응형
'Android' 카테고리의 다른 글
액티비티 생명 주기 메서드. (0) | 2021.06.02 |
---|---|
코틀린 activity_main.xml 에서 디자인 위젯 ID(Button, TextView 등) MainActivity.kt 에서 인식 안될때 처리 방법. (0) | 2021.05.24 |
코틀린 인터페이스 (0) | 2019.07.03 |
코틀린 추상 클래스 (0) | 2019.07.03 |
Realm 데이터 베이스 사용 준비 (0) | 2019.02.15 |