no action bar android studio code example
Example 1: remove action bar android studio
// In your Styles.xml file, change:
parent="Theme.AppCompat.Light.DarkActionBar"
// to:
parent="Theme.AppCompat.Light.NoActionBar"
Example 2: make activity no action bar
<application
android:allowBackup = "true"
android:icon = "@drawable/ic_launcher"
android:label = "@string/app_name"
android:theme = "@style/NoActionBar" <!--This is the important line-->
>
<activity
[...]