Tagged Questions

You can learn more about Shared Preferences under the Data Storage section in the Android documentation.

learn more… | top users | synonyms

62
votes
3answers
36k views

How do I get the SharedPreferences from a PreferenceActivity in Android?

I am using a PreferenceActivity to show some settings for my application. I am inflating the settings via a xml file so that my onCreate (and complete class methods) looks like this: public class ...
15
votes
1answer
2k views

Difference between getDefaultSharedPreferences and getSharedPreferences

What is the difference between getDefaultSharedPreferences and getSharedPreferences in Android? Can anyone please explain. Thanks in advance.
14
votes
2answers
12k views

How do I get preferences to work in Android?

I've really been struggling through this. New to Java/Android. I'm writing my first app and this is the first thing that has taken me longer than a couple days of searching to figure out. Here's the ...
12
votes
2answers
2k views

Should accessing SharedPreferences be done off the UI Thread?

With the release of Gingerbread, I have been experimenting with some of the new API's, one of them being StrictMode (http://developer.android.com/reference/android/os/StrictMode.html) I noticed that ...
12
votes
2answers
4k views

PreferenceActivity: save value as integer

Using a simple EditTextPreference in my preferences activity: <EditTextPreference android:key="SomeKey" android:title="@string/some_title" android:summary="..." ...
8
votes
3answers
3k views

how to use getSharedPreferences in android

I have an application in which I have to implement a "Login" activity. I have these components: EditText username EditText password Button Login Button Cancel I want that my application to ...
8
votes
2answers
2k views

How secure are SQLite and SharedPreferences files on Android?

First, a bit of my background. I have been working on large web systems for over a decade, Android is something I have been looking at for the past two months; as you can imagine, the gap is quite ...
7
votes
3answers
1k views

SharedPreferences and Thread Safety

Looking at the SharedPreferences docs it says: "Note: currently this class does not support use across multiple processes. This will be added later." So in and of itself it doesn't appear ...
6
votes
4answers
1k views

SharedPreferences will not save/load in PreferenceActivity

I have a preferenceActivity in which I have many checkBoxPreferences. The checkBoxPreference is suppose to save the the default shared preferences file, and then be called again when I open the app in ...
5
votes
4answers
94 views

Is it possible to stored Class's static object in Shared Preference?

I am developing a project in that i am creating one static class's object . So when i switch off device at that time all the static objects are cleared so i want to stored into shared preference . So ...
5
votes
1answer
847 views

Shared Preferences vs Database

My data is simple property values so I could store either way, but I was wondering which is more reliable? Are shared preferences auto saved and therefore more reliable? Or because they are ...
5
votes
1answer
3k views

Problem saving shared preferences in Android

Right now I am trying to save a variable when i close the app and get the variable back when i open the app back up. I have no idea if I'm doing this right. My variable is called count and would like ...
5
votes
3answers
8k views

Is it possible to add an array or object to SharedPreferences on Android

If not, is there any workaround? I have an array list of objects that have a name and an icon pointer. I do not want to use a database.
5
votes
3answers
2k views

User preferences file vs App preferences file

My android application has two kinds of preferences: 1) I have user preferences defined in res/xml/preferences.xml so that users can manage their preferences with a PreferenceActivity. 2) I'd like ...
4
votes
2answers
111 views

Launch Android App with Specific Activity

When an app launches or resumes, I would like to redirect the user to a specific 'Activity' based on a variable set in 'SharedPrefences'. To do this I was considering having a method that checks for ...
4
votes
4answers
476 views

Android widget buttons stop working

I have an Android application with a widget, that has buttons. This code works. The buttons on the widget stop working when something happens, such as changing the language of the phone. I use shared ...
4
votes
1answer
422 views

how can using shared preferences string values in surface view class in Android

