Is it possible to use ActionBarActivity in conjunction with PreferenceActivity. Basically, I want to use the following code:
getSupportActionBar().setDisplayHomeAsUpEnabled(true); // Enables the "back" arrow
The issue is PreferenceActivity doesn't contain the getSupportActionBar() method and ActionBarActivity doesn't contain any methods for managing and displaying preferences.