I\'ve developed a simple demo application with a splash screen a map and some regular screens.
I have an action bar at the top that contains a logo. It all looks fin
The ActionBar usually exists along Fragments so from the Activity you can hide it
ActionBar
Fragments
Activity
getActionBar().hide(); getActionBar().show();
and from the Fragment you can do it
Fragment
getActivity().getActionBar().hide(); getActivity().getActionBar().show();