美文网首页
Activity去掉标题栏失败(使用AppCompat)

Activity去掉标题栏失败(使用AppCompat)

作者: Master_Yang | 来源:发表于2017-06-24 18:19 被阅读0次

问题:直接使用android:theme="@android:style/Theme.NoTitleBar" 运行报错
在Android Monitor中看到错误报告:You need to use a Theme.AppCompat theme (or descendant) with this activity.(你必须使用Theme.AppCompat主题或者其子类主题)

解决办法:
在AndroidManifest.xml中将主题更改为Theme.AppCompat.Light.NoActionBar、Theme.AppCompat.NoActionBar或Theme.AppCompat.DayNight.NoActionBar中的一个,即可隐藏标题栏

<application    
   android:icon="@mipmap/ic_launcher"    
   android:label="@string/app_name"    
   android:theme="@style/Theme.AppCompat.Light.NoActionBar"//成功隐藏标题栏
>

相关文章

网友评论

      本文标题: Activity去掉标题栏失败(使用AppCompat)

      本文链接:https://www.haomeiwen.com/subject/akbkcxtx.html