I am using AppCompat for my theme in my app. Also, I am using a viewpager to manage some fragments. Now I would to hide the actionbar in one of my fragments. How can I do that. I tried to hide the actionbar manually in the fragment like this
import android.support.v7.app.ActionBar;
import android.support.v7.app.ActionBarActivity;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ActionBarActivity activity = (ActionBarActivity) this.getActivity();
ActionBar aBar = activity.getSupportActionBar();
aBar.hide();
}
but this hides the actionbar for all fragments. Any ideas?