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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:58:02+00:00 2026-05-18T02:58:02+00:00

i need to save a simple field to configurate my APP, cause this, i

  • 0

i need to save a simple field to configurate my APP, cause this, i wont use a database (it’s only a field…), i need to save true or false value for this field on a file, and everytimes a section of my app wanna check if it is true they have to check this textfile, and not to open a connexion to a database

i need to save the config for ever… i mean that when i exit from my app, and for example, i shut down my android device, when i start my device again and start my app, the config have to be saved

is this possible? how can i do it? i can’t find any information about that

EDIT: i have problems with the first answer… this code is on my oncreate method:

static SharedPreferences settings;
static SharedPreferences.Editor configEditor;
settings = this.getPreferences(MODE_WORLD_WRITEABLE);

    if (settings.getBoolean("showMeCheckBox", true)) 
     showMeCheckBox.setChecked(true);
    else 
     showMeCheckBox.setChecked(false);

applyButton.setOnClickListener(new OnClickListener() {
            public void onClick(View v) {
                // Perform action on clicks
             if (showMeCheckBox.isChecked()) {
                 configEditor.putBoolean("showMeCheckBox", true); 
                } else {
                 configEditor.putBoolean("showMeCheckBox", false);
                }

            }
});

ok, but this doesn’t works… allways is selected… always true, like the default value… doesn’t matter if i checked or unchecked it…. :S

  • 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-18T02:58:03+00:00Added an answer on May 18, 2026 at 2:58 am

    i suggest not to use a textfile but the Preference Editor.

    static SharedPreferences settings;
    static SharedPreferences.Editor editor;
    settings = this.getPreferences(MODE_WORLD_WRITEABLE);
    editor = settings.edit();
    //store value
    editor.putString("Preference_name_1", "1");
    //get value
    //eill return "0" if preference not exists, else return stored value
    String val = settings.getString("Preference_name_1", "0");
    

    Edit: you have to initialize the configEditor and after setting a value, you have to commit

    editor = settings.edit();
    editor.putBoolean("name",true);
    editor.commit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to save objects - instances of classes - in my app like
i have a simple text input field users put in a number. I need
I need to be able to save and load images into an SQLite database
I'm trying to simply save a file. However, I need a filename entered without
.txt file need save in SD-card. Save(n + String.valueOf(key) + .txt); private void Save(String
(sorry for my english) I need save an image in the application path and
I need to save to an isolated storage the total time that the user
I need to save the context of the program before exiting ... I've put
I need to save some classes and data structures to a file. My first
I need to save images in certain folder of my application: string path=E:\AJAXEnabledWebSite1\images\gallery I

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.