Shared Preferences allow you to save and retrieve persistent key-value pairs of primitive data types in Android applications. It can be used either inside a single app or shared between multiple apps.

learn more… | top users | synonyms

1
vote
1answer
30 views

App keeps stopping when i press a button

I have a save button that loads a dialog interface asking for a save name. When you click done it's supposed to created a sharedpreferences with some strings in it, but instead it just says ...
0
votes
2answers
25 views

wrong shared preference reference while reading other application

I have 2 Application and both have a separate sharedpref with same name. I want to read value from other Application sharedpref like Mycontxt = appcontext.create package context(otherapppackagename, ...
1
vote
1answer
22 views

Android Storing User Session in Shared Preferences

I want to create a User Session on Android so that i do not have to login every time. What content should be stored in Shared Preferences so that i can authenticate every time my server gets a request ...
0
votes
1answer
13 views

implement music with SharedPreferences in android

i'm building an app in android, i've three classes right now, one Main, one Music and one Setting. i'm trying to put music in my app, so that when i exit the app it'll stop. i've done that part. i ...
0
votes
0answers
14 views

Chyper SharedPreferences GSON objetcs

I want to store an encrypted Profile object in SharedPreferences using gson. Here's my code: public void saveProfile(Profile newProfile) { try { Log.i(C.TAG, newProfile.toString()); ...
0
votes
1answer
27 views

there is any way to save my shared preferences data into sqlite database in android

problem : i wanted to save my shared preferences data into sqLite database permanently.i here provides my code which store my data into shared preferences folder but when i am trying to store new data ...
0
votes
0answers
24 views

How to save a List<HashMap<String,String>> to an SQLite db

I want to save a List<HashMap<String,String>> to my small db. How to achieve it.. I want to use this list in many activities of my app. Is there any other possible way to access this ...
0
votes
2answers
29 views

SharedPreference Flush or clear not working

So this is in my first.java SharedPreferences preferences = getSharedPreferences("myPrefss", getApplicationContext().MODE_PRIVATE); preferences.getString(currentPlace, ""); SharedPreferences.Editor ...
0
votes
1answer
30 views

Android SharedPreferences or SQLlite Storing

I have a question. In my project I have some user preferences which are stored in the SQL database. There are about 200 records and the table has 3 columns. This records do not change, only if the ...
0
votes
4answers
43 views

AutocompleteTextView setText or setHint not working

So in my first activity i'm getting the current location as currentLocation through reverse geocoding and i use sharedPreference to pass the value to the next activity (second.java/class). This class ...
-2
votes
2answers
30 views

Android: Is it possible to make a notification occur only once? [closed]

Title is explanatory. I have a notification that displays a message, I want it so that if it ever goes into X condition, say the second time or more, it wont send any notifications. Is this possible? ...
0
votes
2answers
20 views

SharedPreferenses don't save states

I need settings in application which will be available in few namespases(all are in one project). I desided to create class with methods like: private SharedPreferences prefs; private Context ...
1
vote
5answers
57 views

How to receice value from Listview and save it into sharedprefences

i was using sharedprefences for send value into data, everything okay, when i receive values from one sharedprefences that taken from one class(ListView), but i face the problem when i want to receive ...
1
vote
2answers
25 views

Reading shared preferences

i'm using shared preferences for the settings menu of my android app. it's working very well but i didn't know how to use these settings on my code: For example how to use the selected language and ...
0
votes
2answers
32 views

Accessing SharedPreferences

I have a problem in the LiveWallpaper app (my first) I am developing. Consider 2 classes: LiveWallpaperService and LiveWallpaperSettings. LiveWallpaperSettings extends PreferencyActivity. Example data ...
0
votes
1answer
23 views

using sharedpreferences from service

I'm trying to use sharedpreferences from my thread called by service: SharedPreferences startPref = PreferenceManager.getDefaultSharedPreferences(context); //SharedPreferences startPref = ...
2
votes
2answers
36 views

SharedPreferences not keeping value

With SharedPreferences, i would like to save a value (that will be later the date of last update) and load it. It works well until i shut down my phone or force close my application. It resets the ...
-1
votes
1answer
51 views

Create remember password in android

How could i create remember password in android application. I have checked with details if checked then save the details,and retrieve when needed. Here is the code. if (chkRememberMe.isChecked()) { ...
0
votes
1answer
27 views

sharedpreference with splash screen

My app start by splash screen with music , i used sharedpreference to stop music so next time you open the app splash screen still there without music . im tring to get preferece screen with two ...
0
votes
0answers
15 views

SharedPreference with MODE_MULTI_PROCESS issue

My app has an activity and a service. When I first wrote it I learned to use sharedPreferences from the commonsware book using MODE_PRIVATE. The app has grown, and for reasons beyond the scope of ...
0
votes
2answers
36 views

Java Android SharedPreferences issues

I'm making a game of Tetris on android as a project for school and right now im using shared preferences in order to save the current state of the game so that it can be resumed on a later time , i've ...
0
votes
2answers
33 views

How to put/get multiple JSONObjects to JSONArray?

Is it possible to store multiple different JSONObjects into a single JSONArray? This is the structure, I want to store in a JSONArray. ...
0
votes
1answer
28 views

Android SDK SharedPreferences toubles

Im working on an app and would like to save the state of obe of my checkbox options, but when I try using the SharedPreferences class (first time using it) I get a nullpointer exception. I have been ...
0
votes
0answers
20 views

Android Shared Preferences with webview

How can I keep the font size settings vebviev with sharedpreference web=(WebView)findViewById(R.id.webViewche); prefs=PreferenceManager.getDefaultSharedPreferences(this); listener=new ...
0
votes
2answers
49 views

Android Crash after using SharedPreferences

I am developing an Android Application, for keep me logged in functionality I am using SharedPreferences application started to crash. This is the line that i add for Preferences; SharedPreferences ...
0
votes
3answers
73 views

How to create preferences in Android?

I have a problem with android settings. I want to create settings for changing the background color of an activity. What do I have to do? I have layout: public class MyApp extends ...
0
votes
3answers
39 views

Is there only one shared preferences object per application?

My question is: If I call: PreferenceManager.getDefaultSharedPreferences(getApplicationContext()) in two different Activities in my application, does it refers to the same SharedPreferences file? ...
0
votes
1answer
43 views

Making an activity appear only once, when the app is started

I have the following class, SplashActivity.java: public class SplashScreen extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated ...
0
votes
0answers
23 views

I have 2 activities & want to save the records in its fields, also must edit and update the fields and save it finally to send it to web service

FIRSTPAGE.JAVA Here there few edit text and to be saved temporarily @Override protected void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); ...
2
votes
0answers
26 views

Android preference, how to set dependancy on custom preference

I want some other preference dependent on a preference which invokes an intent to do some processing. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > ...
0
votes
0answers
39 views

Populate listview with data from shared preferences

I've build a note widget app, and now I'm trying to create an activity in which the user can see the text from previous deleted widget (so they can restore it, if deleted by mistake). I save the ...
0
votes
2answers
23 views

Shared Preferences available to all activites

Please help.. I am stacked with my thesis.. Here I use Shared Preferences, which works well between 2 activities. However, I want to keep the data available for multiple activities. How do I do that? ...
0
votes
1answer
52 views

Add link to Preferences?

I have preferences in an Android Live wallpaper app as below. (These are checkboxes). I want to add a link to a Facebook page to this list. Looking at Android PreferenceCategory on the net, I don't ...
-2
votes
1answer
30 views

ways to store uuid in android [closed]

I was wondering what will be the easiest and efficient way to store UUID in Android? I want to use UUID in my application for bluetooth transfer. The app will generate uuid when it runs for the first ...
0
votes
0answers
31 views

Action Bar Home Button not functional with nested PreferenceScreen

I found a workaround to actually enable the ActionBar home button on the nested PreferenceScreen... however it doesn't call OnOptionsItemSelected in my PreferenceActivity. Anyone know a way to ...
0
votes
1answer
95 views

Alternative to addPreferencesFromResource as its deprecated

I create Preference activity on my app to allow user to start/stop background splash screen music as follow : public class Prefs extends PreferenceActivity{ @SuppressWarnings("deprecation") ...
0
votes
1answer
25 views

How to get the default value from XML ( not working )

When starting service i need to check for particular setting ( boolean ). Please check following code: XML Code: <CheckBoxPreference android:title="Enable Sleep" android:defaultValue="false" ...
0
votes
4answers
35 views

Use back button to save sharedPreferences

I'm having some issue with my application... I have a Settings Activity where the user can pick a theme for the app, then I have a button that says "Back" and returns the user to the main Activity. ...
-1
votes
1answer
56 views

Store & Retrieve Button State using shared preference

I am making an application that has 2 button news and data. if i pressed news button then display the news in listview and same as for data. The problem is i want to store the button state into ...
0
votes
1answer
26 views

Trouble setting SharedPreferences, not sure of issue

I want the following code to save some data to a SharedPreferences file: // Assign external resources SaveButton = (Button)findViewById(R.id.button6); // Set the ...
1
vote
1answer
98 views

Preference cannot cast java.lang.boolean to String

I have the following Preference class: public class AppPreferencesActivity extends PreferenceActivity { private SharedPreferences appPrefs; private SharedPreferences.Editor prefEditor; ...
0
votes
4answers
46 views

Cant put double SharedPreferences

Getting error, the method put double is undefined for this type of sharedPreferences editor.Eclipse is given one quick fix add cast to editor, but when i do that its still given errors, Why cant i put ...
0
votes
1answer
32 views

Android toast on preference change

I want to tell the user that when he has changed one or more fields in the preference window that it was succesfully changed but I am running into some problems: listener = new ...
0
votes
1answer
31 views

Android How to store spanned text in shared preferences

the Html parse is very slow, so I thought of storing a static text within the sharded preferences to access it faster. Is it possible to store this somehow and retrieve it, so that it can be set ...
1
vote
3answers
37 views

SharedPreferences not working properly

Please see code below @Override protected void onStop() { super.onStop(); SharedPreferences prefs = getSharedPreferences("screenPref", Context.MODE_PRIVATE); SharedPreferences.Editor edit ...
-1
votes
4answers
69 views

Android Shared Preferences not displaying

I want to create simple app for learning purposes. You enter a text, app saves it using Shared Preferences. And in the TextView I want to display this saved text. My code looks like this: public ...
0
votes
4answers
38 views

SharedPreferences doing weird things

I want to save the users choice of theme using sharedPreferences every time they hit the button "Save" but there is something that I clearly doing wrong but I can't see it. My problem is, without the ...
1
vote
2answers
60 views

SharedPreferences - Activity and BroadcastReceiver

I am currently using the SharedPreferences to keep track of a list of items to perform work on in a BroadcastReceiver started through an AlarmManager. Everything works great except a particular ...
0
votes
1answer
46 views

getDefaultSharedPreferences not Saving Between Services

I have two services (a DashClock extension service that calls another service), and the second service is supposed to save a value so I can use that value to display in my DashClock extension. ...
-1
votes
1answer
41 views

Where can i store data(list of string) in sharedpreference or string.xml

What is the best practice to store multiple String(greater than 50)? Every String contain at least 8 lines. Where can I store this String Either in string.xml or Sharedpreference?

1 2 3 4 5 29