How to hide and show Action Bar?
Action Bar – Hide and Show To hide Action Bar, invoke hide() method using getSupportActionBar( ) [getActionBar( ) in case of minSDKVersion is 11 or higher] as shown below: 1 getSupportActionBar().hide(); 2 // If your minSdkVersion is 11 or higher, instead use: 3 //getActionBar().hide(); To show Action Bar, invoke show() method using getSupportActionBar( ) [getActionBar( ) in case of minSDKVersion is 11 or higher] as shown below: view source print ? 1 getSupportActionBar().show(); 2 // If your minSdkVersion is 11 or higher, instead use: 3 //getActionBar().show();