Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding settings to Settings

Tags:

android

The application I am developing is in large parts a background-only Service BUT requires some settings that the user must add. Is there a way to integrate applications with the common Settings application/view/activity?

like image 492
c0dem4gnetic Avatar asked May 25 '10 06:05

c0dem4gnetic


1 Answers

Is there a way to integrate applications with the common Settings application/view/activity?

Only by modifying the firmware. Android does not support SDK applications defining or adding global preferences.

You can use the same look and feel for your own settings activity by use of PreferenceActivity and preference XML files. But you will then still need to have that activity appear in the Launcher.

like image 78
CommonsWare Avatar answered Nov 15 '22 15:11

CommonsWare