How do I remove the top title bar that\'s default in an Android app?
The g
This problem occurs when you are using default inbuilt toolbar and your own custom toolbar. There are two method.
1) Navigate to Values/style.xml <---Base Application theme styles to-> and change your parent theme like:
Another method is to add theme attributes to your activity as in manifest file:
android:theme = "@style/Theme.AppCompat.Light.NoActionBar"