Showing posts with label hide action bar; action bar; hide action bar for fragment; action bar for fragment; How to hide action bar for fragment. Show all posts
Showing posts with label hide action bar; action bar; hide action bar for fragment; action bar for fragment; How to hide action bar for fragment. Show all posts

Friday, 11 September 2020

How to hide action bar for fragment?

 How can I hide action bar for certain fragment?

Please try this code


@Override

public void onResume() {
super.onResume();
((AppCompatActivity)getActivity()).getSupportActionBar().hide();
}
@Override
public void onStop() {
super.onStop();
((AppCompatActivity)getActivity()).getSupportActionBar().show();
}