I want to store a time value and need to retrieve and edit it. Can somebody guide me here with a sample code/project please? Thankyou
|
|
|
To obtain shared preferences, use the following method In your activity:
To read preferences:
To edit and save preferences
The android sdk's sample directory contains an example of retrieving and stroing shared preferences. Its located in the:
|
|||||||||||
|
|
To edit data from sharedpreference
To retrieve data from shared preference
Edit- I took this snippet from API Demo sample. It had an Edit Text box there... In this context it is not required.I am commenting the same |
|||||||||
|
|
To store values in shared preferences:
To retrieve values from shared preferences:
|
||||
|
|
|
Easiest way: To save:
To retrieve:
|
||||
|
|
In any application, there are default preferences that can accessed through the PreferenceManager instance and its related method getDefaultSharedPreferences(Context) With the SharedPreference instance one can retrieve the int value of the any preference with the getInt(String key, int defVal). The preference we are interested in this case is counter In our case, we can modify the SharedPreference instance in our case using the edit() and use the putInt(String key, int newVal) We increased the count for our application that presist beyond the application and displayed accordingly. To further demo this, restart and you application again, you will notice that the count will increase each time you restart the application. PreferencesDemo.java Code:
main.xml Code:
|
|||
|
|
|
Simple solution of how to store login value in by You can extend the
Here
Now you can use it somewhere else, like other class. The following is
|
||||
|
|
|
|
|||
|
|
|
To Write
To Read
|
|||
|
|

