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 6861219
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:30:26+00:00 2026-05-27T02:30:26+00:00

In my android app I have SharedPreferences usernamePref = context.getSharedPreferences(USERNAME_PREF, context.MODE_PRIVATE); String username =

  • 0

In my android app I have

    SharedPreferences usernamePref = context.getSharedPreferences(USERNAME_PREF, context.MODE_PRIVATE);
    String username = usernamePref.getString(USERNAME_PREF, ERROR);

    SharedPreferences emailPref = context.getSharedPreferences(EMAIL_PREF, context.MODE_PRIVATE);
    String email = emailPref.getString(EMAIL_PREF, ERROR);

    SharedPreferences passwordPref = context.getSharedPreferences(PASSWORD_PREF, context.MODE_PRIVATE);
    String password = usernamePref.getString(PASSWORD_PREF, ERROR);

The reason this is confusing me is because the key is being used twice, which seems redundant. So I am wondering, is it possible to just get all the preferences from a single SharedPreferences object?

  • 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-27T02:30:26+00:00Added an answer on May 27, 2026 at 2:30 am

    This is the way I typically do it:

    PreferenceManger prefManager = PreferenceManager.getDefaultSharedPreferences(context);
    String username = prefManager.getString(USERNAME_PREF);
    String email = prefManager.getString(EMAIL_PREF);
    String password = prefManager.getString(PASSWORD_PREF);
    

    Note: You will want to be editting the single SharedPreferences for your app, not individual as you have it now. To edit it this way do the following:

    PreferenceManger prefManager = PreferenceManager.getDefaultSharedPreferences(context);
    SharedPreferences.Editor editor = prefManager.edit();
    editor.putString(USERNAME_PREF, usernameString);
    editor.putString(EMAIL_PREF, emailString);
    editor.putString(PASSWORD_PREF, passwordString);
    editor.commit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my current Android app I have several settings stored in SharedPreferences and one
We have an Android app and a Web Service. We want to download part
I have an Android app with a ListActivity in the main view. The list
I have a class that extends android.app.Dialog, the layout is done in an xml
I have created a small and simple android app. I tried installing it on
I have a simple question. I am trying to design a simple Android app,
I'm going to implement my strings with internationalization in my Android app. I have
I'm defining a style XML for my android app. I have some TTF files
I have a simple client-server app on android. the android service communicates with the
I have a style applied to my whole application: AndroidManifest.xml: <application android:theme=@style/ApplicationStyle android:icon=@drawable/icon android:label=@string/app_name>

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.