Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've gone through several questions and articles in the web and almost all of them seem to be pointing towards starting an Custom class which extends PreferenceActivity.

But then in the Android reference documents, it instructs to use preferencefragment.

What is the correct method to using it?

(I'm only asking because doing it through an activity has addPreferencesFromResource() as deprecated)

Assumption: api level 15

share|improve this question

1 Answer

up vote 1 down vote accepted

The answer is, it depends on what platform you are developing for. The PreferenceFragment is for 3.0+ and is now considered the proper way to do it. Unfortunately, there is not an equivalent in the support library for the older platforms, so for those you need to use a PreferenceActivity.

See here for a more in-depth explanation and a link to an example implementing both (uses the proper type depending on device platform).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.