How can I hide action bar for certain fragment? I have searched for the answer at stackoverflow, but I have only found a solution, which involves disabling action bar for main a
Have you tried getActivity().getSupportActionBar().hide() in the onCreate() of the fragment you wish the ActionBar to be hidden in?
getActivity().getSupportActionBar().hide()
onCreate()
I am assuming you are not using ActionBarSherlock.
ActionBarSherlock