1

I am making developing an app and I'm using res/xml/settings.xml for my preferences.

It works fine But now I want these settings to be in the Android Default settings.

I 've searched a lot but couldn't find a solution.

Can anybody help me how to add app settings in the android Default settings(Wireless and networks,Call Settins,Sound,Applications etc.. ).

Thanks in advance....

Amandeep singh
  • 1,865
  • 7
  • 21
  • 41
  • What you mean Android Default settings? – Nikhil Jul 26 '12 at 11:00
  • means where all the settings are there like Wireless and networks,Call Settins,Sound,Applications etc.. – Amandeep singh Jul 26 '12 at 11:03
  • see these links might help you http://stackoverflow.com/questions/3524110/how-to-add-preference-of-custom-input-method-to-android-settings-app/3528859#3528859 and http://stackoverflow.com/questions/5259637/add-item-to-the-settings-in-android-framework – Avi Kumar Jul 26 '12 at 13:30
  • http://stackoverflow.com/questions/12096555/how-to-add-own-setting-to-system-settings –  Jun 24 '14 at 18:02

1 Answers1

0

You can't add your own application settings to the Default Android Settings application.

They should live inside your application. If you want the same look and feel as the default settings you should use a PreferenceActivity or PreferenceFragment for Honeycomb+

Dazzy_G
  • 820
  • 9
  • 22