PreferenceActivity in Android is a base class for an activity to show a hierarchy of preferences to the user
0
votes
1answer
11 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
22 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
99 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
41 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
205 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 ...
0
votes
0answers
32 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
33 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
36 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
38 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
11 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
25 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
38 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
71 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
26 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
36 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
226 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
49 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
41 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
338 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
30 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 / ...
1
vote
2answers
168 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
52 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 ...
0
votes
1answer
275 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
268 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
161 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
178 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 ...
2
votes
2answers
240 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
79 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
221 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
74 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
133 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
40 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
51 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
37 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
41 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
104 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
104 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
82 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 ...
2
votes
0answers
244 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
77 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
0answers
189 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
42 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
699 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
92 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 ...
0
votes
0answers
56 views
Delete Preferences from PreferenceScreen which were added dynamically
I add Preferences to my PreferenceActivity like this:
public void assignmentFieldsAdd()
{
CheckBoxPreference cb1 = new CheckBoxPreference(this);
cb1.setTitle("Detailed explanation " + ...
2
votes
1answer
269 views
How to load the same screen preference in the detail PreferenceFragment
I am trying to do something like the settings preferences in android for tablet.
When I click the "More" the the "Wireless & Networks" preferences screen is displayed on the right fragment, ...
0
votes
0answers
180 views
Android Preference activity create context menu onclick on dynamic preference
Hello I am attempting to create a context menu or somthing of its effect on a completely dynamic PreferenceActivity, So here is the basic idea.
I am loading data from my server and population the ...
1
vote
1answer
437 views
Create layout preference programmatically
I need help with preferences. I need to create them programmatically. I have this preference screen:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
...
0
votes
1answer
187 views
Custom Preference Category won't show Text title
I'm trying to get my Preference category header to be consistent with the theme of my app, so after searching around both on SO and some blogs I follow..I found the best(and easiest) way was just to ...
1
vote
2answers
107 views
Android preferences theme
Does anyone know how I can set the the margins so the PreferencesActivity appears centered?
This is the result I'm getting:
http://imgur.com/G4DvqDx
Desired theme I'm trying to achieve:
...


