Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

8 Answers

up vote 93 down vote accepted

To obtain shared preferences, use the following method In your activity:

SharedPreferences prefs = this.getSharedPreferences(
      "com.example.app", Context.MODE_PRIVATE);

To read preferences:

String dateTimeKey = "com.example.app.datetime";

// use a default value using new Date()
long l = prefs.getLong(dateTimeKey, new Date().getTime()); 

To edit and save preferences

Date dt = getSomeDate();
prefs.edit().putLong(dateTimeKey, dt.getTime()).commit();

The android sdk's sample directory contains an example of retrieving and stroing shared preferences. Its located in the:

<android-sdk-home>/samples/android-<platformversion>/ApiDemos directory
share|improve this answer
So the next time user runs my app, the stored value is there already and i can fetch it...right? – Muhammad Maqsoodur Rehman Sep 2 '10 at 7:09
Yes you can fetch it. – naikus Sep 2 '10 at 7:40
What do you mean: prefs.getLong(dateTimeKey, new Date().getTime()); What is new Date().getTime()? What is it's significance? Did you choose that arbitrarily?? – Igor Ganapolsky Apr 11 '12 at 16:40
1  
(To anyone reading the above) Yes it is arbitrary. This example just saves the current date as a preference with the key "com.example.app.datetime". – billynomates Jan 15 at 19:20

To edit data from sharedpreference

 SharedPreferences.Editor editor = getPreferences(MODE_PRIVATE).edit();
 editor.putString("text", mSaved.getText().toString());
 editor.putInt("selection-start", mSaved.getSelectionStart());
 editor.putInt("selection-end", mSaved.getSelectionEnd());
 editor.commit();

To retrieve data from shared preference

SharedPreferences prefs = getPreferences(MODE_PRIVATE); 
String restoredText = prefs.getString("text", null);
if (restoredText != null) 
{
  //mSaved.setText(restoredText, TextView.BufferType.EDITABLE);
  int selectionStart = prefs.getInt("selection-start", -1);
  int selectionEnd = prefs.getInt("selection-end", -1);
  /*if (selectionStart != -1 && selectionEnd != -1)
  {
     mSaved.setSelection(selectionStart, selectionEnd);
  }*/
}

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

share|improve this answer
5  
+1, but use getPreferences(MODE_PRIVATE); instead of getPreferences(0); for readability. – Key Sep 2 '10 at 6:35
What is mSaved here? I need to save 2 string values. – Muhammad Maqsoodur Rehman Sep 2 '10 at 6:36
I would also like to know what mSaved is. Nvm i think its the editbox – kjt15 Jun 5 '12 at 0:19

To store values in shared preferences:

  SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
  SharedPreferences.Editor editor = preferences.edit();
  editor.putString("Name","Harneet");
  editor.commit();

To retrieve values from shared preferences:

  SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this);
  String name = preferences.getString("Name","");
  if(!name.equalsIgnoreCase(""))
  {
    name = name+"  Sethi";  /* Edit the value here*/
  }
share|improve this answer

Easiest way:

To save:

getPreferences(MODE_PRIVATE).edit().putString("Name of variable",value).commit();

To retrieve:

"your_variable" = getPreferences(MODE_PRIVATE).getString("Name of variable",default value);
share|improve this answer
I tried this between activities and it did not work. Does package structure need to be included in var name? – Garreh May 2 '12 at 22:36

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:

package org.example.preferences;
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.widget.TextView;

public class PreferencesDemo extends Activity {
   /** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    // Get the app's shared preferences
    SharedPreferences app_preferences = 
        PreferenceManager.getDefaultSharedPreferences(this);

    // Get the value for the run counter
    int counter = app_preferences.getInt("counter", 0);

    // Update the TextView
    TextView text = (TextView) findViewById(R.id.text);
    text.setText("This app has been started " + counter + " times.");

    // Increment the counter
    SharedPreferences.Editor editor = app_preferences.edit();
    editor.putInt("counter", ++counter);
    editor.commit(); // Very important
}
}

main.xml

Code:

   <?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
       >
        <TextView
    android:id="@+id/text"  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
</LinearLayout>
share|improve this answer

Simple solution of how to store login value in by SharedPreferences.

You can extend the MainActivity class or other class where you will store the "value of something you want to keep". Put this into writer and reader classes:

public static final String GAME_PREFERENCES_LOGIN = "Login";

Here InputClass is input and OutputClass is output class, respectively.

// This is a storage, put this in a class which you can extend or in both classes:
//(input and output)
public static final String GAME_PREFERENCES_LOGIN = "Login";

// String from the text input (can be from anywhere)
String login = inputLogin.getText().toString();

// then to add a value in InputCalss "SAVE",
SharedPreferences example = getSharedPreferences(GAME_PREFERENCES_LOGIN, 0);
Editor editor = example.edit();
editor.putString("value", login);
editor.commit();

Now you can use it somewhere else, like other class. The following is OutputClass.

SharedPreferences example = getSharedPreferences(GAME_PREFERENCES_LOGIN, 0);
String userString = example.getString("value", "defValue");

// the following will print it out in console
Logger.getLogger("Name of a OutputClass".class.getName()).log(Level.INFO, userString);
share|improve this answer

editor.putString("text", mSaved.getText().toString()); Here, mSaved can be any textview or edittext from where we can extract a string. you can simply specify a string. . Here text will be the key which hold the value obtained from the mSaved(TextView or Edittext).

SharedPreferences prefs = this.getSharedPreferences( "com.example.app", Context.MODE_PRIVATE); Also there is no need to save the preference file using the package name i.e., "com.example.app". You can mention your own prefered name. Hope this helps!!

share|improve this answer

To Write

SharedPreferences preferences = getSharedPreferences("AUTHENTICATION_FILE_NAME", Context.MODE_WORLD_WRITEABLE);
SharedPreferences.Editor   editor = preferences.edit();
editor.putString("Authentication_Id",userid.getText().toString());
editor.putString("Authentication_Password",password.getText().toString());
editor.putString("Authentication_Status","true");
editor.commit();

To Read

SharedPreferences prfs = getSharedPreferences("AUTHENTICATION_FILE_NAME", Context.MODE_PRIVATE);
     String Astatus = prfs.getString("Authentication_Status", "");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.