私はListView
自分のsqlite
データを持っていて、別の をクリックして値を表示したいと考えていますActivity
。
誰でもこれを行う方法を教えてもらえますか?
以下は私のコードです:
Cursor cursor = mydb.queueAll();
startManagingCursor(cursor);
String[] from = new String[] { myDbAdapter.ELDERLY_DATE_TIME };
int[] to = new int[] { R.id.textView1 };
SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(this,
R.layout.displayactivity, cursor, from, to);
listContent.setAdapter(cursorAdapter);
mydb.close();
listContent.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
// TODO Auto-generated method stub
}
});
前もって感謝します :)