PreferenceActivity in Android is a base class for an activity to show a hierarchy of preferences to the user

learn more… | top users | synonyms

-2
votes
2answers
31 views

What's the best way to implement Settings in my application? [closed]

I'm trying to add a screen to my application where the user can change the settings on the app and perform certain actions like clearing cache; changing default values, etc. I'm new to Android, and ...
0
votes
2answers
23 views

How to launch the configuration activity from widget?

On this question are not answers in all over internet, I not found. I spent all my day on searces, so I start to think, that nobody knows Im new on stackoverflow and English is not my native lang. ...
0
votes
1answer
34 views

Adding a specific Button to the bottom of a scrolling PreferenceScreen

I was having errors implementing this using by trying to add a button that utilized xml code for the buttons display information. I got past this by creating a single button, adding it to the footer, ...
0
votes
3answers
79 views

How to hide title bar of preference fragment in android?

I want to hide the title bar of a preference fragment and not able to use requestWindowFeature(Window.FEATURE_NO_TITLE) as it is only applicable to the full screen activity but not to the Sub Screen. ...
1
vote
0answers
234 views

How to wrap DrawerLayout around PreferenceActivity in an Android app?

I am writing an Android app to take advantage of Drawer Layout functionality. I want to have an ability to use Drawer Layout as a navigational tool available throughout the app. To use the Drawer ...
0
votes
1answer
29 views

Is a call to PreferenceManager.setDefaultValues() necessary for clearing preferences?

Until now the "Reset to Default" button in the PreferenceActivity of my app did something like this: SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(this); ...
0
votes
1answer
61 views

Theme Issue with PreferenceActivity

in my app I let the user choose which theme he wants to use (dark or light). The themes are defined in my styles.xml as followed: <style name="but" ...
0
votes
0answers
29 views

PreferenceActivity initializing values for get methods without showing

I'm having a problem with my PrefernceActivity class. I have created the class with loading the items from a xml file by calling addPreferencesFromResources(R.xml.settings); The activity itself works ...
0
votes
2answers
315 views

Custom Actionbar Sherlock PreferenceActivity ListView

