Skip to content Skip to sidebar Skip to footer

Android Fragmentactivity Not Showing The Action Bar

I'm trying to create an application that uses fragments, but when I try to show a Fragment in a FragmentActivity the action bar doesn't appear. FragmentActivity class: public clas

Solution 1:

Deriving from class ActionBarActivity instead of FragmentAcivity should solve your problem:

public class NoteDetailsActivity extends ActionBarActivity {
   // ...
}

Post a Comment for "Android Fragmentactivity Not Showing The Action Bar"