강좌 내용대로 SimpleCursorAdapter 사용하려 했으나 실패 하였다.
그래서 ArrayAdapter 사용하였다.
에러
//인덱스 값 _id 는 커서 업뎁터 사용시 필수 항목이다.
startManagingCursor(cursor);
String[] columns=new String[]{ "name", "age", "mobile"};
int[] to=new int[] {R.id.name, R.id.age, R.id.mobile};
// import android.support.v4.widget.SimpleCursorAdapter;
final SimpleCursorAdapter
cursorAdapter=
new SimpleCursorAdapter(this, R.layout.customer_item,
cursor, columns, to,1);
runOnUiThread(new Runnable() {
@Override
public void run() {
listView.setAdapter(cursorAdapter);
cursorAdapter.notifyDataSetChanged();
}
});
현재 블르그에서 핵심부분
화면 처리 부분 - 커스텀 아답터(내부 클래스)
//커스텀 아답터(내부 클래스)
class MyAdapter extends ArrayAdapter<Member> {
public MyAdapter(Context context, int resource) {
super(context, resource);
}
public MyAdapter(Context context, int resource, int textViewResourceId) {
super(context, resource, textViewResourceId);
}
public MyAdapter(Context context, int resource, List<Member> objects) {
super(context, resource, objects);
}
@NonNull
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v =convertView;
TextView name, age, mobile;
if(v==null){
LayoutInflater li =getLayoutInflater();
v=li.inflate(R.layout.customer_item, null);
}
final Member dto =members.get(position);
name =(TextView)v.findViewById(R.id.name);
age =(TextView)v.findViewById(R.id.age);
mobile =(TextView)v.findViewById(R.id.mobile);
name.setText(dto.getName());
age.setText(String.valueOf(dto.getAge()));
mobile.setText(dto.getMobile());
return v;
}
}
데이터베이스 생성 부분
case R.id.button1:
databaseName=editText1.getText().toString();
try {
/* //데이터 베이스가 없으면 생성 또는 존재하면 오픈
database =openOrCreateDatabase(databaseName, Context.MODE_PRIVATE, null);*/
//databaseHelper= new CustomerDatabaseHelper(getApplicationContext(), databaseName, null, 1);
//버전 2로 업그레이드 할 경우
databaseHelper= new CustomerDatabaseHelper(getApplicationContext(), databaseName, null, 2);
database=databaseHelper.getWritableDatabase();
println("데이터베이스를 열었습니다. : " + databaseName);
}catch (Exception e){
e.printStackTrace();
}
break;
SQLiteOpenHelper
class CustomerDatabaseHelper extends SQLiteOpenHelper {
public CustomerDatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) {
super(context, name, factory, version);
}
@Override
public void onOpen(SQLiteDatabase db) {
super.onOpen(db);
String str="Helper 의 onOpen() 호출됨";
toastShow(str);
println(str);
}
@Override
public void onCreate(SQLiteDatabase db) {
// 처음인 경우 onCreate 생성
String str="Helper 의 onCreate() 호출됨";
toastShow(str);
println(str);
createTable(db);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// 처음인 경우 onCreate 생성
String str="Helper 의 onUpgrade() 호출됨"+oldVersion +" -> " + newVersion;
toastShow(str);
println(str);
//기존에 테이블이 존재하는 경우 업그레이드 된 테이블을 생성 시킴
changeTable(db);
}
}
public void createTable(SQLiteDatabase db){
tableName=editText2.getText().toString();
try {
if(db!=null){
// 내부에서 기본적으로 사용하는 경우 인덱스 밑줄
// if not exists 테이블이 존재하면 생성 하지 않는다.
db.execSQL("CREATE TABLE if not exists " + tableName + " ( " +
" _id integer PRIMARY KEY AUTOINCREMENT , " +
" name text, " +
" age integer," +
" mobile text " +
" ) ");
}
println("테이블을 생성하였습니다. "+ tableName);
}catch (Exception e){
println("데이터베이스를 먼저 열어야 합니다.");
e.printStackTrace();
}
}
public void changeTable(SQLiteDatabase db){
try{
if(db!=null){
String sql =" CREATE TABLE if not exists " + "PRODUCT" + " (" +
" _id integer PRIMARY key AUTOINCREMENT , " +
" name text, " +
" price integer" +
" )";
db.execSQL(sql);
}
println("테이블을 생성하였습니다. "+ "PRODUCT");
}catch (Exception e){
println("데이터베이스를 먼저 열어야 합니다.");
e.printStackTrace();
}
}
데이터 삽입하기
//데이터 삽입하기
case R.id.button3:
try{
if(tableName==null){
tableName=editText2.getText().toString();
}
if(database!=null){
String sql =String.format(
"insert into "+tableName + " ( name, age, mobile )" +
" values ( '%s', %d, '%s' )", "홍길동", 33, "01038141136");
database.execSQL(sql);
}
println("데이터가 삽입 되었습니다.");
}catch (Exception e){
println("데이터베이스를 먼저 열어여 합니다.");
e.printStackTrace();
}
break;
종합
class MainActivity
package kr.co.braverokmc.database;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
EditText editText1, editText2;
TextView textView;
ListView listView;
String databaseName, tableName;
Toast toast;
SQLiteDatabase database;
CustomerDatabaseHelper databaseHelper;
List<Member> members =new ArrayList<>();
AdapterCursor adapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText1=(EditText)findViewById(R.id.editText1);
editText2=(EditText)findViewById(R.id.editText2);
textView=(TextView)findViewById(R.id.text1);
listView=(ListView)findViewById(R.id.list_view);
}
public void onClick(View v){
switch (v.getId()){
case R.id.button1:
databaseName=editText1.getText().toString();
try {
/* //데이터 베이스가 없으면 생성 또는 존재하면 오픈
database =openOrCreateDatabase(databaseName, Context.MODE_PRIVATE, null);*/
//databaseHelper= new CustomerDatabaseHelper(getApplicationContext(), databaseName, null, 1);
//버전 2로 업그레이드 할 경우
databaseHelper= new CustomerDatabaseHelper(getApplicationContext(), databaseName, null, 2);
database=databaseHelper.getWritableDatabase();
println("데이터베이스를 열었습니다. : " + databaseName);
}catch (Exception e){
e.printStackTrace();
}
break;
case R.id.button2:
// createTable();
break;
//데이터 삽입하기
case R.id.button3:
try{
if(tableName==null){
tableName=editText2.getText().toString();
}
if(database!=null){
String sql =String.format(
"insert into "+tableName + " ( name, age, mobile )" +
" values ( '%s', %d, '%s' )", "홍길동", 33, "01038141136");
database.execSQL(sql);
}
println("데이터가 삽입 되었습니다.");
}catch (Exception e){
println("데이터베이스를 먼저 열어여 합니다.");
e.printStackTrace();
}
break;
//데이터 조회하기
case R.id.button4:
try{
if(tableName==null){
tableName=editText2.getText().toString();
}
if(database!=null){
String sql ="select _id , name, age, mobile from " +tableName ;
Cursor cursor =database.rawQuery(sql, null);
//인덱스 값 _id 는 커서 업뎁터 사용시 필수 항목이다.
/* startManagingCursor(cursor);
String[] columns=new String[]{ "name", "age", "mobile"};
int[] to=new int[] {R.id.name, R.id.age, R.id.mobile};
// import android.support.v4.widget.SimpleCursorAdapter;
final SimpleCursorAdapter
cursorAdapter=
new SimpleCursorAdapter(this, R.layout.customer_item,
cursor, columns, to,1);
runOnUiThread(new Runnable() {
@Override
public void run() {
listView.setAdapter(cursorAdapter);
cursorAdapter.notifyDataSetChanged();
}
});
*/
/*
LayoutInflater inflater =(LayoutInflater)this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View inflat = inflater.inflate(R.layout.customer_item, null, true);*/
/*
http://braverokmc.dothome.co.kr/m02/android/view/292
simple Aadpter 에러
수정할 것
*/
/*
에러
String[] columns=new String[]{ "name", "age", "mobile"};
int[] to=new int[] {R.id.name, R.id.age, R.id.mobile};
AdapterCursor adapter = new AdapterCursor(this, R.layout.customer_item, cursor ,columns, to);
listView.setAdapter(adapter);
*/
int count =cursor.getCount();
for(int i=0; i<count; i++){
cursor.moveToNext();
int id=cursor.getInt(0);
String name =cursor.getString(1);
int age =cursor.getInt(2);
String mobile =cursor.getString(3);
Member member=new Member(id, name, age, mobile);
members.add(member);
println("레코드 # "+ id+" : " + name + " ," + age + " ," + mobile);
}
MyAdapter adapter =new MyAdapter(getApplicationContext(), R.layout.customer_item, members);
listView.setAdapter(adapter);
if(cursor!=null) cursor.close();
}
}catch(Exception e){
println("데이터베이스를 먼저 열어여 합니다.");
e.printStackTrace();
}
break;
}
}
//커스텀 아답터(내부 클래스)
class MyAdapter extends ArrayAdapter<Member> {
public MyAdapter(Context context, int resource) {
super(context, resource);
}
public MyAdapter(Context context, int resource, int textViewResourceId) {
super(context, resource, textViewResourceId);
}
public MyAdapter(Context context, int resource, List<Member> objects) {
super(context, resource, objects);
}
@NonNull
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v =convertView;
TextView name, age, mobile;
if(v==null){
LayoutInflater li =getLayoutInflater();
v=li.inflate(R.layout.customer_item, null);
}
final Member dto =members.get(position);
name =(TextView)v.findViewById(R.id.name);
age =(TextView)v.findViewById(R.id.age);
mobile =(TextView)v.findViewById(R.id.mobile);
name.setText(dto.getName());
age.setText(String.valueOf(dto.getAge()));
mobile.setText(dto.getMobile());
return v;
}
}
private void println(String data){
textView.append(data +"\n");
}
/* SQLiteDatabase db;
// Context.MODE_PRIVATE : 단독 사용 모드
public SQLiteDatabase dbConn(){
//데이터베이스를 오픈하거나 생성
db=this.openOrCreateDatabase("product.db", Context.MODE_PRIVATE, null);
//테이블이 존재하지 않으면 create
// 자동증가컬럼은 자료형을 integer 로 하고 primary key 로 설정
Log.v("메시지", "dbConn() start");
try{
String sql ="CREATE TABLE if not exists " + tableName + " ( " +
" _id integer PRIMARY KEY AUTOINCREMENT , " +
" name text, " +
" age integer," +
" mobile text " +
" ) ";
db.execSQL(sql); // select 이외의 쿼리
}catch (Exception e){
e.printStackTrace();
Log.v("메시지", "dbConn() execSQL : " + e.getMessage());
}
return db;
}
public void list(){
List<Customer> items =new ArrayList<>();
SQLiteDatabase db =null;
Cursor cursor =null; //결과셋, 레코드셋
try{
db =dbConn();
// select * from product 로 * 를 쓰지말고 컬럼이름을 나열 해야 한다.
// 왜냐 하면 cursor.getInt(0); 컬럼 이름은 사용할 수 없음 때문이다.
String sql ="select name, age, mobile from " +tableName ;
// select 쿼리를 실행하여 결과셋을 커서에 리턴함
// execSQL() - select 이외의 쿼리
// rawQuery() - select 쿼리 전용
// rawQuery(sql , null) - null 자리에 조건 검색 을 쓰면 된다.
// 그러나 쿼리에 조건절을 써도 된다.
cursor =db.rawQuery(sql, null);
//커서.moveToNext() 다음 레코드가 존재하면 true 리턴
while(cursor.moveToNext()){
//커서.get자료형(컬럼의 인텍스) 0 부터, 컬럼 이름은 사용할 수 없음
String name =cursor.getString(0);
int age =cursor.getInt(1);
String mobile =cursor.getString(2);
println("레코드 # : " + name + " ," + age + " ," + mobile);
// items.add(new ProductDTO(id, product_name, price, amount));
}
}catch (Exception e){
e.printStackTrace();
}finally {
if(cursor!=null) cursor.close();
if(db !=null)db.close();
}
}
*/
class CustomerDatabaseHelper extends SQLiteOpenHelper {
public CustomerDatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) {
super(context, name, factory, version);
}
@Override
public void onOpen(SQLiteDatabase db) {
super.onOpen(db);
String str="Helper 의 onOpen() 호출됨";
toastShow(str);
println(str);
}
@Override
public void onCreate(SQLiteDatabase db) {
// 처음인 경우 onCreate 생성
String str="Helper 의 onCreate() 호출됨";
toastShow(str);
println(str);
createTable(db);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
// 처음인 경우 onCreate 생성
String str="Helper 의 onUpgrade() 호출됨"+oldVersion +" -> " + newVersion;
toastShow(str);
println(str);
//기존에 테이블이 존재하는 경우 업그레이드 된 테이블을 생성 시킴
changeTable(db);
}
}
public void createTable(SQLiteDatabase db){
tableName=editText2.getText().toString();
try {
if(db!=null){
// 내부에서 기본적으로 사용하는 경우 인덱스 밑줄
// if not exists 테이블이 존재하면 생성 하지 않는다.
db.execSQL("CREATE TABLE if not exists " + tableName + " ( " +
" _id integer PRIMARY KEY AUTOINCREMENT , " +
" name text, " +
" age integer," +
" mobile text " +
" ) ");
}
println("테이블을 생성하였습니다. "+ tableName);
}catch (Exception e){
println("데이터베이스를 먼저 열어야 합니다.");
e.printStackTrace();
}
}
public void changeTable(SQLiteDatabase db){
try{
if(db!=null){
String sql =" CREATE TABLE if not exists " + "PRODUCT" + " (" +
" _id integer PRIMARY key AUTOINCREMENT , " +
" name text, " +
" price integer" +
" )";
db.execSQL(sql);
}
println("테이블을 생성하였습니다. "+ "PRODUCT");
}catch (Exception e){
println("데이터베이스를 먼저 열어야 합니다.");
e.printStackTrace();
}
}
public void toastShow(String str ){
if(toast==null){
toast=Toast.makeText(getApplicationContext(), str, Toast.LENGTH_SHORT);
}else{
toast.setText(str);
}
toast.show();
}
}
R.layout.activity_main
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:layout_width="0dp"
android:layout_height="match_parent"
android:inputType="textPersonName"
android:layout_weight="3"
android:ems="10"
android:id="@+id/editText1"
android:onClick="onClick"
android:text="customer.db" />
<Button
android:text="1.데이터베이스 열기"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:id="@+id/button1"
android:onClick="onClick"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:layout_width="0dp"
android:layout_height="match_parent"
android:inputType="textPersonName"
android:layout_weight="3"
android:ems="10"
android:id="@+id/editText2"
android:onClick="onClick"
android:text="customer" />
<Button
android:text="2. 테이블 만들기"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:id="@+id/button2"
android:onClick="onClick"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:text="3. 데이터 추가하기"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/button3"
android:onClick="onClick"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:text="4. 데이터 조회하기"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/button4"
android:onClick="onClick"
/>
</LinearLayout>
<ScrollView
android:layout_width="match_parent"
android:layout_height="160dp"
android:id="@+id/scrollView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true"
android:layout_below="@+id/button"
android:background="#ecaf34"
>
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/text1"
/>
</ScrollView>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/list_view"
android:background="?attr/colorControlHighlight">
</ListView>
</LinearLayout>
customer_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/name"
android:textSize="30sp"
android:textColor="@android:color/holo_blue_dark" />
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/age"
android:textSize="30sp"
android:textColor="@android:color/holo_green_light" />
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/mobile"
android:textSize="30sp"
android:textColor="@android:color/holo_orange_dark" />
</LinearLayout>
class Member
package kr.co.braverokmc.database;
import java.io.Serializable;
/**
* Created by choi on 2017-04-17.
*/
public class Member implements Serializable {
private int id;
private String name;
private int age;
private String mobile;
public Member(int id, String name, int age, String mobile) {
this.id = id;
this.name = name;
this.age = age;
this.mobile = mobile;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
@Override
public String toString() {
return "Member{" +
"id=" + id +
", name='" + name + '\'' +
", age=" + age +
", mobile='" + mobile + '\'' +
'}';
}
}
109강
110강
댓글 ( 4)
댓글 남기기