我有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
}
});
提前致谢:)
答案 0 :(得分:0)
实际上我只是想得到这个值,这样我才能超过这个值 通过意图的另一项活动
您不必将值“传递”给另一个Activity
。在您的其他Activity
内,您只需查询在ListView
中选择的正确值。