データベースからの情報の表示に問題があります。EditTextフィールドからいくつかのテキストを読み取り、それらを別のアクティビティに表示する必要があります。列名としてid、name、email、phone、addressがあります。しかし、行の挿入でエラーが発生しました。申し訳ありませんが、長い投稿です。私のコードは次のとおりです。
すべての情報を挿入および取得するためのコード
public class InformationDataSource {
// Database fields
private SQLiteDatabase database;
private MySQLiteHelper dbHelper;
private String[] allColumns = { MySQLiteHelper.COLUMN_ID,
MySQLiteHelper.COLUMN_NAME, MySQLiteHelper.COLUMN_EMAIL, MySQLiteHelper.COLUMN_PHONE, MySQLiteHelper.COLUMN_ADDRESS};
public InformationDataSource(Context context) {
dbHelper = new MySQLiteHelper(context);
}
public void open() throws SQLException {
database = dbHelper.getWritableDatabase();
}
public void close() {
dbHelper.close();
}
public Info createInfo(String name,String email,String phone,String address) {
ContentValues values = new ContentValues();
values.put(MySQLiteHelper.COLUMN_NAME, name);
values.put(MySQLiteHelper.COLUMN_EMAIL, email);
values.put(MySQLiteHelper.COLUMN_PHONE, phone);
values.put(MySQLiteHelper.COLUMN_ADDRESS, address);
long insertId = database.insert(MySQLiteHelper.TABLE_NAME, null,
values);
Cursor cursor = database.query(MySQLiteHelper.TABLE_NAME,
allColumns, MySQLiteHelper.COLUMN_ID + " = " + insertId, null,
null, null, null);
cursor.moveToFirst();
Info newInfo = cursorToInfo(cursor);
cursor.close();
return newInfo;
}
public List<Info> getAllInfos() {
List<Info> Infos = new ArrayList<Info>();
Cursor cursor = database.query(MySQLiteHelper.TABLE_NAME,
allColumns, null, null, null, null, null);
cursor.moveToFirst();
while (!cursor.isAfterLast()) {
Info Info = cursorToInfo(cursor);
Infos.add(Info);
cursor.moveToNext();
}
// Make sure to close the cursor
cursor.close();
return Infos;
}
private Info cursorToInfo(Cursor cursor) {
Info Info = new Info();
Info.setId(cursor.getLong(0));
Info.setName(cursor.getString(1));
Info.setEmail(cursor.getString(2));
Info.setPhone(cursor.getString(3));
Info.setAddress(cursor.getString(4));
return Info;
}
}
MainActivityクラス。ここでEditTextフィールドから文字列を取得します。
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button next = (Button) findViewById(R.id.add);
EditText nametext = (EditText) this.findViewById(R.id.NameText);
final String nt = nametext.getText().toString();
EditText emailtext = (EditText) this.findViewById(R.id.MailText);
final String et = emailtext.getText().toString();
EditText phonetext = (EditText) this.findViewById(R.id.PhoneText);
final String pt = phonetext.getText().toString();
EditText addresstext = (EditText) this.findViewById(R.id.AddressText);
final String at = addresstext.getText().toString();
next.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Bundle bundle = new Bundle();
bundle.putString("NT",nt);
Bundle bundle2 = new Bundle();
bundle2.putString("MT",et);
Bundle bundle3 = new Bundle();
bundle3.putString("PT",pt);
Bundle bundle4 = new Bundle();
bundle4.putString("AT",at);
Intent myIntent = new Intent(view.getContext(), Activity2.class);
myIntent.putExtras(bundle);
myIntent.putExtras(bundle2);
myIntent.putExtras(bundle3);
myIntent.putExtras(bundle4);
startActivityForResult(myIntent, 0);
}
});
}
}
これは私の他の活動です。MainActivityの文字列を使用します。
public class Activity2 extends ListActivity {
private InformationDataSource datasource;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
Bundle bundle = this.getIntent().getExtras();
String nt = bundle.getString("NT");
Bundle bundle2 = this.getIntent().getExtras();
String et = bundle2.getString("ET");
Bundle bundle3 = this.getIntent().getExtras();
String pt = bundle3.getString("PT");
Bundle bundle4 = this.getIntent().getExtras();
String at = bundle4.getString("AT");
datasource = new InformationDataSource(this);
datasource.open();
@SuppressWarnings("unchecked")
ArrayAdapter<Info> adapter2 = (ArrayAdapter<Info>) getListAdapter();
Info info = null;
// Save the new info to the database
info = datasource.createInfo(nt,et,pt,at);
adapter2.add(info);
adapter2.notifyDataSetChanged();
List<Info> values = datasource.getAllInfos();
// Use the SimpleCursorAdapter to show the
// elements in a ListView
ArrayAdapter<Info> adapter = new ArrayAdapter<Info>(this,
android.R.layout.simple_list_item_1, values);
setListAdapter(adapter);
}
}
Infoと呼ばれる別のクラスがあります。私はそれを使用して情報を内部に保持します。私の間違いはActivity2.classにあると思います。ListViewでメインアクティビティの文字列を表示できません。プログラムを実行すると、MainActivityは機能しますが、情報を入力して[追加]ボタンを押すと、エラーが発生します。これが最初のエラーです。
07-19 09:44:19.013: W/KeyCharacterMap(545): No keyboard for id 0
07-19 09:44:19.013: W/KeyCharacterMap(545): Using default keymap:
/system/usr/keychars/qwerty.kcm.bin
07-19 09:44:27.974: E/Database(545): Error inserting Name= Phone= Email=null Address=
長い投稿を再度申し訳ありませんが、私はこのことについては初めてです。ありがとう