我在我的应用程序中使用数据库,因为我已经从数据库中获取数据,但我不知道如何在 textview 中显示它。
这是我的代码:
super.onCreate(savedInstanceState);
setContentView(R.layout.report);
db.open();
Cursor c = db.getAllTitles();
startManagingCursor(c);
String[] from = new String[] { db.KEY_INCOME };
int[] to = new int[] { R.id.textView1 };
SimpleCursorAdapter notes =
new SimpleCursorAdapter(this, R.layout.report, c, from, to);
这里的笔记有数据库值。但不知道如何继续如何在列表视图中显示它。