Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

58
votes
3answers
33k 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 ...
11
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="..." ...
9
votes
5answers
762 views

android - How to set custom layout for PreferenceActivity in Android 3.0?

I am developing app with minSdkVersion="11", that is app for tablets and Android 4.0 and newer. I have scrutinized internet on this topic, but have not found much. To implement custom layout for ...
5
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
1answer
2k views

Number Preferences in Preference Activity in Android

What I want to do is I am working on a game of life program. I want to take the time delay and make it a preference, but I want to make it available for people to type in a specific time. The number ...
4
votes
3answers
537 views

Action bar in preference activity (Android)

In my application I am using the new Action Bar Compatibility sample from Google (http://developer.android.com/resources/samples/ActionBarCompat/) which works great. The only problem I have is ...
4
votes
2answers
2k views

Custom PreferenceCategory Headings

I have a simple preference screen defined like this <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <PreferenceCategory android:title="Security"> ...
3
votes
2answers
331 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
2answers
753 views

How to set RingtonePreference value from code?

I've the following Preference: <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> <RingtonePreference android:showDefault="true" ...
3
votes
1answer
368 views

Android: Bottom Button Bar in PrefernceActivity?

I'd like to create a PreferenceActivity with a button bar at the bottom, should look like the picture on the right. Anyone know how to do this? I came across this: Bottom button bar in android, but it ...
3
votes
1answer
168 views

Is it possible to change the background of a sub screen (PreferenceScreen) of a PreferenceActivity?

I found that you can change the background of a PreferenceActivity by using getListView().setBackgroundResource(R.drawable.bg); However, if you go to any deeper PreferenceScreens the background ...
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 ...
2
votes
2answers
157 views

Android PreferenceActivity Item Height

I have a PreferenceActivity with two checkboxes. Everything is working correctly, but I have a UI problem; not all of the text for the checkbox fits onto the checkbox row. Is there a nice way to set ...
2
votes
2answers
240 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 ...
2
votes
2answers
184 views

Setting preference layout and changing the attribute in it

is it possible to access programmatically a layout which is set to a Preference? Here is what I have, a very simple project - proof of concept The Preference Activity: package com.example; import ...
2
votes
0answers
81 views

Android: Changing the windowBackground of PreferenceActivity causes weird effect

I want to add a background image to my preference activity. I tried by creating custom Theme: <style name="MyPreference" parent="android:Theme.Light.NoTitleBar"> <item ...
2
votes
0answers
452 views

Android: Unable to find explicit activity class… startActivity from a PreferenceActivity

Well guys, I solved it. It wasn't a problem with my code, but with Eclipse and the Android SDK. After some research, I did "Help -> Check for updates" in Eclipse and everything is working now. Thanks ...
2
votes
0answers
288 views

Android update language in preference activity

In my android app i have a preference activity which let's the user override the app's language. To achieve this I call this function in every activity's onResume() and then reset the content view: ...
2
votes
0answers
123 views

How do I refresh a specific Preference in Custom PreferenceActivity on Android?

First get your preference and then add/remove it. The key comes from your preference.xml file (or however you have named it) <com.test.testing.PreferenceChangeColor ...
2
votes
2answers
178 views

New Preferences not loading when back button is pressed

I have this preferences class (below) that saves two ListPreferences, but if the ListPreferences are changed and the back button is pressed, the changes don't take affect unless the application is ...
2
votes
2answers
499 views

Preferences without deprecated methods

I'm trying to (correctly) implement a preferences screen, but the problem is that all the methods used to read preferences from xml files are deprecated (or I just don't recognize them). The official ...
2
votes
1answer
197 views

Open WebView not browswer from preferenceScreen Android

From my PreferenceScreen I want to open links in WebView not browser. Any ideas? Here is part of my xml: <PreferenceCategory android:title="@string/about"> <PreferenceScreen ...
2
votes
2answers
532 views

PreferenceActivity Refresh Problem

I have PreferemceActivity inflated from xml: <PreferenceScreen android:title="Appearence" android:key="AppearencePref" > ...... ...
2
votes
1answer
1k views

Android how to detect if changes were made on the preferences?

I have a class that extends PreferenceActivity and shows the preference screen of my app. Is it possible to check if any changes were made to the preferences? Thanks Mike This helps... ...
2
votes
2answers
665 views

I can't figure out how to use an android PreferenceActivity

I've been trying to use an android preference activity, I got it all set up but I'm having trouble actually retrieving the users preference. To be specific it's two edittext preferences, term length ...
2
votes
1answer
2k views

How to show and hide preferences on Android dynamically?

Is there a way to dynamically show and hide preferences? In my case, I have a checkbox preference that would disable or enable one of 2 preference groups ("with-" and "without-handicap" groups). ...
2
votes
1answer
630 views

Get the Ringtone title from RingtonePreference

