Skip to content

Remove ActionBar for a Certain Activity

Remove the ActionBar for a Certain Activity#

Prefer applying a no-action-bar theme to the specific activity.

<activity
    android:name=".IntroActivity"
    android:theme="@style/Theme.MyApp.NoActionBar" />

Example theme:

<style name="Theme.MyApp.NoActionBar" parent="Theme.MaterialComponents.DayNight.NoActionBar">
    <!-- Activity-specific theme customisation. -->
</style>

For a fullscreen activity, also hide system bars with the window insets APIs rather than relying only on the old Theme.NoTitleBar.Fullscreen style.

Sources#