Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在按钮的单击方法(onClickListener)上创建了数据库和表,我还在创建表后创建了 Insert 语句,它工作得很好。现在我想在下一个活动的列表视图控件上显示插入的数据。我不能使用 SQLiteOpenHelper 类来创建数据库和表,但我直接使用 OpenOrCreateDatabase() 函数创建数据库和表。
如何在activity的ListView中显示数据?
您可以使用 SimpleCursorAdapter 将数据加载到 ListView 中。您将在com.example.android.apis.view包下的 ApiDemos(Android SDK 的一部分)中找到一些示例
这是一个教程