SQLite 썸네일형 리스트형 Kotlin으로 SQLite 활용해서 회원가입 페이지 간단하게 구현하기 지난번에 입력 이벤트까지는 구현했었는데, 이게 따로 db를 구현하지 않고 만드니까, Activity가 새로 실행될 때마다 변수가 리셋되어서 제대로 된 페이지를 만들 수가 없었다. 그래서 SQLite를 연동해서 db를 생성해보기로 했다. SQLite를 활용하기 위해서는 다음과 같이 dbHelper 클래스를 하나 만들어주어야 한다. package com.example.againimport android.annotation.SuppressLintimport android.content.ContentValuesimport android.content.Contextimport android.database.sqlite.SQLiteDatabaseimport android.database.sqlite.SQLiteOp.. 더보기 이전 1 다음