在我的数据库代码中,我目前正在浏览我的 SQLite 数据库的 ID 列。现在,这正在返回一个字符串变量,当我把它作为一个文本视图时,它列出了所有条目。但我想将该变量放入某种列表视图(或类似列表)中,以便用户能够单击该列表视图并显示与该主键相关的其余信息。我一直在做研究,并找到了教程来做到这一点,但它们不适合我想做的事情,也不完全适合我。下面是我要显示列表视图的活动中的代码。谢谢。
public class View_Saved_Dates extends Activity {
ListView list;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_view_saved_dates);
list = (ListView)findViewById(R.id.listView1);
Database info = new Database(this);
info.open();
//I want to put the variable below which lists all data within the id column of my database into a list view or some sort of list where I can
//click the id and bring up the rest of the information in the databse.
String cowid = info.getCowid();
info.close();
}
}