does anyone have good code examples of inserting listview into sqlite database? i googled how to insert listview into database but most have examples on how to display listview from database instead. so yah please help me thanks!
does anyone have good code examples of inserting listview into sqlite database? i googled
Share
listView is your list view. the integer parameter “position” gives you the ListView item position you clicked. using that you can get the details
details can be fetched something like this:
you populate the listView using this String array and then get the details of the clickd item using
now insert these details into your database table.