Click here to Skip to main content
15,893,486 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi, I'm attempting to develop an Android app and using a SQLite database to store the data, which I have stored in the Assets folder. Problem is I'm having trouble reading in and populating a ListView with this data. I have read that using LoaderManager, CursorLoader and a ContentProvider is the best way to do this. But I'm having trouble finding any clear information or tutorials on this.

Any advice on the best way to go about this would be really appreciated.

Thanks Guys
Posted
Comments
DalliaF 8-Mar-13 2:28am    
this site may help--> http://appfulcrum.com/2011/09/21/listview-example-5-using-sqlite-database/
Confucius II 9-Mar-13 10:37am    
Thanks DalliaF for your help, thats a really useful site
criselda 8-Mar-13 23:36pm    
create a class DataBaseHandler through which you can access database tables and retrieve the data you want. For eg, use query like "Select * from plants table" and store the data related to each row in a plant bean class. Pass the collection of beans to list adapter. And display only name by using getName method of bean class. On click, pass the corresponding bean and populate linear layout with the fields values of bean object.
Confucius II 9-Mar-13 10:40am    
Thanks Criselda, I appreciate your help. I will give it a go.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900