Hi Colin,
I will check the Class later (when I will be more familiarly with the basic functions
)
I have another issue with EditText.
I put a EditText view on an Activity. Name of the EditText is "txtNameCam1" then value is "aaaaa"
I write it into the Settings.ini file with this code
Dim SettingsMap1 As Map
SettingsMap1.Initialize
SettingsMap1.Put("NameCam1",txtNameCam1)
File.WriteMap(File.DirInternal, "Settings.ini", SettingsMap1)
when I read the value again, NameCam1 value is: "android.widget.EditText{104288f VFED..CL. ........ 296,106-677,233 #3}" and not "aaaaa"
I think that I have to initialize EditText, but I am not sure.