본문 바로가기

전체 글

(51)
SQLite3 데이터베이스 활용 ● SQLite3란? : 경량 데이터베이스로 휴대폰에 있는 데이터베이스이다. ▶ SQLite3 데이터베이스를 이용하기 위해선 SQLiteOpenHelper 클래스를 상속받아야한다. public class DatabaseHandler extends SQLiteOpenHelper { public DatabaseHandler(@Nullable Context context, @Nullable String name, @Nullable SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); } @Override public void onCreate(SQLiteDatabase sqLiteDatabase) {..
RecyclerView에서 이미지 클릭하면 삭제 관련 AlertDialog뜨게 하기 ◎ callbook 예제 코드수정 ○ 2023.07.12 - [모바일 프로그래밍(Android Studio)] - RecyclerView에서 하나의 행을 삭제하기 package com.example.callbook.adapter; import android.app.Activity; import android.content.Context; import android.content.DialogInterface; import android.util.Log; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx...
RecyclerView에서 하나의 행을 삭제하기 ◎ 예시) package com.example.callbook.model; public class Call { public String name; public String phone; } package com.example.callbook.adapter; import android.content.Context; import android.content.DialogInterface; import android.util.Log; import android.view.View; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.appcompat.app.A..