以下のコードでは、2 つのクラスを 1 つにマージしました。私は成功に近づいていますが、いくつかのエラーが残っています。私のプログラミング環境では、次のエラーがあると表示されます。
51 行目 - メソッド open() は SQLiteDatabase 型に対して定義されていません
56 行目 - メソッド open() は SQLiteDatabase 型に対して未定義です
行 57 - メソッド getAllEntries() は、タイプ SQLiteDatabase に対して未定義です
98 行目 - SQLiteOpenHelper 型から非静的メソッド getWritableDatabase() への静的参照を作成できません
99 行目 - Void メソッドは値を返すことができません (ここで何かを返す必要がありますか?)
102 行目 - SQLiteOpenHelper 型から非静的メソッド close() への静的参照を作成できません
それが問題だった場合に備えて、コードを再配置してみました。「型 [型] のメソッドは定義されていません」というのが何を意味するのかわかりません。Google を使用しても、これらのエラー メッセージの意味を判断できませんでした。
どんな助けでも大歓迎です。
package com.example.databaseProject;
import android.os.Bundle;
import android.app.Activity;
import android.content.*;
import android.content.DialogInterface.*;
import android.database.*;
import android.database.sqlite.*;
import android.util.*;
import android.view.*;
import android.view.View.*;
import android.widget.*;
import android.content.Context;
import android.view.View.onclickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends Activity {
private SQLiteDatabase db;
private DBHelper dbHelper;
private EditText Quote;
int id=0;
public static final String KEY_ROWID="_id";
public static final String KEY_QUOTE="Quote";
private static final String TAG="DBAdapter";
private static final String DATABASE_NAME="Random";
private static final String DATABASE_TABLE="tblRandomQuotes";
private static final int DATABASE_VERSION=1;
private static final String DATABASE_CREATE="create table tblRandomQuotes (_id integer primary key autoincrement, "+"Quote text not null );";
private Context context;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//linkingButton
Button saveButton=(Button)findViewById(R.id.button1);
//add onclick listener to saveButton
saveButton.setonclickListener(mAddListener);
dbHelper=new DBHelper(this);
}
//Create an anonymous implementation of onclickListener
private onclickListener mAddListener = new onclickListener(){
public void onclick(View v){
switch(v.getId()){
case R.id.button1:
db.open(); //line 51
long id=0;
//do something when the button is clicked
try{
Quote=(EditText)findViewById(R.id.lastName1);
db.insertQuote(Quote.getText().toString()); //line 56
id=db.getAllEntries(); //line 57
Context context=getApplicationContext();
CharSequence text="The quote '"+Quote.getText()+"' was added successfully!\nQuotes Total = "+id;
int duration=Toast.LENGTH_LONG;
Toast toast=Toast.makeText(context, text, duration);
toast.show();
Quote.setText("");
}
catch(Exception ex){
Context context=getApplicationContext();
CharSequence text=ex.toString()+"ID = "+id;
int duration=Toast.LENGTH_LONG;
Toast toast=Toast.makeText(context, text, duration);
toast.show();
}
db.close();
//break;
}
}
};
public void DBAdapter(Context ctx){//I think this might go up in the constructor
this.context=ctx;
dbHelper=new DBHelper(context);
}
private class DBHelper extends SQLiteOpenHelper{
public DBHelper(Context c){
super(c,DATABASE_NAME,null,DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db){
db.execSQL(DATABASE_CREATE);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion){
Log.w(TAG,"Upgrading database from version "+oldVersion+" to "+newVersion+", which will destroy all old data");
db.execSQL("DROP TABLE IF EXISTS tblRandomQuotes");
onCreate(db);
}
}
public void open(){
db=DBHelper.getWritableDatabase(); //line 98
return this; //line 99
}
public void close(){
DBHelper.close(); //line 102
}
public long insertQuote(String Quote){
ContentValues initialValues=new ContentValues();
initialValues.put(KEY_QUOTE,Quote);
return db.insert(DATABASE_TABLE,null,initialValues);
}
public int getAllEntries(){
Cursor cursor=db.rawQuery("SELECT COUNT(Quote) FROM tblRandomQuotes", null);
if(cursor.moveToFirst()){
return cursor.getInt(0);
}
return cursor.getInt(0);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}