자바 15

[SQLite] DB Browser for SQLite 사용방법

개요 이전 포스팅을 GUI로 간단하게 확인하고 관리해보자. 오늘의 주제 DB Browser 를 이용하여 데이터 입출력, 질의, 삭제까지 해보자. 진행 과정 1. DB Browser for SQLite를 다운받기. https://sqlitebrowser.org/ DB Browser for SQLite DB Browser for SQLite The Official home of the DB Browser for SQLite Screenshot What it is DB Browser for SQLite (DB4S) is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite...

Backend/SQLite 2019.12.13

[SQLite] DB 입력, 조회 및 초기화 (예제)

개요 멀티메모 할일기능, 스와이프 제거 기능들을 추가하려다 보니 기존의 DB와 병합이 어려워서 다시 공부하고자 한다. 오늘의 주제 가수 그룹의 이름과 인원을 데이터베이스에 입력하고 조회하는 응용 프로그램을 작성해보자. 진행 과정 1. 레이아웃 짜주기 activity_main.xml 2. MainActivity.java 짜주기 과정은 주석으로 짜놓았다. package com.example.a1_dbbasic; import androidx.appcompat.app.AppCompatActivity; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import a..

Backend/SQLite 2019.12.13

[Android Sutdio를 활용한 안드로이드 프로그래밍 개정 5판] 연습문제 9장 6번

문제 [직접풀어보기 9-2] 를 이전에 그린 도형이 계속 화면에 남아있도록 수정하시오. 결과 화면 XML 코드 얘는 별도의 xml코드가 없다. JAVA 코드 package com.example.homework5; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Rect; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.MotionEvent; import a..

[멀티메모] 3일차

최종 목표 음성녹음 버그 수정 TODO 기능 추가하기 (푸시 알림 기능도 구현해보도록 하자) 메모 리스트 좌우로 슬라이드 하면 삭제 되도록 하기 오늘의 목표 todo 기능을 메모와 다른 테이블에서 구현해보기 '할일' 만 적혀있는 리스트뷰를 만들것이므로 여기서 스와이프 삭제 기능 구현해보기 참고 1. SwipeMenuListView https://blog.naver.com/dgkim1007/221177623532 https://github.com/baoyongzhang/SwipeMenuListView Listview item에 SwipeMenuListView 설정하기 ◈ Android ListView 의 리스트 item을 좌로 슬라이딩 했을때 삭제 버턴 나타나게 하기 1 라이버러리 추... blog.nav..

[멀티메모] 1일차

졸작으로 했었던 멀티메모장의 확장 최종 목표 음성녹음 버그 수정 TODO 기능 추가하기 (푸시 알림 기능도 구현해보도록 하자) 메모 리스트 좌우로 슬라이드 하면 삭제 되도록 하기 참고 https://stackoverflow.com/questions/59042370/voice-recording-function-in-android-studio?noredirect=1#comment104327873_59042370 voice recording function in android studio im trying to make voice recording function. but this bug is really hard. first, error line is this at org.androidtown.multime..