Csabi Vidó
Csabi Vidó

Reputation: 146

ActionBar to my PreferenceActivity

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

Answers (1)

Bene
Bene

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

Related Questions