Android错误之:You need to use a Theme.AppCompat theme (or descendant) with this activity.

来源:互联网 发布:金淘店管软件靠谱吗 编辑:程序博客网 时间:2024/05/16 00:39

错误描述:Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.


原因分析:Activity继承的不是Activity而是兼容包,所以一定要使用兼容包AppCompat的主题。


解决方法:根据AppCompat的提示设置theme。如下:

<style name="NotitleTheme" parent="Theme.AppCompat.NoActionBar">    <item name="android:windowNoTitle">true</item>    <item name="android:windowFullscreen">true</item></style>

0 0