tags:

views:

166

answers:

5

Hello! I want to save my downloaded ListView items so that for example next time the app starts, it should not start my download dialog, instead my previous ListView items should turn up.

Some useful code snippets would be appreciated.

Thanks in advance and please tell me if I need to clarify!

+5  A: 

It depends on the kind of data that is displayed in your ListView.

You can store the data into a SQLite database. This means designing an appropriate schema and implementing create/read/update/delete methods.

The process is too long to be explained here in detail; I invite you to read the Notepad tutorial on the official Android developer site.

DavLink