Android Studio - Action Bar remove

iYonatan picture iYonatan · Jul 14, 2014 · Viewed 84.1k times · Source

I'm trying to remove/disable the ActionBar. I tried to put in the Manifest:

<activity
    ...
    android:theme="@android:style/Theme.NoTitleBar"
</activity>

and it doesn't work. It doesn't remove the ActionBar. Please help me. Thanks.

Answer

malamute84 picture malamute84 · Aug 18, 2015

I had this issue too. I went to styles.xml and changed

parent="Theme.AppCompat.Light.DarkActionBar" 

to

parent="Theme.AppCompat.Light.NoActionBar"

and that removed it from all my activities.