
In my application I am using the new Action Bar Compatibility sample from Google (http://developer.android.com/resources/samples/ActionBarCompat/) which works great. The only problem I have is applying this to my preference activity in order to get a screen like the settings activity in the Android Market (see picture).
To fill the action bar with icons each activity must extend the ActionBarActivity class. The problem is that my activity already extends PreferenceActivity and in Java classes can not extend more than one class.
There must be a way to get the action bar together with a preference screen. I would be glad if anybody could provide a solution for this common issue.
P.S.: A solution like in How to add a button to PreferenceScreen does not fit because the Action bar is actually the title bar and so this is more a Java than a layout thing.