Remove Default Title Bar

前端 未结 9 689
天涯浪人
天涯浪人 2021-02-04 03:34

How do I remove the top title bar that\'s default in an Android app?

\"enter

The g

9条回答
  •  伪装坚强ぢ
    2021-02-04 04:27

    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:

    
    
    1. Another method is to add theme attributes to your activity as in manifest file:

      android:theme = "@style/Theme.AppCompat.Light.NoActionBar"

提交回复
热议问题