I have a RingtonePreference that is used to select a ringtone that is broadcasted to a receiver used in an Alarm application. I would like to display the title (the titles displayed in the list you ...
2
votes
4answers
968 views

Always show scrollbars for PreferenceScreen

I have defined preferences in my app using preferences.xml and a PreferenceActivity. The settings are presented in the phone in a ScrollView-like-way. I would like to always show the vertical ...
2
votes
2answers
492 views

Binding EditTextPreference to a given preference file (getSharedPreferences)

two activities here, A and B. A is main, B is PreferenceActivity with two EditTextPreference. I want to be able to access the preferences generated by B from activity A, and for that I need of course ...
2
votes
3answers
1k views

Can't access preferences created by PreferenceActivity

I have a minimal program that does little more than let me set two preferences (an int and a String) using Android's PreferenceActivity. So I have an xml file that defines my preferences, and an ...
2
votes
2answers
693 views

Displaying ProgressDialog within a PreferenceActivity

I've got a quite interesting issue when I try to display a ProgressDialog (the simple, spinner type) within a onPreferenceChange listener. public class SettingsActivity extends PreferenceActivity { ...
2
votes
2answers
769 views

Responding to preference updates in Android

I am calling a PreferenceActivity from another activity and then updating the application state (ie: changing the font size) on onActivityResult, based on the preference changes. I was thinking it ...
2
votes
4answers
3k views

Update existing Preference-item in a PreferenceActivity upon returning from a (sub)PreferenceScreen

I have a PreferenceActivity with a bunch of (Sub)PreferenceScreens. Each such (Sub)PreferenceScreen represents an account and has the account-username as its title. PreferenceScreen root = ...
1
vote
1answer
26 views

SharedPreference default value from PreferenceManager with working OnSharedPreferenceChangeListener

I wanted to make a option class, where you could load all preferences of a user. If there is no keys in the sharedPreference then I would like to load the xml defaults in Preference. The problem is, ...
1
vote
1answer
56 views

Preferences of varying height within a PreferenceActivity

I have a custom class that extends Preference that I'm using in conjunction with a PreferenceActivity. When I try to adjust the height in the layout my Preference is using (with a static ...
1
vote
2answers
74 views

Correct way of detecting preference changes in a live wallpaper?

I created a live wallpaper with a preference activity. Unfortunately, any time the user changes a setting the onSharedPreferenceChangeListener gets called. The listener calls some routines that are ...
1
vote
1answer
64 views

programmatically scroll PreferenceActivity

I have PreferenceActivity with plenty of PreferenceCategories defined in it. If I have the android:key of a given category is it possible programmatically to scroll the Activity to this category.
1
vote
2answers
108 views

PreferenceActivity error: doesn't show selected option after close Activity

The value is saved well in SharedPreference when i push it , but it doesn't show when i open another time the PreferenceActivity. It runs if i don't put the android:entryValues , but i can't use it ...
1
vote
2answers
120 views

SharedPreferences on android

I have a problem with SharedPreferences and my PreferenceActivity. I need that my application can difference between differentes preferences and users, so every user has his own preferences. I thought ...
1
vote
1answer
22 views

“AlarmReceiverChangeImage” error message in PendingIntent statement inside a method

I'm trying to set up a PendingIntent inside a PreferenceActivity in a method but Eclipse displays a red underline error "AlarmReceiverChangeImage cannot be resolved to a variable". The error is on ...
1
vote
1answer
133 views

Is possible to change the summary of EditTextPreference dynamically in Android?

I set up a preferenceScreen to edit the settings in my application. I would like to insert an EditTextPreference that contains a Title like "set your name" and a summary containing the name entered. ...
1
vote
1answer
150 views

How do you call a timepicker from a preference activity?

Can you tell me how to call a time picker from a preference activity? Can you show the needed manifest.xml, layout.xml and code inside the preference activity and any other needed files to call the ...
1
vote
1answer
113 views

Populate ListPreference with a list of supported camera picture sizes

I'm in the middle of developing a camera app, and what I need to do is provide a list of resolutions compatible with the user's device. Getting that list is no problem, I can just use the ...
1
vote
0answers
94 views

PreferenceActivity within TabWidget

Within my program I have a PreferenceActivity as one of my tabs. I do the following. public class settings extends PreferenceActivity{ // On Create @Override protected void ...
1
vote
1answer
1k views

Android: “BadTokenException: Unable to add window; is your activity running?” at showing dialog in PreferenceActivity

I'd like to ask for some help: In my app, I have only one activity, a PreferenceActivity (don't need other, it's just a simple background-sync app, so the PrefsActivity is the Main/Launcher). After ...
1
vote
2answers
436 views

Android: Start Activity from preferences.xml

I would like to start an Activity from a default preferences.xml, with < intent > tag. The Activities are well tested, the problem is not with that. (I'm extending PreferenceActivity in my app, so ...
1
vote
4answers
280 views

Launch new activity from PreferenceActivity

Good day, friends. I have a PreferenceActivity, it is filled from XML file. When we press one item, we should launch new activity. How to do it? What should I write in XML-file or in the Java-class?
1
vote
2answers
152 views

Android: preference activity. Dependency by list values

How to set dependency by the ListPreference values?
1
vote
3answers
235 views

Starting a PreferenceActivity from a TabActivity

I have a TabActivity which starts when the application is launched. It contains 3 tabs. I have added a Settings option in the OptionMenu which when clicked starts a custom PreferenceActivity. it is ...
1
vote
2answers
392 views

ActivityNotFoundException (YES, this activity is declared in AndroidManifest.xml)

I found a few threads reporting a similar problem but none of them really offers something that I haven't tried already. An innocent such call: mActivity.startActivity(new Intent(mActivity, ...

1 2 3