I use SherlockPreferenceActivity for Preference activity from a xml file. Code below: public class Setting extends SherlockPreferenceActivity { protected void onCreate(Bundle paramBundle) { ...
0
votes
1answer
82 views

styling conflict android actionbarsherlock with preferences

<style name="GCTheme" parent="Theme.Sherlock.Light"> <item name="android:textSize">18sp</item> <item name="android:textColor">#FFFFFF</item> <item ...
4
votes
1answer
254 views

PreferenceFragment support all API issue

This is first time to use preference fragment with preference activity so depend on the accepted answer of this post :PreferenceActivity Android 4.0 and earlier i applied the code sa below and test ...
1
vote
1answer
103 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 ...
1
vote
1answer
48 views

PreferenceActivity in Android

How can i find if a Preference has been clicked and take some action accordingly. In this case i want to logout when a Preference in PreferenceActivity with key logout is clicked.The following code is ...
0
votes
0answers
45 views

DialogPreference setSummary()

I have a Custom Preference displaying a TimePicker dialog when clicked. I want to set the summary for the preference when a value is choosed displaying the chosen time. How could this be done? I don't ...
0
votes
0answers
62 views

jfeinstein10/SlidingMenu with PreferencesActivity as behindContentView

I'm trying to use jfeinstein's SlidingMenu library and I'd like to use a PreferencesActivity as the behindContentView. Can anyone advise how to do this? An actual example would be even better. I ...
0
votes
0answers
18 views

trouble with DatePreference… not getting the date using getDateFor

I am using the DatePreference API from https://github.com/bostonandroid/DatePreference trouble is i am not able to get the date... my syntax is as follow Calendar dob = ...
1
vote
0answers
30 views

PerfenceyActivity cannot show in TabHost

everybody I have a problerm when I put a PreferenceActivity in a TabHost.The PreferenceActivity cannot show,other Atcitivites whice in TabHost can show normally,And I have tested the ...
0
votes
2answers
44 views

How to detect when a properties of PreferenceActivity is modified

I have created and class to manage my preferences: public class ConfigurationActivity extends PreferenceActivity{ @Override public void onCreate(Bundle savedInstanceState) { ...
0
votes
2answers
321 views

Android: Creating custom preference

can somebody tell me if it's possible to create an individual preference in an PreferenceScreen? I want to code some color settings like that: I know that choosing the color is easy to realizable ...
0
votes
2answers
28 views

Save values to preference summary which needs to persists

I have preferences.xml which contains checkboxes, preferences..etc. I'm extending preference activity and setting preference layout with addpreferencesfromxml method. Click on first preference opens ...
0
votes
0answers
38 views

Android PreferenceActivity selections to a file

I currently have a PreferenceActivity where I have a list of items and checkboxes. public class BevCat extends PreferenceActivity { SharedPreferences prefs = ...
1
vote
0answers
277 views

Preference activity with sliding menu

I'm trying to put a preference activity in the behind content of a sliding menu. Here is my main_menu.xml <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
0answers
75 views

How to handle long text in preferences on Android?

Background I'm making an app that has some settings, and I want to use the built in PreferenceActivity or PreferenceFragment for the job The problem Some of the preferences have a long title which ...
2
votes
1answer
74 views

Calling a method in my PreferenceActivity Activity form another Activity

Hi and thanks for your help, I have the following situation. In my App I use PreferenceActivity to show and allow changes of settings, let's call it PreferenceActivity A. If the user selects one ...
0
votes
0answers
642 views

addPreferencesFromResource

I know this might be a duplicate from: What to use instead of "addPreferencesFromResource" in a PreferenceActivity? But I still can not get the code to work and would appreciate some help. ...
0
votes
1answer
41 views

Is it ok to use PreferenceActivity with custom HashMap as settings storage in Android?

I was using a json file for settings on my applications on other platforms. As i want to keep the flow similar, i ported my custom settings solution (which saves keys in HashMap and saves to / ...
2
votes
2answers
285 views

usage of findviewbyid in preferenceactivity

I have a preference screen and i am specifying a layout resource using the android:layout attribute. In the preference activity i am using/inflating the preference using addPreferencesFromResource ...
0
votes
2answers
72 views

Why my PreferenceScreen is showing white instead of the default black?

I am testing my app but when I choose settings my preferences screen shows White instead of the default black theme. Just with my app because any other app shows the right black theme in preference ...
1
vote
2answers
451 views

Android - Headers categories in PreferenceActivity with PreferenceFragment

I would like to display a preference screen like the one in the Android settings app : using headers, PreferenceActivity, PreferenceFragment and headers categories. I wan't this result on a tablet : ...
0
votes
2answers
518 views

Preference Activity on Preference Click Listener

I am building a Preference Activity where most of the preferences in the list will be executing code and not modifying a SharedPreference directly. My preferences.xml file looks like this. ...
1
vote
1answer
259 views

Custom Android preferences background

I'm currently trying to set custom background for preference screen. I've created PreferenceActivity public class SettingsActivity extends PreferenceActivity { @Override protected void ...
2
votes
1answer
246 views

preferencefragment no view found for id android

I had the getpreferencescreen deprecated so I tryed to implement the header preference activity. here is my code: public class EditPreferences extends PreferenceActivity { ListPreference ...
3
votes
2answers
341 views

PreferenceActivity actionbar home icon won't return home (unlike ET :)

My PreferenceActivity works great except for one thing. The ActionBar icon, which perfectly returns the user to the previous activity in all my other activities doesn't work in the ...
0
votes
0answers
96 views

Change SettingsPreferenceFragment header icon in Android

i'm trying to change the header icons of a preference fragment without any luck. I tried setting it on Manifest and didn't work, also, i red something here on stackoverflow by calling Window. but it ...
0
votes
2answers
332 views

How to add my keyboard settings activity on default android settings

I am working on creating my own keyboard and it has Settings Activity. Now I want settings should be shown in default keyboard setting. found some where that settings activity should extend ...
0
votes
1answer
82 views

How to increase Preference Height using Preference Activity?

I am trying to show list of images in Preference, i can make it using ListPreference but want to show without Dialog. I tried the link, but getting ClassCastException. It should work dynamically ...
0
votes
2answers
171 views

Start/Stop service by checking/unchecking CheckBoxPreference

i'm writting an app that start or stop service by checking or unchecking CheckBoxPreference i tried to find some information such as sample code or tutorials. but i didn'f find yet. how to start or ...
0
votes
0answers
51 views

Is it possible to create a preference screen with PreferenceFragment without using an XML resource?

I am currently able to create a preference screen with a PreferenceFragment, in which I assign my preferences using: addPreferencesFromResource(R.xml.preferences); Instead of using the resource ...
0
votes
0answers
67 views

Admobs ad in 2 provider setup not displaying in PreferenceActivity

I want to display Ads from both MobFox (primary) and Admob(Secondary) in a preference activity. So I tried a million things. What has worked (despite my little issue) the best is following subclass of ...
0
votes
0answers
40 views

Setting one preferences entry to the default value

I'm looking for an easy way to handle integer and IP-type preference values in a PreferenceActivity. The idea is, to catch the changes in the onSharedPreferenceChanged listener. If the value doesn't ...
0
votes
1answer
51 views

dynamic preference checkbox puzzle

I'm confused about what's happening in the following code. It's actually doing what I want but I thought I'd have to do more work. In the onCreate method the checkboxes are retaining their checked ...
0
votes
0answers
119 views

ActionBarSherlock: blank screen in Preferences

I want to show Preferences by pressing hardware menu button (HMB). I don't want it in action bar. However, when I press HMB, it's blink for a moment and nothing happens. Preference.java public class ...
0
votes
0answers
115 views

Admob in a preference activity, triple click needed

I have added an Admob ad in my preference activity, but it seems the user needs to click 2 times to activate the ad : the first time to have the focus on the ad, and then the second time the click is ...
0
votes
1answer
124 views

SharedPreferences are being restored as defaults in onResume instead of the saved SharedPreferences values

I have a PreferenceActivity P that stores values to SharedPreferences. This is working--I am able to make selections from the lists and the summary values are displayed correctly. The problem is ...
4
votes
0answers
277 views

Android PreferenceActivity and dialog fragments

The app I am developing has an activity that extends SherlockFragmentActivity. I would like to use the preferences api in order to easily add preferences to the activity. Since I would like to support ...
0
votes
1answer
85 views

Create Activity that looks like PreferenceActivity

I need to make an Activity that will replace the PreferenceActivity. The reason is that we need to save the settings in the SQL. I need a way to style my settings screen to look exactly like the ...
0
votes
1answer
226 views

RingtonePreference not saving in PreferenceActivity

I am using PreferenceScreen to set some user preferences in my Android app. It works perfectly for several ListPreference and CheckboxPreference items, however I cannot get RingtonePreference to work ...
0
votes
1answer
44 views

Is it possible to add a custom component to a Preference Activity in android?

Is there any way to add custom component in preference activity in order to change value for the setting?
1
vote
3answers
1k views

Android- deprecated method warning regarding PreferenceActivity

When I attempt to follow Android's Developer guides and tutorials for creating a Settings Activity using Preferences, I receive warnings such as: "The method addPreferencesFromResource(int) from the ...
0
votes
2answers
106 views

NullPointerException while Preferences deleting which were added dynamically

I need to add Preferences dynamically to my PreferenceActivity and I do it like this: mFilterShow = (PreferenceScreen)getPreferenceScreen().findPreference("orderScreen"); public void ...

1 2 3 4 5 7