Reputation: 146
How can I add ActionBar to my non ActionBaryActivity classes? I use that Material like appcompact theme and now if I make a "PreferenceActivity" there is no action bar.(i would like to use this:
ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
Upvotes: 0
Views: 77
Reputation: 734
You can use PreferenceFragments in a ActionBarActivity instead. PreferenceActivity is deprecated anyway. http://developer.android.com/reference/android/preference/PreferenceFragment.html
Upvotes: 1