Android Question Eqvt. of a 'Registry' in Android OS - reg.

beelze69

Active Member
Licensed User
Longtime User
Hi,

I want to define some standard setting values for my app for which
the latest values will be picked vide a GUI interface provided to the end-user.

End-user is free to alter the values and save them after which these settings take effect.

Now when end-user invokes the app, the program would need to 'load the latest values of the settings' from somewhere.

One way is to store these values in a database and then read it from there.

However, in Windows, we have the concept of creating values in UDF App registry keys and storing/retrieving the values from there.

My doubt:

Is there any such 'registry eqvt'. for Android OS ?

Meaning, if any app wants to write and store some keys and its values in an Android OS and retrieve them later, how it can be done?

Thanks
 

beelze69

Active Member
Licensed User
Longtime User
I've never seen such a thing in Android.
The app has access to its own directory, via File.DirInternal in B4A, and you can use KeyValueStore for your purpose.
Thanks, LucaMs.. I will try it out..
 
Last edited:
Upvote 0
Top