Android - Check Custom Listview Items On The Start Of The App
I have a custom Listview, each row contains one textviewand one checkbox. I am saving the value (or the text) of the selected row's textview in a public list named usercoin. Each t
Solution 1:
I have stored the data(useritems
) in both DataBase and memory.
If your app is killed by system or user, you can restore the data from DataBase.
If your app isn't killed by system or user, but user jump to other activity, when he back to this activity, you can use memory to restore the data.
About DataBase, I am use SQLite.Net. I am using DBHelper
to operation the DataBase.
And I have add Application class in the app.
Post a Comment for "Android - Check Custom Listview Items On The Start Of The App"