after going through loads of tutorials on CursorLoader for using with a SQLiteDatabase, I'm still a bit confused. Being a beginner, I was unaware of the advantages of Listview and instead chose to use several ViewGroups in a vertical order in my first app.
Now that my app is complete and I want to optimize it by using a CursorLoader for doing all the SQL operations (CRUD), I don't have any idea how to implement it.
Is it possible to extract the information from the returned adapter and update the TextViews inside the ViewGroups?
Furthermore, I'm using a DatabaseHelper for all my SQL requirements. Do I need to re-write it to use a Loader? How tough would it be?
Sorry if this is a naive question, but the official documentation are not at all clear.