I was reading this about how to make a settings page for an app http://developer.android.com/guide/topics/ui/settings.html and according to this
- If your app supports versions of Android older than 3.0 (API level 10 and lower), you must build the activity as an extension of the PreferenceActivity class.
- On Android 3.0 and later, you should instead use a traditional Activity that hosts a PreferenceFragmentthat displays your app settings. However, you can also use PreferenceActivity to create a two-pane layout for large screens when you have multiple groups of settings.
Ive tried doing this and have had a bit of trouble :/