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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T19:21:55+00:00 2026-06-06T19:21:55+00:00

I have written an application that keeps erasing my shared preference. It was always

  • 0

I have written an application that keeps erasing my shared preference. It was always my understanding that the when you use SharedPreferences, they persist until you uninstall the application or clear the preferences programatically (I could be wrong). What is happening is that I have the string value of a sharedpreference in one file. That value is then called for in a separate file which runs an if statement and sets an imageview to a specific graphic if that variable has been stored. It seems to run great and everything works like it is supposed to until I close the application and kill it within the phones settings or use the “Advanced Task Killer” application. I have programmed other applications using the shared preferences the same way (not using the if statement) and I don’t seem to have this problem, so this makes me think that there is an issue with the if statement. Logically, I cannot figure out what is going wrong. Any help is much appreciated. File one code:

public void onCreate(Bundle savedInstanceState)
      {
          super.onCreate(savedInstanceState);
          setContentView(R.layout.guessaquaman);

final Button guessbutton = (Button) findViewById(R.id.guess_button);
            guessbutton.setOnClickListener(new View.OnClickListener() {


                public void onClick(View v) {

                    guess=(EditText)findViewById(R.id.guess_edittext);

                    String myguess = guess.getText().toString();
                    String correctanswer = "aquaman";
                    if( myguess.equals( correctanswer ) ){
                        Toast.makeText(getApplicationContext(), "Correct", Toast.LENGTH_SHORT).show();



                        SharedPreferences sharedPreferences = getSharedPreferences("MY_SHARED_PREF", MODE_PRIVATE);
                        SharedPreferences.Editor editor = sharedPreferences.edit();
                        editor.putString("aquamanticked", "on");
                        editor.commit();

                        Intent myintent1 = new Intent(AquamanGuess.this,PlayActivity.class);
                        startActivity(myintent1);
                        guessbutton.setEnabled(false);
                    }
                }
            });

And the second file:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.play);

    SharedPreferences sharedPreferences = getSharedPreferences("MY_SHARED_PREF", MODE_PRIVATE);
    String aquamanticker = sharedPreferences.getString("aquamanticked", "");
    String aman= "on";

    ImageView aquaman = (ImageView) findViewById(R.id.aquaman);
    aquaman.setImageResource(R.drawable.aquaman_small_empty);

    if (aquamanticker == aman ){
    aquaman.setImageResource(R.drawable.aquaman_small_filled); }
  • 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-06-06T19:21:56+00:00Added an answer on June 6, 2026 at 7:21 pm

    That line in the second file looks bad!

    if (aquamanticker == aman ){
    

    Try it this way:

    if (aquamanticker.equalsIgnoreCase(aman) ){
    

    The reason:

    You are comparing two String objects called aquamanticker and aman instead of comparing the contents of what the String variable holds.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have C# application that makes use of some C libaries(which I have written
I have written a C++ application, that runs forever until terminated manually. It monitors
I have a typical Flex-based application that was written to use a Java/Hibernate/MySQL backend.
I have written an application (intended only for my own use) that monitors Core
I have written a PHP application that uses Objects heavily. Added, deleting, updating etc..
I have written a little console application that uses s#arp. I can create an
I have written a Scala (2.9.1-1) application that needs to process several million rows
I have written a console application in Delphi that queries information from several locations.
I have written an application for Android. the main part being that it communicates
I have written a WinForms application (C# 2.0, VS2008) that registers several file types

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.