2

What are the other methods to replace the method

addPreferencesFromResource(R.xml.prefs);

Can this will get any errors in feauture

Ameer
  • 2,709
  • 1
  • 28
  • 44
  • Check this link http://stackoverflow.com/questions/6822319/what-to-use-instead-of-addpreferencesfromresource-in-a-preferenceactivity Hope it might help. No alternative method is provided in the method's description because the preferred approach (as of API level 11) is to instantiate PreferenceFragment objects to load your preferences from a resource file. See the sample code here: PreferenceActivity. – khubaib Sep 25 '13 at 07:30

1 Answers1

3

Use PreferenceFragment instead. You may face some troubles in the future, right now PreferenceActivity works fine.

Maxim Efimov
  • 2,747
  • 1
  • 19
  • 25