Reputation: 2667
I saved the EditText value in SQLite database and I want the to view all values from the database in ListView or TextView.
How it can be done?
Please help me.
Upvotes: 0
Views: 605
Reputation: 33509
The Notepad tutorial shows you how to pull information out of a database using a Cursor
then how to display it in a ListView
using the SimpleCursorAdapter
.
It can be found here: http://developer.android.com/resources/tutorials/notepad/index.html
Upvotes: 1