user555910
user555910

Reputation: 2667

Get the values from the database in Android


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

Answers (1)

Will Tate
Will Tate

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

Related Questions