i am implementing one game application in this application i am using shared preferences in preferences Activity spinnerTheme.setOnItemSelectedListener(new OnItemSelectedListener(){ ...
4
votes
1answer
1k views

Android - SharedPreferences with serializable object

I know that SharedPreferences has putString(), putFloat(), putLong(), putInt() and butBoolean(). But I need to store an object that is of type Serializable in SharedPreferences. How can I achieve ...
4
votes
1answer
561 views

Android shared preferences assignments not persisting between emulator sessions

I am using the following code to save data to my Android application's shared preferences: private SharedPreferences getOurSharedPreferences() { return ...
4
votes
2answers
1k views

store and retrieve a class object in shared preference

In android i need to know if we can store an object of a class in shared preference and retrieve the object latter.If it is possible how to do it.If it is not possible what are the other possibilities ...
4
votes
2answers
951 views

What is the best way to save the contents of an ArrayList?

I want to save an ArrayList so that it is persistent. The contents can change. What is the best way of approaching this in android?
3
votes
2answers
36 views

Android SharedPreference security

I wonder about shared preferences security. Is it possible to get access to sharedpreferences, even if they were created in MODE_PRIV (0) ? Is it possible to list all sharedpreferences available and ...
3
votes
1answer
50 views

Copy/share configurations between paid/free versions of Android app?

My Android app comes both as a free and paid version. I have created a library project and two additional Application projects, one 'Free' and one 'Paid' version (signed with the same key, of course). ...
3
votes
3answers
128 views

Converting JSONArray to normal Array

I created a a JSON Array from a normal array of user defined object.How do i convert the JSONArray back to a normal array of the user-defined type..? I'm using Json for shared preference in ...
3
votes
3answers
90 views

How to persist the time and score using shared preferences

I having developing simple application, which has just like game. When I have finished game the gave over page display, which as time and score. Now if i want to play that game again and again. How to ...
3
votes
1answer
208 views

Adding dynamic checkbox preferences in Android, and display them in preference screen?

I want to implement functionality where user will be able to select which group of items to be displayed using checkbox shared preferences. To be precise I will read checked items from the preferences ...
3
votes
1answer
228 views

SharedPreferences on iOS 4

I am looking for a way to store data about a user in iOS 4 that is similar to SharedPreferences in Android. Android's SharedPreferences basically stores key value pairs for an application and only ...
3
votes
2answers
441 views

Reload Preferences in PreferenceActivity on Resume

In my app, some settings can possibly be changed while the PreferenceActivity is not open, and an issue I'm running into is that addPreferencesFromResource is called in onCreate, so say, I open the ...
3
votes
1answer
246 views

Samsung and android 2.2.1 shared pref issue

I'm writing my first app for android and I already faced a irritating bug on Samsung devices with android 2.2.1. http://code.google.com/p/android/issues/detail?id=14359 The problem is that the ...
3
votes
1answer
528 views

Multiple choice ListView and SharedPreferences

I want to save the state of a multiple choice listview checkbox's. I have the following layout. What i want to do is to save the state of, for instance, "test1 and test3" and when i return to this ...
3
votes
1answer
767 views

Pros and Cons of SQLite and Shared Preferences

what is the good mechanism to store information among SQLite database and Shared Preferences ? Why we use shared preference ? Why we use sqlite ? these questions made me confusing ? i tried much to ...
3
votes
1answer
240 views

When an App is force moved to SD-Card, where do SharedPreferences go?

I have an Android App which has a service and this should only be installed internally. However some users with ROOT are installing it on SD-Card and are reporting all kinds of strange errors. When a ...
3
votes
2answers
1k views

PreferenceScreen class not found

I have this in preferences.xml <?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <CheckBoxPreference ...
3
votes
1answer
1k views

How to make SharedPreferences from a PreferenceActivity be set to default in Android?

I have created a PreferenceActivity based on xml for PreferenceScreen. In the xml you can assign default values to the different preferences. But these are not stored in my SharedPreferences before ...
3
votes
1answer
2k views

Problems using SharedPreferences on a Service (getPreferences doesn't exist on a service)

I have some shared preferences (latitude, longitude) that I want to access from a service, that is not subclassed from Activity. In particular, when I try to access getPreferences, this function ...
3
votes
1answer
537 views

Android 2.2 Data Backup: How to backup DefaultSharedPreferences?

I am implementing the new BackupAgentHelper from android 2.2. For it to work you need to supply the name of the SharedPreferences that you want to backup: public class MyPrefsBackupAgent extends ...
3
votes
1answer
2k views

Android: Preference Style

I have made a custom preference (i.e. a preference with a custom layout) which displayed in the preferences list of a PreferenceActivity. The layout is created in code. The problem is that the font ...
3
votes
2answers
5k views

onSharedPreferenceChanged not fired if change occurs in separate activity?

I've implemented onSharedPreferenceChanged in my main activity. If I change the preferences in the main activity, my event fires. If I change the preferences through my preferences screen ...
3
votes
1answer
466 views

sharedUserId: safe to change when app is already in market?

For the next version of our application, I want to change the sharedUserId since we now use an internal control dashboard app which must write to the other app's settings files. But since the app is ...
2
votes
1answer
42 views

shared Preferences and screen orientation

Please tell me: How to save the camera image into "sharedpreferences"? After opening the camera and take picture, When I return back to the previous activity, I found the screen is displayed ...
2
votes
1answer
43 views

getString from a few SharedPreferences file and create listView

First - sorry for my english;) I'am writing profile manager for Android and i want getString from a few SharedPreferences file and create listView. It's part of my code: private static final String ...
2
votes
4answers
67 views

Best option to store username and password in android app

I am developing an app where user needs to sign in to perform operations...but mostly on android handset ppl use "keep me signed in"...and in tht case I'll have to maintain the value of username and ...
2
votes
2answers
23 views

How can I display Different MenuItems for Registered and Non-Registered Users in android?

Below is the code to check whether user is logged in or not , so if user is logged then he will see "greeting-layout" else "registration-layout" . According to user's status(registered/un-registered) ...
2
votes
1answer
84 views

Data cache in Shared Preference

I have 2 processes in my application. From one process i save data in to SharedPreference. From second process - retrieve. When i retrieve data, i recieve sharedprefernces with old data(i check xml ...
2
votes
1answer
73 views

shared preferences or file saving 24 editTexts

I'm pretty new to android can some one give me a better idea which one is a better way to save 2 edit texts on activity 1 and 24 edit texts on activity 2. i need to save it with date / time stamp ...
2
votes
1answer
74 views

Android SharedPreferences not getting changed through editor.commit

I want to change a preference when I click on another preference. I did this with onSharedPreferenceChanged method and setting the value with editor like this... public void ...
2
votes
2answers
140 views

Shared Preferences - max length of a single value

I am storing String into shared preferences, but I wasn't able to find out maximal length of string I can store. Do you know this value? Thanks Waypoint
2
votes
1answer
51 views

Different Settings per instace of a Widget

I've been looking around for ways to do this. How could I make it so each instance of a widget that is created has it's own set of settings (The settings would be the same, just the values different) ...
2
votes
4answers
135 views

How to keep app language setting after device restart?

My app has a language setting feature. Now it works perfectly, but after I restart the device, the language reverts to the original setting. Does anyone have any ideas? Do i need to implement ...
2
votes
2answers
381 views

addPreferencesFromResource makes sharedPreferences not work

So probably another newbish question :) I have an Activity, an AppWidgetProvider and a PreferenceActivity. In the PreferenceActivity I have a ListPreference which I use to define the text-size for ...

1 2 3 4 5 11