Skip to content

Shared Preference are used as a temporary memory to store the values. I got the task to implement the shared preferences by storing the value in it then check the result either it is ture or false. Interface for accessing and modifying preference data returned by Context.getSharedPreferences(String, int).

Notifications You must be signed in to change notification settings

salihhashmi99/Shared-Preferances

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Interface for accessing and modifying preference data returned by Context.getSharedPreferences(String, int). For any particular set of preferences, there is a single instance of this class that all clients share. Modifications to the preferences must go through an Editor object to ensure the preference values remain in a consistent state and control when they are committed to storage. Objects that are returned from the various get methods must be treated as immutable by the application. Note: This class provides strong consistency guarantees. It is using expensive operations which might slow down an app. Frequently changing properties or properties where loss can be tolerated should use other mechanisms. For more details read the comments on Editor#commit() and Editor#apply(). Note: This class does not support use across multiple processes.

About

Shared Preference are used as a temporary memory to store the values. I got the task to implement the shared preferences by storing the value in it then check the result either it is ture or false. Interface for accessing and modifying preference data returned by Context.getSharedPreferences(String, int).

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages