engvidal Member Licensed User Longtime User Jan 21, 2013 #1 What function or property at B4A is similar to the "shared preferences" used in traditional android dev ? Ax example with 2 or 3 values would be great. Thank You
What function or property at B4A is similar to the "shared preferences" used in traditional android dev ? Ax example with 2 or 3 values would be great. Thank You
Erel B4X founder Staff member Licensed User Longtime User Jan 21, 2013 #2 There are several ways to store settings. - Store the settings with a Map object (File.ReadMap / File.WriteMap). - Use StateManager module which also supports settings. - Use PreferenceScreen library. This library uses the standard preferences API. (do a search for each option to find examples) Upvote 0
There are several ways to store settings. - Store the settings with a Map object (File.ReadMap / File.WriteMap). - Use StateManager module which also supports settings. - Use PreferenceScreen library. This library uses the standard preferences API. (do a search for each option to find examples)