Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

74
votes
8answers
39k views

How do I display the current value of an Android Preference in the Preference summary?

This must come up very often. When the user is editing preferences in an Android app, I'd like them to be able to see the currently set value of the preference in the Preference summary. Example: if ...
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 ...
25
votes
6answers
5k views

Tab Vs Space preferences in Vim

Vim is very accommodating when it comes to tab Vs. space preferences. As I understand it, the tabstop setting indicates the width of a tab character. The shiftwidth setting specifies how many columns ...
16
votes
3answers
4k views

Initialize preferences from XML in the main Activity

My problem is that when I start application and user didn't open my PreferenceActivity so when I retrieve them don't get any default values defined in my preference.xml file. preference.xml file: ...
16
votes
4answers
2k views

Setting Vim whitespace preferences by filetype

At my work, I am required to follow the house style for indentation, which goes as follows: 2 spaces when coding html and ruby tabs when coding javascript, with tabwidth=4 recommended What is the ...
15
votes
3answers
7k views

Android - reference a string in a string array resource with xml

I have been unable to find a solution for this. What I'm trying to do: I have preferences where you can enable/disable what items will show up on the menu. There are 17 items. I made a string array ...
15
votes
6answers
2k views

Eclipse: Limit task tags to current project

Eclipse currently shows the task tags (// TODO) from all open projects. I would be grateful if anyone could point out the preference, where I could restrict the scope of tasks displayed (e.g. only ...
14
votes
3answers
4k views

How does one declare the type of an Android preference?

I have a preferences.xml that looks like this: <?xml version="1.0" encoding="utf-8"?> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> ...
13
votes
5answers
960 views

Best approach to save user preferences?

I have seen two different approaches in saving user preferences. APPROACH 1: Serializing them and saving in one of the column of USERS table APPROACH 2: Creating a separate table PREFERENCES and ...
13
votes
2answers
2k views

Maintaining a common set of Eclipse preferences

Whenever I switch workspaces/Eclipse installs I need to copy/redo the preferences: compiler settings; font sizes/families; code formatter; java code templates; editor templates; code clean-ups; I ...
12
votes
2answers
11k 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
3answers
10k views

Android Preferences: How to load the default values when the user hasn't used the preferences-screen?

I am using a PreferenceActivity to let the user set some values. I am feeding it the xml file with the defined preferences. I have set all the android:defaultValue="" for them. When I start my ...
10
votes
2answers
357 views

Nested preferences.xml

Is it somehow possible to include one preferences.xml into another, like it can be done for layouts with the <include /> tag? Let's say: <?xml version="1.0" encoding="utf-8"?> ...
10
votes
2answers
2k views

Cocoa - Notification on NSUserDefaults value change?

Let's say I have a key @"MyPreference", with a corresponding value stored through NSUserDefaults. Is there a way to be Notified when the value is modified? Or could it be done through bindings? (But ...
10
votes
3answers
8k views

Where are Java preferences stored on Mac OS X?

On Windows, the Java preferences, which you access in your application from java.util.prefs.Preferences are stored in the registry. Where are those stored on Mac OS X?
9
votes
2answers
739 views

iOS 5: Can I have my app “In Notification Center” by default?

I have an iPad app in the App Store whose logic relies largely on local notifications. In other words, much that happens inside the app is triggered by the delegate method application ...
8
votes
16answers
720 views

Programming preference - use else ifs with multiple return statements?

The code: public String getTemperatureMessage(double temp) { if(temp < 32) return "Freezing"; else if(temp < 60) return "Brr"; else if(temp < 80) return ...
8
votes
6answers
3k views

Delphi: Handling user's font preference

I've come up with the call that gets the user's UI font preference (as opposed to Borland's hard-coded choice of "MS Sans Serif"). Let's pretend the user's font preference is: Segoe Print, 15pt I ...
7
votes
2answers
457 views

Is there a good way to persist printer settings in a Swing app?

We are using the new Java printing API which uses PrinterJob.printDialog(attributes) to display the dialog to the user. Wanting to save the user's settings for the next time, I wanted to do this: ...
7
votes
2answers
5k views

Remove/hide a preference from the screen

I have an activity which extends PreferenceActivity. I'm loading preferences from the xml file. But in some cases i need completely hide one of the preferences from the screen based on my app state. ...
6
votes
1answer
143 views

Alternative to Preferences in Java

I'm using the Java Preferences API to store and retrieve small pieces of information in a swing/java application. Now i have setup Java Web start to launch the application from my web page, and I get ...
6
votes
2answers
263 views

Java Preferences and Internationalization (i18n)

The Java tutorials recommend using the Preferences API over Properties files. Properties files and ResourceBundles are the recommended way to handle Internalization requirements in applications. I am ...
6
votes
4answers
1k views

iPhone - How to detect if a key exists in NSUserDefaults standardUserDefaults

Using NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];, I use calls like BOOL boolFromPrefs = [defaults boolForKey:@"theBoolKey"]; To get a saved BOOL value. If the key is not ...
6
votes
2answers
965 views

Nested preference screens lose theming

I have a preference screen for my application and in the manifest I have given it a theme using: android:theme="@android:style/Theme.Light.WallpaperSettings" However when I nest another preference ...
6
votes
1answer
3k views

How do you validate the format and values of EditTextPreference entered in Android 2.1?

Does anyone have sample code to validate user entered text in preferences? For example, I have a EditTextPreference for user to enter an email address. I'd like to validate the format of email address ...
6
votes
3answers
3k views

java.util.Prefs throwing BackingStoreException - Why?

I have a system that caches the tiny/simple results of an on-startup SOAP call I need instances to be able to reload their cache on startup (in case the SOAP service is dead) and ALSO handle the ...
6
votes
2answers
454 views

PHP Frameworks - Are they solely personal preference?

I'm new to the world of PHP frameworks and, after some initial investigation, came up with the following list of popular choices: CakePHP CodeIgniter Symfony Zend I'm trying not to repeat the ...
6
votes
2answers
3k views

Is there a way to use java.util.Preferences under Windows without it using the Registry as the backend?

I want to use the java.util.Preferences API but I don't want my program to attempt to read or write to the Windows registry. How would I go about this?
5
votes
2answers
201 views

Java Preferences doesn't work in Windows 7

Recently I build an Java application. I use Java Preferences to store some information. When I ran my application in windows XP, the application run perfectly. I can store information and get the ...
5
votes
3answers
574 views

Showing preference screen first time app is run and related questions

I have an app with 2 activities, the preference and the main activity, I need the preference screen to show first time the app is run so the user can do some configuration. I have checked through the ...
5
votes
2answers
2k views

Where are the Java preferences stored in Windows 7?

We use the Java preferences in some of our apps and haven't really noticed this since the utility that makes the calls is fairly old and was written in Windows XP days. But it seems the Java ...
5
votes
1answer
2k views

Can SharedPreferences be shared among different Android applications?

As I checked in APIs description for getSharedPreferences(String, int),Second attribute is defining accessibility mode and can take 0 or MODE_PRIVATE for the default operation, MODE_WORLD_READABLE and ...
5
votes
7answers
248 views

what is the recommended way to manage eclipse plugins, preferences and configuration for a team

All the members of my team works with Eclipse. However, each one have different configuration, preferences and plugins. What is the best way to keep a baseline of plugins, preferences such as code ...
5
votes
2answers
3k views

Android ADT Plugin doesn't show up in Eclipse

I'm using Windows 7 and installed the 64 bit version of Eclipse 3.5.2. I then installed the Android ADT plugin, but when I try to configure it in the Windows > Preferences dialog, the Android Plugin ...
5
votes
2answers
704 views

How to do opposite of of preference attribute android:dependency?

Is there XML attribute that does the exact opposite of android:dependency? What I would like the dependent preference to be enabled when the other is NOT checked and disabled when it IS checked. ...
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 ...
5
votes
11answers
379 views

Preferred Windows Java Development Environment

I've been a Linux Java developer for years and have loved it. I just got a new laptop which is running Windows 7. I could wipe the drive and go back to my typical Linux dev setup: vim for editing, ...
5
votes
1answer
662 views

How to map IDictionary<string, object> in Fluent NHibernate?

I am looking to persist user preferences into a collection of name value pairs, where the value may be an int, bool, or string. There are a few ways to skin this cat, but the most convenient method I ...
5
votes
10answers
277 views

Should we deprecate the “Remember Me” checkbox and start assuming?

I've been thinking about this quite a bit lately, and I would like some feedback from this wonderful community. Is it safe to assume that a user wants to be remembered when they login? And if they ...
5
votes
4answers
2k views

Persisting user preferences in Silverlight

I am working on a Silverlight client and associated ASP.NET web services (not WCF), and I need to implement some features containing user preferences such as a "favourite items" system and whether ...
5
votes
5answers
1k views

Encapsulating Java Preferences API

I used to have a custom preferences class for my applications. For my next hobby project i wanted to switch to the Preferences API. But the put and get functions require a default value and i do not ...
4
votes
1answer
53 views

Getting WinForms menus and toolbars to use the system theme?

Is there a way to get WinForms controls MenuStrip and ToolStrip to rendering using the current system theme? Normally the WinForms MenuStrip and ToolStrip controls have a RenderMode property, which ...
4
votes
1answer
86 views

Getting the OS Animation preferences in Java

I have a Java app whose windows and internal components have animations that could slow down a less powerful computer. I know that all OSs have some form of animation preferences (In Windows, there ...
4
votes
3answers
4k views

android shared preferences example for high scores?

Hi I was wondering is there any simple example of implementing a high score list using shared preferences? ie have pre determined high scores at the start and then update the list dependingt on the ...
4
votes
4answers
2k views

How to add a button to a PreferenceScreen (Android)

I'm quite new to Android Development and just came across Preferences. I found PreferenceScreens and wanted to create a login functionality with it. The only problem I have it that I don't know hot i ...
4
votes
2answers
472 views

Get preferred screen brightness in Android

How do you get the preferred screen brightness in Android? To change the screen brightness I use WindowManager.LayoutParams.screenBrightness. According to the documentation: This can be used to ...
4
votes
1answer
2k views

Android: How do I reset/clear application preferences during unit testing?

I want to start with a consistent test environment so I need to reset/clear my preferences. Here's the SetUp for test I have so far. It's not reporting any errors, and my tests pass, but the ...
4
votes
2answers
624 views

Cursor type in Emacs

What do I put in my .emacs file to change the cursor type for all frames to box?
4
votes
1answer
1k views

Programatically enabling/disabling screen rotations in Android

I have an app which displays a large amount of text for the user to read. I've found that when reading while lying down, I get annoyed that the screen rotates even though my head and the screen are ...
4
votes
7answers
454 views

Java String initialization

Which do you prefer and why" String myString = null; if(someCondition) myString = "something"; else myString = "something else"; OR String myString = ""; if(someCondition) myString = ...

1 2 3 4 5 12