I populate my listView with objects have type like this:
and then when I click on that lv item
Question is : How do I sawe that listview objects to one file and retrieve it later?
B4X:
Type Person (iD As Int, Name As String , PhoneNo As String , Photo As Bitmap, sendemail As Boolean, sendsms As Boolean, running As Boolean)
B4X:
Sub lvAdded_ItemClick (Position As Int, Value As Object)
Dim p As Person=Value
ToastMessageShow(p.Name & p.PhoneNo,True) ' <- this works
Next
End Sub
Question is : How do I sawe that listview objects to one file and retrieve it later?