Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6355383
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:45:17+00:00 2026-05-24T22:45:17+00:00

I check the SharedPreferences example and curious about the code for data modification in

  • 0

I check the SharedPreferences example and curious about the code for data modification in SharedPreferences:

SharedPreferences preferences = getSharedPreferences (name, MODE_PRIVATE);
SharedPreferences.Editor editor = preferences.edit();
editor.putString("Greeting", "Welcome to sharedpreferences!");
editor.commit();
Log.d("shared preferences", preferences.getAll().toString());

I wonder why the lines of second to fourth:

SharedPreferences.Editor editor = preferences.edit();
editor.putString("Greeting", "Welcome to sharedpreferences!");
editor.commit();

can’t rewrite as:

preferences.edit().putString("Greeting", "Welcome to sharedpreferences!");
preferences.edit().commit();

LogCat does not show up any key pair values after this change. It seems not feasible to write with this way. Just wonder why it necessary to declare an SharedPreferences.Editor object rather than directly called from the SharedPreferences class?

The source code of SharedPreferences:

http://www.java2s.com/Open-Source/Android/UnTagged/dexandroid/android/content/SharedPreferences.java.htm

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T22:45:17+00:00Added an answer on May 24, 2026 at 10:45 pm
    1. The link you gave is for documentation and interface, not the actual implementation of the SharedPreferences you got.
    2. You are not promised to get the same editor each time you call edit(), so calling commit on editor will not commit the changes in the object preferences.edit() since it might be a separate object.

    In your example:

      SharedPreferences.Editor editor = preferences.edit(); 
    //                         ^object #1
      editor.putString("Greeting", "Welcome to sharedpreferences!"); 
    //^object #1
      editor.commit();
    //^object #1
      preferences.edit().putString("Greeting", "Welcome to sharedpreferences!"); 
    //             ^object #2
      editor.commit();
    //^object #1
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, check this source code: public void checkSession() { SharedPreferences session = getSharedPreferences(PREFS_NAME, 1);
check this example: > a = matrix(1:9, nrow = 3, ncol = 3, dimnames
Check this code (My Custom Keyboard): -(IBAction) updateTextBackSpace:(id)sender { if([txtview.text length]>0) { NSString *deletedLastCharString
Check the below code int add(int a, int b) { return a + b;
First check out this code. I seems like it should work for me, but
Please check this code out it compiles and runs absolutely fine.. The question is
Check this example: $('button').bind('click focus', function() { // Did I click or focus? });
Check out this code. // Print object and recurse if iterable private static void
i am using SharedPreferences in my code that will store last state of my
To check does preferences exist I tried this way, but it shows null every

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.