I\'m trying to remove/disable the ActionBar. I tried to put in the Manifest:
You hide action bar by with different ways.
1.action bar hidden through the manifest xml file (non Java Programming), then the easy way is to add the following attribute in Activity tag:
android:theme="@style/Theme.NoActionBar"
If custom Theme is created then it is convenient to create another style extending the custom theme.
- false
- true
or
ActionBar actionBar = getActionBar(); OR getSupportActionBar();
actionBar.hide();
getSupportActionBar().hide();
or
getActionBar().hide();