How to remove title bar from the android activity?

后端 未结 7 924
名媛妹妹
名媛妹妹 2020-12-23 01:54

Can someone please help me with the issue.I want my activity as full screen and want to remove title from the screen.I have tried several ways but not able to remove it.

相关标签:
7条回答
  • 2020-12-23 02:57

    You can try:

    <activity android:name=".YourActivityName"
              android:theme="@style/Theme.Design.NoActionBar">
    

    that works for me

    0 讨论(0)
提交回复
热议问题